// // prwizard.cpp // // Copyright (c) Microsoft Corp, 2000 // // This file contains source code for presenting UI wizards to guide the user // in creating a password recovery key disk/file, and using such a file to // reset the password on an account. // // History: // // georgema 8/17/2000 Created // // // Exports: PRShowSaveWizard // PRShowRestoreWizard // // Dependencies: shellapi.h, shell32.lib for SHGetFileInfo() #pragma comment(user, "Compiled on " __DATE__ " at " __TIME__) #pragma comment(compiler) #include #include #include #include #include #include #include #include #include #include #include // _waccess #include #include #include #include #include #include // includes the property sheet functionality #include "wizres.h" // includes the definitions for the resources #include // disk geometry/characteristics stuff #include #include #include "switches.h" #include "keymgr.h" // All of these definitions are for updating the password hint for the user // DirectUser and DirectUI #ifdef PASSWORDHINT #include #endif // End password hint changes #include #include #define LOGONCHANGE #define FILESPACENEEDED 8192 extern HINSTANCE g_hInstance; // shared with keymgr extern HANDLE g_hFile; extern INT g_iFileSize; DWORD GetDriveFreeSpace(WCHAR *); INT ReadPrivateData(BYTE **,INT *); BOOL WritePrivateData(BYTE *,INT); HANDLE GetOutputFile(void); HANDLE GetInputFile(void); void CloseInputFile(void); void ReleaseFileBuffer(LPVOID); BOOL c_bSaveComplete = FALSE; #define LERROR_NO_ACCOUNT (0x80008888) // Option switches TCHAR pszFileName[] = TEXT("A:\\userkey.psw"); // Symbols and variables of global significance #define NUMSAVEPAGES 5 #define NUMRESTOREPAGES 4 #define TEMPSTRINGBUFSIZE 500 #define PSWBUFSIZE 20 #define TIMERPERIOD 1000 #define TIMERID 1001 // Error values from SaveThread #define ERRNOFILE 2 #define ERRSAVEERROR 1 #define ERRSUCCESS 0 // Global vars contain common data needed by the pages WCHAR Buf[TEMPSTRINGBUFSIZE]; // gen purpose scratch string WCHAR rgszDrives[200]; // drive strings cache INT c_ArrayCount = 0; INT c_DriveCount = 0; INT c_fDrivesCounted = FALSE; WCHAR c_rgcPsw[PSWBUFSIZE]; WCHAR c_rgcOldPsw[PSWBUFSIZE]; WCHAR c_rgcFileName[MAX_PATH]; WCHAR c_rgcUser[MAX_PATH] = {0}; WCHAR c_rgcDomain[MAX_PATH]; HCURSOR c_hCursor; HWND c_hDlg; UINT_PTR c_iTimer; HWND c_hProgress; INT c_iProg = 0; HWND c_TimerAssociatedWindow; // Recovery data BYTE *c_pPrivate = NULL; INT c_cbPrivate = 0; // Page control handles HWND c_hwndSWelcome1; HWND c_hwndSWelcome2; HWND c_hwndSInstructions; HWND c_hwndSP1E1; HWND c_hwndSP1E2; HWND c_hwndSFinish1; HWND c_hwndSFinish2; HWND c_hwndSCancel; HWND c_hwndDriveInstructions; HWND c_hwndDrivePrompt; HWND c_hwndCBDriveList; HWND c_hwndRWelcome1; HWND c_hwndRWelcome2; HWND c_hwndRInstructions; HWND c_hwndRP1E1; HWND c_hwndRP1E2; HWND c_hwndRP1E3; HWND c_hwndRBackup; HWND c_hwndRFinish1; HWND c_hwndRFinish2; HWND c_hwndRCancel; HFONT c_hTitleFont; BOOL c_fIsBackup; // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // // Common utility functions // // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ WCHAR *RString(INT iResID) { if (NULL == g_hInstance) goto RSError; INT iCount = LoadString(g_hInstance,iResID,Buf,TEMPSTRINGBUFSIZE); return Buf; RSError: Buf[0] = 0; return Buf; } int RMessageBox(HWND hw,UINT_PTR uiResIDTitle, UINT_PTR uiResIDText, UINT uiType) { WCHAR tBuf[TEMPSTRINGBUFSIZE]; WCHAR mBuf[TEMPSTRINGBUFSIZE]; INT_PTR iCount = 0; tBuf[0] = 0; mBuf[0] = 0; if (NULL == g_hInstance) goto RMError; if (uiResIDTitle < 4096) iCount = LoadString(g_hInstance,(UINT)uiResIDTitle,tBuf,TEMPSTRINGBUFSIZE); else wcscpy(tBuf,(WCHAR *)uiResIDTitle); if (uiResIDTitle < 4096) iCount = LoadString(g_hInstance,(UINT)uiResIDText,mBuf,TEMPSTRINGBUFSIZE); else wcscpy(mBuf,(WCHAR *)uiResIDText); if (0 == iCount) goto RMError; return MessageBox(hw,mBuf,tBuf,uiType); RMError: return -1; } void RSetControlText(UINT uiControlID, UINT uiTextID) { WCHAR tBuf[TEMPSTRINGBUFSIZE]; INT iCount; if (NULL == g_hInstance) goto RSError; if (0 == uiTextID) goto RSError; iCount = LoadString(g_hInstance,uiTextID,tBuf,TEMPSTRINGBUFSIZE); if (0 == iCount) goto RSError; SetDlgItemText(c_hDlg,uiControlID,tBuf); return; RSError: SetDlgItemText(c_hDlg,uiControlID,L""); return; } // // Generate a font handle // HFONT CreateFontY(LPCTSTR pszFontName,LONG lWeight,LONG lHeight) { NONCLIENTMETRICS ncm = {0}; if (NULL == pszFontName) return NULL; if (0 == lHeight) return NULL; ncm.cbSize = sizeof(ncm); if (!SystemParametersInfo(SPI_GETNONCLIENTMETRICS,0,&ncm,0)) return NULL; LOGFONT TitleLogFont = ncm.lfMessageFont; TitleLogFont.lfWeight = lWeight; lstrcpy(TitleLogFont.lfFaceName,pszFontName); HDC hdc = GetDC(NULL); if (NULL == hdc) return NULL; INT FontSize = lHeight; TitleLogFont.lfHeight = 0 - GetDeviceCaps(hdc,LOGPIXELSY) * FontSize / 72; HFONT h = CreateFontIndirect(&TitleLogFont); ReleaseDC(NULL,hdc); return h; } void CenterPage(HWND hwndIn) { RECT rectWorkArea; RECT rectWindow; DWORD FreeWidth, Width, FreeHeight, Height; if (!SystemParametersInfo(SPI_GETWORKAREA,0,&rectWorkArea,0)) { return; } GetWindowRect(hwndIn,&rectWindow); Height = (rectWorkArea.bottom - rectWorkArea.top); Width = (rectWorkArea.right - rectWorkArea.left); FreeHeight = Height - (rectWindow.bottom - rectWindow.top); FreeWidth = Width - (rectWindow.right - rectWindow.left); MoveWindow(hwndIn, FreeWidth / 2, FreeHeight / 2, (rectWindow.right - rectWindow.left), (rectWindow.bottom - rectWindow.top), TRUE); return; } // // Fetch psw, handle non-identical, ret TRUE only if c_rgcPsw filled with // password // // Used in the restore wizard. // BOOL FetchPsw(HWND hE1,HWND hE2) { TCHAR rgcE1[PSWBUFSIZE]; TCHAR rgcE2[PSWBUFSIZE]; INT_PTR iCount; rgcE1[0] = 0; rgcE2[0] = 0; if (NULL == hE1) return FALSE; if (NULL == hE2) return FALSE; iCount = SendMessage(hE1,WM_GETTEXT,PSWBUFSIZE,(LPARAM) rgcE1); iCount = SendMessage(hE2,WM_GETTEXT,PSWBUFSIZE,(LPARAM) rgcE2); if (0 != _tcscmp(rgcE1,rgcE2)) { RMessageBox(c_hDlg,IDS_MBTINVALIDPSW ,IDS_BADPSW ,MB_ICONHAND); return FALSE; } #ifdef NOBLANKPASSWORD if (0 == _tcslen(rgcE1)) { RMessageBox(c_hDlg,IDS_MBTMISSINGPSW ,IDS_NOPSW ,MB_ICONHAND); return FALSE; } #endif _tcscpy(c_rgcPsw,rgcE1); return TRUE; } // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // // File and Disk manipulation functions // // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #define FILENAMESIZE 255; BOOL FileMediumIsRemoveable(TCHAR *pszPath) { return (DRIVE_REMOVABLE == GetDriveType(pszPath)); } /* FileMediumIsEncrypted Accepts an input file path which may be a filename, and returns TRUE if the file is/would be encrypted. Note that this function touches the drive. Attempting to call FileMediumIsEncrypted() on a floppy drive path with no floppy in the drive produces a pop-up error box. */ BOOL FileMediumIsEncrypted(TCHAR *pszPath) { TCHAR rgcPath[MAX_PATH]; TCHAR *pOldHack = NULL; TCHAR *pHack; DWORD dwAttr; #ifdef GMDEBUG OutputDebugString(L"File path = "); OutputDebugString(pszPath); OutputDebugString(L"\n"); #endif _tcsncpy(rgcPath,pszPath,MAX_PATH-1); pHack = rgcPath; do { pOldHack = pHack; pHack = _tcschr(++pHack,TCHAR('\\')); } while (pHack); if (pOldHack == NULL) return FALSE; *pOldHack = 0; #ifdef GMDEBUG OutputDebugString(L"Trimmed path ="); OutputDebugString(pszPath); OutputDebugString(L"\n"); #endif dwAttr = GetFileAttributes(rgcPath); if (-1 == dwAttr) { return FALSE; } if (dwAttr & FILE_ATTRIBUTE_ENCRYPTED) { #ifdef GMDEBUG OutputDebugString(L"File is encrypted\n"); #endif return TRUE; } else return FALSE; } /* CountRemoveableDrives Called to determine whether it is appropriate to display the drive selection page. The return value is the number of such drives available. If 0, a message box announces that a backup cannot be made and why If 1, the drive select page should be skipped If more than one, the user chooses the drive */ INT CountRemoveableDrives(void) { //TCHAR rgszDrives[100]; DWORD dwcc; TCHAR *pc; INT iCount = 0; if (c_fDrivesCounted) return c_DriveCount; dwcc = GetLogicalDriveStrings(200,rgszDrives); if (0 == dwcc) return 0; pc = rgszDrives; while (*pc != 0) { if (FileMediumIsRemoveable(pc)) { if (DRIVE_CDROM != GetDriveType(pc)) { iCount++; } } while(*pc != 0) pc++; pc++; } c_DriveCount = iCount; c_fDrivesCounted = TRUE; // If only 1 drive, go ahead and stamp the filename if (1 == iCount) pszFileName[0] = rgszDrives[0]; return iCount; } // Get the UI string for the named drive BOOL GetDriveUIString(WCHAR *pszFilePath,WCHAR *pszUIString,INT icbSize,HANDLE *phImageList,INT *piIconIndex) { WCHAR *pwc; WCHAR rgcModel[] = {L"A:\\"}; SHFILEINFO sfi = {0}; if (NULL == pszFilePath) return FALSE; if (NULL == pszUIString) return FALSE; rgcModel[0] = *pszFilePath; DWORD_PTR dwRet = SHGetFileInfo(rgcModel,FILE_ATTRIBUTE_DIRECTORY,&sfi,sizeof(sfi), 0 | SHGFI_SYSICONINDEX | SHGFI_SMALLICON | SHGFI_DISPLAYNAME); if ( 0 == dwRet) return FALSE; // failed to get the string wcsncpy(pszUIString,sfi.szDisplayName,(icbSize / sizeof(WCHAR)) -sizeof(WCHAR)); *piIconIndex = sfi.iIcon; *phImageList = (HANDLE) dwRet; return TRUE; } /* ShowRemoveableDrives Called from within SPageProcX, the page procedure for the drive selection page, this function gets the available logical drives on the system, filters them one by one keeping only removeable and unencrypted volumes. These are assigned to up to six radio button text labels on IDD_SPAGEX The return value is the number of such drives available. If 0, a message box announces the failure condition, and the wizard exits If 1, this page is skipped, and that drive letter is inserted in the file name string If more than one, the user chooses the drive */ INT ShowRemoveableDrives(void) { //TCHAR rgszDrives[200]; DWORD dwcc; TCHAR *pc; WCHAR rgcszUI[80]; HANDLE hIcons; INT iIcons; HWND hPrompt; HWND hCombo; HANDLE hImageList = NULL; BOOL fSetImageList = TRUE; COMBOBOXEXITEM stItem = {0}; INT iDrive = 0; ASSERT(c_hwndCBDriveList); // test and show dwcc = GetLogicalDriveStrings(200,rgszDrives); if (0 == dwcc) goto fail; pc = rgszDrives; while (*pc != 0) { rgcszUI[0] = 0; if (!GetDriveUIString(pc,rgcszUI,80,&hIcons,&iIcons)) goto fail; if ((fSetImageList) && (hIcons != NULL)) { // set image list for the edit control to the system image list // returned from GetDriveUIString SendMessage(c_hwndCBDriveList,CBEM_SETIMAGELIST, 0,(LPARAM)(HIMAGELIST) hIcons); fSetImageList = FALSE; } #ifdef LOUDLY { OutputDebugString(L"Drive "); OutputDebugString(pc); OutputDebugString(L"="); OutputDebugString(rgcszUI); OutputDebugString(L"\n"); } #endif if (FileMediumIsRemoveable(pc)) { if (DRIVE_CDROM != GetDriveType(pc)) { #ifdef LOUDLY { WCHAR sz[100]; _stprintf(sz,L"Drive %s added as removeable drive index %d\n",pc,iDrive); OutputDebugString(sz); } #endif // add string to combo box stItem.mask = CBEIF_SELECTEDIMAGE |CBEIF_IMAGE | CBEIF_TEXT | CBEIF_LPARAM; stItem.pszText = rgcszUI; stItem.iImage = iIcons; stItem.iSelectedImage = iIcons; stItem.lParam = iDrive; stItem.iItem = -1; SendMessage(c_hwndCBDriveList,CBEM_INSERTITEM,0,(LPARAM) &stItem); } } iDrive++; while(*pc != 0) pc++; pc++; } c_ArrayCount = iDrive; SendMessage(c_hwndCBDriveList,CB_SETCURSEL,0,0); return 1; fail: // show message box return 0; } // Get drive letter for zero-based drive number from the drive name strings in rgszDrives. // Note that c_ArrayCount is 1-based. WCHAR GetDriveLetter(INT iDrive) { WCHAR *pc; pc = rgszDrives; // point to global array of strings if (iDrive == 0) return *pc; // base drive letter if (iDrive < 0) return *pc; // unselected drive letter, return base if (iDrive >= c_ArrayCount) return *pc; for (INT i=0;iitem(var,&pUser); if (SUCCEEDED(hr)) { VariantClear(&var); // free embedded bstr var.vt = VT_BSTR; var.bstrVal = SysAllocString(pszNewHint); hr = pUser->put_setting(L"Hint",var); // There is no fallback for failure to set the hint. Just proceed. pUser->Release(); } VariantClear(&var); // free embedded bstr pUsers->Release(); } return hr; } #endif DWORD SetAccountPassword(void) { NET_API_STATUS ns; DWORD dwErr; BOOL fRet = FALSE; #ifdef LOUDLY OutputDebugString(L"SetAccountPassword called\n"); #endif c_pPrivate = 0; if (!ReadPrivateData(&c_pPrivate,&c_cbPrivate)){ dwErr = GetLastError(); #ifdef LOUDLY OutputDebugString(L"ReadFile failed\n"); #endif goto cleanup; } #ifdef LOUDLY if (0 == c_cbPrivate) OutputDebugString(L"recovery file is empty\n"); if (0 != c_cbPrivate) OutputDebugString(L"SAP: nonempty private blob, new password :"); OutputDebugString(c_rgcPsw); OutputDebugString(L"\n"); #endif if( (c_rgcUser[0] == 0)) { memset(c_rgcPsw,0,sizeof(c_rgcPsw)); return LERROR_NO_ACCOUNT; } dwErr = PRRecoverPassword(c_rgcUser, c_pPrivate, c_cbPrivate, c_rgcPsw); // Release the disk buffer of private data, flush the password buffer if (NULL != c_pPrivate) ReleaseFileBuffer((LPVOID) c_pPrivate); c_pPrivate = NULL; CloseInputFile(); memset(c_rgcPsw,0,PSWBUFSIZE * sizeof(TCHAR)); if (0 != dwErr) { #ifdef LOUDLY TCHAR Bufr[100]; _stprintf(Bufr,L"PRRecoverPassword returns %0x\n",dwErr); OutputDebugString(Bufr); #endif } #ifdef PASSWORDHINT else { INT_PTR icb = 0; WCHAR szHint[256]; szHint[0] = 0; icb = SendMessage(c_hwndRP1E3,WM_GETTEXT,255,(LPARAM)szHint); SetUserHint(c_rgcUser,szHint); } #endif cleanup: return dwErr; } /****************************************************************************\ SaveInfo Inputs: void, uses globals c_rgcUser, c_rgcPsw Returns: INT, returns nonzero if a password backup has been generated on the host machine, and a valid private blob has been generated and written to the target disk \****************************************************************************/ INT SaveInfo(void) { BOOL fError = TRUE; DWORD dwRet; BOOL fStatus = FALSE; BYTE *pPrivate = NULL; DWORD cbPrivate = 0; c_hCursor = LoadCursor(g_hInstance,IDC_WAIT); c_hCursor = SetCursor(c_hCursor); #ifdef LOUDLY OutputDebugString(L"SaveInfo: Username = "); OutputDebugString(c_rgcUser); OutputDebugString(L"\n"); #endif #ifdef LOUDLY OutputDebugString(c_rgcUser); OutputDebugString(L" \\ "); OutputDebugString(c_rgcPsw); OutputDebugString(L"\n"); #endif dwRet = PRGenerateRecoveryKey(c_rgcUser, c_rgcPsw, &pPrivate, &cbPrivate); #ifdef LOUDLY OutputDebugString(L"PRGenerateRecoveryKey returns\n"); #endif if (ERROR_SUCCESS != dwRet) { #ifdef LOUDLY OutputDebugString(L"GenerateRecoveryKey failed\n"); #endif goto cleanup; } if (!WritePrivateData(pPrivate,cbPrivate)) { #ifdef LOUDLY OutputDebugString(L"WriteOutputFile failed\n"); #endif // delete output file if created DeleteFile(pszFileName); goto cleanup; } SetFileAttributes(pszFileName,FILE_ATTRIBUTE_READONLY); if (0 == cbPrivate) goto cleanup; fStatus = TRUE; fError = FALSE; cleanup: // zero buffer of c_usPassword (our local psw buffer) memset(c_rgcPsw,0,sizeof(c_rgcPsw)); memset(pPrivate,0,cbPrivate); if (fError) { KillTimer(c_TimerAssociatedWindow,TIMERID); RMessageBox(c_hDlg,IDS_MBTERROR ,IDS_SERROR ,MB_ICONHAND); c_iTimer = SetTimer(c_TimerAssociatedWindow,TIMERID,TIMERPERIOD,NULL); } //cleanupnomsg: if (fError) { // delete output file if (g_hFile) { CloseHandle(g_hFile); g_hFile = NULL; DeleteFile(pszFileName); } } if (NULL != g_hFile) { CloseHandle(g_hFile); g_hFile = NULL; } if (pPrivate) LocalFree(pPrivate); return fStatus; } // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // // WELCOME page proc doesn't have to do much // // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ INT_PTR CALLBACK SPageProc0( HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { case WM_INITDIALOG: { TCHAR SBuf[TEMPSTRINGBUFSIZE]; c_hDlg = hDlg; c_hwndSWelcome1 = GetDlgItem(hDlg,IDC_SWELCOME1); if (NULL != c_hTitleFont) SendMessage(c_hwndSWelcome1,WM_SETFONT,(WPARAM) c_hTitleFont,(LPARAM) TRUE); LoadString(g_hInstance,IDS_SWELCOME1,SBuf,TEMPSTRINGBUFSIZE); SendMessage(c_hwndSWelcome1,WM_SETTEXT,0,(LPARAM)SBuf); c_hwndSWelcome2 = GetDlgItem(hDlg,IDC_SWELCOME2); LoadString(g_hInstance,IDS_SWELCOME2,SBuf,TEMPSTRINGBUFSIZE); SendMessage(c_hwndSWelcome2,WM_SETTEXT,0,(LPARAM)SBuf); break; } case WM_COMMAND: if (HIWORD(wParam) == BN_CLICKED) { // crack the incoming command messages INT NotifyId = HIWORD(wParam); INT ControlId = LOWORD(wParam); } break; case WM_NOTIFY: switch (((NMHDR FAR *) lParam)->code) { case PSN_KILLACTIVE: SetWindowLong(hDlg,DWLP_MSGRESULT, FALSE); return 1; break; case PSN_SETACTIVE: // state following a BACK from the next page CenterPage(GetParent(hDlg)); PropSheet_SetWizButtons(GetParent(hDlg),PSWIZB_NEXT); break; case PSN_RESET: if (c_hTitleFont) DeleteObject(c_hTitleFont); break; case PSN_WIZNEXT: break; default: return FALSE; } break; default: return FALSE; } return TRUE; } // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // // PAGE1 page proc, where the real work is done // // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ DWORD c_iThread; DWORD dwThreadReturn; DWORD WINAPI SaveThread(LPVOID lpv) { HWND hw = (HWND) lpv; c_bSaveComplete = FALSE; if (g_hFile == NULL) { c_bSaveComplete = TRUE; dwThreadReturn = ERRNOFILE; return 2; } if (FALSE == SaveInfo()) { if (g_hFile) CloseHandle(g_hFile); g_hFile = NULL; c_bSaveComplete = TRUE; dwThreadReturn = ERRSAVEERROR; return 1; } if (g_hFile) CloseHandle(g_hFile); g_hFile = NULL; c_bSaveComplete = TRUE; dwThreadReturn = ERRSUCCESS; return 0; } // Dialog procedure for the drive selection page. This page is common to both the backup and // restore wizards, with the instruction text being selected on the basis of which mode is being // exercised. INT_PTR CALLBACK SPageProcX( HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { INT i; switch (message) { case WM_INITDIALOG: { c_hwndDriveInstructions = GetDlgItem(hDlg,IDC_DRIVEINSTRUCTIONS); c_hwndDrivePrompt = GetDlgItem(hDlg,IDC_DRIVEPROMPT); c_hwndCBDriveList = GetDlgItem(hDlg,IDC_COMBO); if (1 == CountRemoveableDrives()) { if (c_fIsBackup) { WCHAR temp[TEMPSTRINGBUFSIZE]; WCHAR *pc = RString(IDS_SONLYONEDRIVE); swprintf(temp,pc,pszFileName[0]); SendMessage(c_hwndDriveInstructions,WM_SETTEXT,0,(LPARAM)temp); } else { WCHAR temp[TEMPSTRINGBUFSIZE]; WCHAR *pc = RString(IDS_RONLYONEDRIVE); swprintf(temp,pc,pszFileName[0]); SendMessage(c_hwndDriveInstructions,WM_SETTEXT,0,(LPARAM)temp); } ShowWindow(c_hwndDrivePrompt,SW_HIDE); ShowWindow(c_hwndCBDriveList,SW_HIDE); } else { ShowRemoveableDrives(); } break; } case WM_COMMAND: if (HIWORD(wParam) == BN_CLICKED) { i = LOWORD(wParam); } break; case WM_NOTIFY: switch (((NMHDR FAR *) lParam)->code) { case PSN_KILLACTIVE: SetWindowLong(hDlg, DWLP_MSGRESULT, FALSE); return 1; break; case PSN_RESET: SetWindowLong(hDlg, DWLP_MSGRESULT, FALSE); if (c_hTitleFont) DeleteObject(c_hTitleFont); break; case PSN_SETACTIVE: // Set data in the UI, Set up sequence buttons PropSheet_SetWizButtons(GetParent(hDlg),PSWIZB_BACK | PSWIZB_NEXT); break; case PSN_WIZNEXT: // take first character (drive letter) of the text associated with the // selected radio button and copy it to the filename in the drive // letter position. { LRESULT lr; INT iDrive = 0; COMBOBOXEXITEM stCBItem = {0}; lr = SendMessage(c_hwndCBDriveList,CB_GETCURSEL,0,0); if (CB_ERR == lr) OutputDebugString(L"ComboBox select error\n"); if (CB_ERR == lr) iDrive = 0; else { stCBItem.mask = CBEIF_LPARAM; stCBItem.iItem = lr; lr = SendMessage(c_hwndCBDriveList,CBEM_GETITEM,0,(LPARAM)&stCBItem); if (CB_ERR != lr) { iDrive = (INT) stCBItem.lParam; } } pszFileName[0] = GetDriveLetter(iDrive); #ifdef LOUDLY WCHAR sz[200]; _stprintf(sz,L"Index value = %d\n",iDrive); OutputDebugString(sz); OutputDebugString(L"File target set to "); OutputDebugString(pszFileName); OutputDebugString(L"\n"); #endif } if (!c_fIsBackup) { if (NULL == GetInputFile()) { // failed to open file SetWindowLong(hDlg,DWLP_MSGRESULT,IDD_SPAGEXS); return TRUE; } } return FALSE; break; default: return FALSE; } break; default: return FALSE; } return TRUE; } INT_PTR CALLBACK SPageProc1( HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { INT i; switch (message) { case WM_INITDIALOG: { HWND hC = GetDlgItem(hDlg,PSBTN_CANCEL); if (NULL != hC) ShowWindow(hC,SW_HIDE); c_hwndSInstructions = GetDlgItem(hDlg,IDC_SINSTRUCTIONS); c_hwndSP1E1 = GetDlgItem(hDlg,IDC_SP1E1); LoadString(g_hInstance,IDS_SP1INSTRUCTIONS,Buf,TEMPSTRINGBUFSIZE); SendMessage(c_hwndSInstructions,WM_SETTEXT,0,(LPARAM)Buf); break; } case WM_COMMAND: if (HIWORD(wParam) == BN_CLICKED) { i = LOWORD(wParam); } break; case WM_NOTIFY: switch (((NMHDR FAR *) lParam)->code) { case PSN_KILLACTIVE: SetWindowLong(hDlg, DWLP_MSGRESULT, FALSE); return 1; break; case PSN_RESET: // reset data to the original values SendMessage(c_hwndSP1E1,WM_SETTEXT,0,0); //SendMessage(c_hwndSP1E2,WM_SETTEXT,0,0); SetWindowLong(hDlg, DWLP_MSGRESULT, FALSE); if (c_hTitleFont) DeleteObject(c_hTitleFont); break; case PSN_SETACTIVE: // Set data in the UI, Set up sequence buttons PropSheet_SetWizButtons(GetParent(hDlg),PSWIZB_BACK | PSWIZB_NEXT); break; case PSN_WIZNEXT: { //Fetch the data and process it - if FALSE, stay on this page // allow null password HANDLE hToken = NULL; BOOL fPswOK = FALSE; SendMessage(c_hwndSP1E1,WM_GETTEXT,sizeof(c_rgcPsw),(LPARAM)c_rgcPsw); fPswOK = LogonUser(c_rgcUser,c_rgcDomain,c_rgcPsw, LOGON32_LOGON_INTERACTIVE, LOGON32_PROVIDER_DEFAULT, &hToken); if (hToken) CloseHandle(hToken); #ifdef LOGONCHANGE if (!fPswOK) { DWORD dwErr = GetLastError(); if ((ERROR_ACCOUNT_RESTRICTION != dwErr) || (wcslen(c_rgcPsw) != 0)) { RMessageBox(c_hDlg,IDS_MBTWRONGPSW,IDS_WRONGPSW,MB_ICONHAND); SetWindowLong(hDlg,DWLP_MSGRESULT,IDD_SPAGE1); return TRUE; } } #else if (!fPswOK) { RMessageBox(c_hDlg,IDS_MBTWRONGPSW,IDS_WRONGPSW,MB_ICONHAND); SetWindowLong(hDlg,DWLP_MSGRESULT,IDD_SPAGE1); return TRUE; } #endif if ( ExistsOldKey(c_rgcUser)) { INT i; i = RMessageBox(c_hDlg,IDS_MBTREPLACE ,IDS_OLDEXISTS ,MB_YESNO); if (i != IDYES) { SetWindowLong(hDlg,DWLP_MSGRESULT,IDD_SPAGE1); return TRUE; } } if (NULL == GetOutputFile()) { SetWindowLong(hDlg,DWLP_MSGRESULT,IDD_SPAGE1); return TRUE; } if (FILESPACENEEDED > GetDriveFreeSpace(pszFileName)) { // if still not enough space, let go of the attempt to create an output file, // or successive attempts will fail for a sharing violation if (g_hFile) { CloseHandle(g_hFile); g_hFile = NULL; } RMessageBox(c_hDlg,IDS_MBTNOSPACE ,IDS_MBMNOSPACE ,MB_OK); SetWindowLong(hDlg,DWLP_MSGRESULT,IDD_SPAGE1); return TRUE; } // SaveInfo() will zero the psw buffer CreateThread(NULL,0,SaveThread,(LPVOID)NULL,0,&c_iThread); return FALSE; } break; default: return FALSE; } break; default: return FALSE; } return TRUE; } // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // // FINISH page proc - reach this page only on success? // // This page receives timer interrupts, advancing the progress bar at each one. When c_bSaveComplete indicates // that the operation is complete, it shuts off the timer and waits for the user to advance to the next page. // // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ INT_PTR CALLBACK SPageProc2( HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { WCHAR Msg[200]; WCHAR Tpl[200]; Tpl[0] = 0; Msg[0] = 0; LoadString(g_hInstance,IDS_SPROGRESS,Tpl,200 -1); HWND hP = GetDlgItem(hDlg,IDC_SPROGRESS); switch (message) { case WM_TIMER: // advance the progress bar SendMessage(c_hProgress,PBM_STEPIT,0,0); c_iProg += 5; if (100 <= c_iProg) c_iProg = 95; // Stop advancing when c_bSaveComplete is nonzero, and if (c_bSaveComplete) { #ifdef LOUDLY OutputDebugString(L"SPageProc2: Save Complete on timer tick\n"); #endif KillTimer(hDlg,TIMERID); c_iTimer =0; memset(c_rgcPsw,0,PSWBUFSIZE * sizeof(TCHAR)); if (dwThreadReturn == ERRSUCCESS) { // set text to indicate complete SendMessage(c_hProgress,PBM_SETPOS,100,0); PropSheet_SetWizButtons(GetParent(hDlg),PSWIZB_NEXT); c_iProg = 100; } else { SendMessage(c_hProgress,PBM_SETPOS,0,0); PropSheet_SetWizButtons(GetParent(hDlg),PSWIZB_BACK); c_iProg = 0; } } swprintf(Msg,Tpl,c_iProg); if (hP) SendMessage(hP,WM_SETTEXT,0,(LPARAM)Msg); break; case WM_INITDIALOG: { // instead of starting the timer here, do it on the set active // notification, since the init is not redone if you rearrive at // this page after an error. c_hProgress = GetDlgItem(hDlg,IDC_PROGRESS1); break; } case WM_COMMAND: break; case WM_NOTIFY: switch (((NMHDR FAR *) lParam)->code) { case PSN_KILLACTIVE: SetWindowLong(hDlg, DWLP_MSGRESULT, FALSE); return 1; break; case PSN_RESET: memset(c_rgcPsw,0,PSWBUFSIZE * sizeof(TCHAR)); // rest to the original values SetWindowLong(hDlg, DWLP_MSGRESULT, FALSE); if (c_hTitleFont) DeleteObject(c_hTitleFont); break; case PSN_SETACTIVE: PropSheet_SetWizButtons(GetParent(hDlg),0); PropSheet_CancelToClose(GetParent(hDlg)); SendMessage(c_hProgress,PBM_SETSTEP,5,0); SendMessage(c_hProgress,PBM_SETPOS,0,0); // Start a timer c_iTimer = 0; c_iProg = 0; c_iTimer = SetTimer(hDlg,TIMERID,TIMERPERIOD,NULL); c_TimerAssociatedWindow = hDlg; // Set controls to state indicated by data // Set BACK/FINISH instead of BACK/NEXT break; case PSN_WIZBACK: break; case PSN_WIZNEXT: // Done memset(c_rgcPsw,0,PSWBUFSIZE * sizeof(TCHAR)); if (c_iTimer) KillTimer(hDlg,TIMERID); c_iTimer = 0; break; default: return FALSE; } break; default: return FALSE; } return TRUE; } INT_PTR CALLBACK SPageProc3( HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { INT i; switch (message) { case WM_INITDIALOG: { // instead of starting the timer here, do it on the set active // notification, since the init is not redone if you rearrive at // this page after an error. c_hwndSFinish1 = GetDlgItem(hDlg,IDC_SFINISH1); c_hwndSFinish2 = GetDlgItem(hDlg,IDC_SFINISH2); if (NULL != c_hTitleFont) SendMessage(c_hwndSFinish1,WM_SETFONT,(WPARAM) c_hTitleFont,(LPARAM) TRUE); LoadString(g_hInstance,IDS_SFINISH1,Buf,TEMPSTRINGBUFSIZE); SendMessage(c_hwndSFinish1,WM_SETTEXT,0,(LPARAM)Buf); PropSheet_SetWizButtons(GetParent(hDlg),PSWIZB_FINISH); LoadString(g_hInstance,IDS_SFINISH2,Buf,TEMPSTRINGBUFSIZE); SendMessage(c_hwndSFinish2,WM_SETTEXT,0,(LPARAM)Buf); break; } case WM_COMMAND: break; case WM_NOTIFY: switch (((NMHDR FAR *) lParam)->code) { case PSN_KILLACTIVE: SetWindowLong(hDlg, DWLP_MSGRESULT, FALSE); return 1; break; case PSN_RESET: // reset to the original values SetWindowLong(hDlg, DWLP_MSGRESULT, FALSE); if (c_hTitleFont) DeleteObject(c_hTitleFont); break; case PSN_SETACTIVE: PropSheet_SetWizButtons(GetParent(hDlg),PSWIZB_FINISH); PropSheet_CancelToClose(GetParent(hDlg)); break; case PSN_WIZBACK: break; case PSN_WIZFINISH: // Done memset(c_rgcPsw,0,PSWBUFSIZE * sizeof(TCHAR)); if (c_hTitleFont) DeleteObject(c_hTitleFont); break; default: return FALSE; } break; default: return FALSE; } return TRUE; } // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // // WELCOME page proc doesn't have to do much // // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ INT_PTR CALLBACK RPageProc0( HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { case WM_INITDIALOG: { c_hDlg = hDlg; c_hwndRWelcome1 = GetDlgItem(hDlg,IDC_RWELCOME1); if (NULL != c_hTitleFont) SendMessage(c_hwndRWelcome1,WM_SETFONT,(WPARAM) c_hTitleFont,(LPARAM) TRUE); LoadString(g_hInstance,IDS_RWELCOME1,Buf,TEMPSTRINGBUFSIZE); SendMessage(c_hwndRWelcome1,WM_SETTEXT,0,(LPARAM)Buf); c_hwndRWelcome2 = GetDlgItem(hDlg,IDC_RWELCOME2); LoadString(g_hInstance,IDS_RWELCOME2,Buf,TEMPSTRINGBUFSIZE); SendMessage(c_hwndRWelcome2,WM_SETTEXT,0,(LPARAM)Buf); break; } case WM_COMMAND: if (HIWORD(wParam) == BN_CLICKED) { // crack the incoming command messages INT NotifyId = HIWORD(wParam); INT ControlId = LOWORD(wParam); } break; case WM_NOTIFY: switch (((NMHDR FAR *) lParam)->code) { case PSN_KILLACTIVE: SetWindowLong(hDlg,DWLP_MSGRESULT, FALSE); return 1; break; case PSN_SETACTIVE: // state following a BACK from the next page CenterPage(GetParent(hDlg)); PropSheet_SetWizButtons(GetParent(hDlg),PSWIZB_NEXT); break; case PSN_WIZNEXT: break; case PSN_RESET: if (c_hTitleFont) DeleteObject(c_hTitleFont); break; default: return FALSE; } break; default: return FALSE; } return TRUE; } // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // // PAGE1 page proc, where the real work is done // // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ INT_PTR CALLBACK RPageProc1( HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { INT i; switch (message) { case WM_INITDIALOG: { Buf[0] = 0; c_hwndRInstructions = GetDlgItem(hDlg,IDC_RINSTRUCTIONS); c_hwndRP1E1 = GetDlgItem(hDlg,IDC_RP1E1); c_hwndRP1E2 = GetDlgItem(hDlg,IDC_RP1E2); c_hwndRP1E3 = GetDlgItem(hDlg,IDC_RP1E3); LoadString(g_hInstance,IDS_RP1INSTR,Buf,TEMPSTRINGBUFSIZE); SendMessage(c_hwndRInstructions,WM_SETTEXT,0,(LPARAM)Buf); break; } case WM_COMMAND: if (HIWORD(wParam) == BN_CLICKED) { i = LOWORD(wParam); } break; case WM_NOTIFY: switch (((NMHDR FAR *) lParam)->code) { DWORD dwRet; case PSN_KILLACTIVE: SetWindowLong(hDlg, DWLP_MSGRESULT, FALSE); return 1; break; case PSN_RESET: // reset data to the original values if (c_pPrivate) free(c_pPrivate); c_pPrivate = NULL; memset(c_rgcPsw,0,PSWBUFSIZE * sizeof(TCHAR)); SendMessage(c_hwndRP1E1,WM_SETTEXT,0,0); SendMessage(c_hwndRP1E2,WM_SETTEXT,0,0); SetWindowLong(hDlg, DWLP_MSGRESULT, FALSE); if (c_hTitleFont) DeleteObject(c_hTitleFont); break; case PSN_SETACTIVE: // Set data in the UI, Set up sequence buttons PropSheet_SetWizButtons(GetParent(hDlg),PSWIZB_BACK | PSWIZB_NEXT); break; case PSN_WIZBACK: CloseInputFile(); return FALSE; break; case PSN_WIZNEXT: //Fetch the data and process it if (!FetchPsw(c_hwndRP1E1,c_hwndRP1E2)) { // psw buffers empty if you get here - FetchPsw will have told // the user what to do SetWindowLong(hDlg,DWLP_MSGRESULT,IDD_RPAGE1); return TRUE; } // SetAccountPassword will clean the psw buffers dwRet = SetAccountPassword(); if (ERROR_SUCCESS == dwRet) { if (c_pPrivate) free(c_pPrivate); c_pPrivate = NULL; return FALSE; } else if (NERR_PasswordTooShort == dwRet) { // Password doesn't conform - try again RMessageBox(hDlg,IDS_MBTINVALIDPSW,IDS_RPSWTOOSHORT,MB_ICONHAND); SendMessage(c_hwndRP1E1,WM_SETTEXT,0,(LPARAM)0); SendMessage(c_hwndRP1E2,WM_SETTEXT,0,(LPARAM)0); SetWindowLong(hDlg,DWLP_MSGRESULT,IDD_RPAGE1); return TRUE; } else if (NTE_BAD_DATA == dwRet){ // ya might get this using an obsolete disk? if (c_pPrivate) free(c_pPrivate); c_pPrivate = NULL; RMessageBox(hDlg,IDS_MBTINVALIDDISK ,IDS_RPSWERROR ,MB_ICONHAND); SetWindowLong(hDlg,DWLP_MSGRESULT,IDD_RWELCOME); return TRUE; } else { RMessageBox(hDlg,IDS_MBTERROR,IDS_RPSWUNSPEC,MB_ICONHAND); SetWindowLong(hDlg,DWLP_MSGRESULT,IDD_RWELCOME); return TRUE; } return FALSE; break; default: return FALSE; } break; default: return FALSE; } return TRUE; } // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // // FINISH page proc - reach this page only on success? // // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ INT_PTR CALLBACK RPageProc2( HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { INT i; switch (message) { case WM_INITDIALOG: c_hwndRFinish1 = GetDlgItem(hDlg,IDC_RFINISH1); if (NULL != c_hTitleFont) SendMessage(c_hwndRFinish1,WM_SETFONT,(WPARAM) c_hTitleFont,(LPARAM) TRUE); LoadString(g_hInstance,IDS_RFINISH1,Buf,TEMPSTRINGBUFSIZE); SendMessage(c_hwndRFinish1,WM_SETTEXT,0,(LPARAM)Buf); c_hwndRFinish2 = GetDlgItem(hDlg,IDC_RFINISH2); LoadString(g_hInstance,IDS_RFINISH2,Buf,TEMPSTRINGBUFSIZE); SendMessage(c_hwndRFinish2,WM_SETTEXT,0,(LPARAM)Buf); break; case WM_COMMAND: if (HIWORD(wParam) == BN_CLICKED) { i = LOWORD(wParam); } break; case WM_NOTIFY: switch (((NMHDR FAR *) lParam)->code) { case PSN_KILLACTIVE: SetWindowLong(hDlg, DWLP_MSGRESULT, FALSE); return 1; break; case PSN_RESET: // rest to the original values SetWindowLong(hDlg, DWLP_MSGRESULT, FALSE); if (c_hTitleFont) DeleteObject(c_hTitleFont); break; case PSN_SETACTIVE: // Set controls to state indicated by data // Set BACK/FINISH instead of BACK/NEXT PropSheet_SetWizButtons(GetParent(hDlg),PSWIZB_FINISH); PropSheet_CancelToClose(GetParent(hDlg)); break; case PSN_WIZBACK: break; case PSN_WIZFINISH: // Done if (c_hTitleFont) DeleteObject(c_hTitleFont); break; default: return FALSE; } break; default: return FALSE; } return TRUE; } ///////////////////////////////////////////////////////////////////////// // // Common Routines for all pages // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // // // // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ void InitPropertyPage( PROPSHEETPAGE* psp, INT idDlg, DLGPROC pfnDlgProc, DWORD dwFlags, LPARAM lParam) { memset((LPVOID)psp,0,sizeof(PROPSHEETPAGE)); psp->dwFlags = dwFlags; psp->pszTemplate = MAKEINTRESOURCE(idDlg); psp->pfnDlgProc = pfnDlgProc; psp->dwSize = sizeof(PROPSHEETPAGE); psp->hInstance = g_hInstance; } // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // // Set the text for title and subtitle for Wizard97 style pages // // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ void SetPageHeaderText(PROPSHEETPAGE *psp, INT iTitle, INT iSubTitle) { if (0 != (psp->dwFlags & PSP_HIDEHEADER)) return; if (0 != iTitle) { psp->pszHeaderTitle = MAKEINTRESOURCE(iTitle); psp->dwFlags |= PSP_USEHEADERTITLE; } if (0 != iSubTitle) { psp->pszHeaderSubTitle = MAKEINTRESOURCE(iSubTitle); psp->dwFlags |= PSP_USEHEADERSUBTITLE; } } // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // // Set the page's title bar caption // // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ void SetPageCaption(PROPSHEETPAGE *psp, INT iTitle) { if (0 != iTitle) { psp->pszTitle = MAKEINTRESOURCE(iTitle); psp->dwFlags |= PSP_USETITLE; } } // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // // PRShow[Save|Restore]Wizard() // // Pass the HWND of the owning window, and pass the instance handle of // the enclosing binary, for the purpose of locating resources // // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ //INT_PTR PRShowSaveWizard(HWND hwndOwner) void APIENTRY PRShowSaveWizardW(HWND hwndOwner,HINSTANCE hInstance,LPWSTR pszCmdLine,int nCmdShow) { PROPSHEETPAGE psp[NUMSAVEPAGES]; HPROPSHEETPAGE hpsp[NUMSAVEPAGES]; PROPSHEETHEADER psh; INT_PTR iRet; if (NULL == hwndOwner) hwndOwner = GetForegroundWindow(); HANDLE hMutex = CreateMutex(NULL,TRUE,TEXT("PRWIZARDMUTEX")); if (NULL == hMutex) return; if (ERROR_ALREADY_EXISTS == GetLastError()) { CloseHandle(hMutex); return; } c_fIsBackup = TRUE; c_hTitleFont = CreateFontY(TEXT("MS Shell Dlg"),FW_BOLD,12); #ifdef LOUDLY if (NULL == c_hTitleFont) OutputDebugString(L"Title font missing\n"); if (NULL == hwndOwner) OutputDebugString(L"Owner window handle missing\n"); #endif InitPropertyPage( &psp[0], IDD_SWELCOME, SPageProc0, PSP_HIDEHEADER,0); InitPropertyPage( &psp[1], IDD_SPAGEXS , SPageProcX, PSP_DEFAULT ,0); InitPropertyPage( &psp[2], IDD_SPAGE1 , SPageProc1, PSP_DEFAULT ,0); InitPropertyPage( &psp[3], IDD_SPAGE2 , SPageProc2, PSP_DEFAULT, 0); InitPropertyPage( &psp[4], IDD_SFINISH , SPageProc3, PSP_HIDEHEADER,0); SetPageHeaderText(&psp[1], IDS_SPXTITLE,IDS_SPXSUBTITLE); SetPageHeaderText(&psp[2], IDS_SP1TITLE,IDS_SP1SUBTITLE); SetPageHeaderText(&psp[3], IDS_SP2TITLE,IDS_SP2SUBTITLE); for (INT j=0;j