VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/VBoxGINA/Dialog.cpp@ 5387

Last change on this file since 5387 was 5387, checked in by vboxsync, 17 years ago

Check for new logon dialog Id's.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.9 KB
Line 
1/** @file
2 *
3 * VBoxGINA -- Windows Logon DLL for VirtualBox Dialog Code
4 *
5 * Copyright (C) 2006-2007 innotek GmbH
6 *
7 * This file is part of VirtualBox Open Source Edition (OSE), as
8 * available from http://www.virtualbox.org. This file is free software;
9 * you can redistribute it and/or modify it under the terms of the GNU
10 * General Public License as published by the Free Software Foundation,
11 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
12 * distribution. VirtualBox OSE is distributed in the hope that it will
13 * be useful, but WITHOUT ANY WARRANTY of any kind.
14 */
15
16#include <windows.h>
17#include "Dialog.h"
18#include "WinWlx.h"
19#include "Helper.h"
20#include "VBoxGINA.h"
21
22//
23// MSGINA dialog box IDs.
24//
25#define IDD_WLXDIAPLAYSASNOTICE_DIALOG 1400
26#define IDD_WLXLOGGEDOUTSAS_DIALOG 1450
27/* the Windows 2000 ID */
28#define IDD_WLXLOGGEDOUTSAS_DIALOG2 1500
29#define IDD_CHANGE_PASSWORD_DIALOG 1550
30#define IDD_WLXLOGGEDONSAS_DIALOG 1650
31#define IDD_WLXWKSTALOCKEDSAS_DIALOG 1850
32
33//
34// MSGINA control IDs
35//
36#define IDC_WLXLOGGEDOUTSAS_USERNAME 1453
37#define IDC_WLXLOGGEDOUTSAS_USERNAME2 1502
38#define IDC_WLXLOGGEDOUTSAS_PASSWORD 1454
39#define IDC_WLXLOGGEDOUTSAS_PASSWORD2 1503
40#define IDC_WLXLOGGEDOUTSAS_DOMAIN 1455
41#define IDC_WLXLOGGEDOUTSAS_DOMAIN2 1504
42#define IDC_WLXWKSTALOCKEDSAS_DOMAIN 1856
43
44static DLGPROC pfWlxLoggedOutSASDlgProc = NULL;
45
46static PWLX_DIALOG_BOX_PARAM pfWlxDialogBoxParam = NULL;
47
48int WINAPI MyWlxDialogBoxParam (HANDLE, HANDLE, LPWSTR, HWND, DLGPROC, LPARAM);
49
50void hookDialogBoxes(PVOID pWinlogonFunctions, DWORD dwWlxVersion)
51{
52 Log(("VBoxGINA::hookDialogBoxes\n"));
53
54 /* this is version dependent */
55 switch (dwWlxVersion)
56 {
57 case WLX_VERSION_1_0:
58 {
59 pfWlxDialogBoxParam = ((PWLX_DISPATCH_VERSION_1_0)pWinlogonFunctions)->WlxDialogBoxParam;
60 ((PWLX_DISPATCH_VERSION_1_0)pWinlogonFunctions)->WlxDialogBoxParam = MyWlxDialogBoxParam;
61 break;
62 }
63
64 case WLX_VERSION_1_1:
65 {
66 pfWlxDialogBoxParam = ((PWLX_DISPATCH_VERSION_1_1)pWinlogonFunctions)->WlxDialogBoxParam;
67 ((PWLX_DISPATCH_VERSION_1_1)pWinlogonFunctions)->WlxDialogBoxParam = MyWlxDialogBoxParam;
68 break;
69 }
70
71 case WLX_VERSION_1_2:
72 {
73 pfWlxDialogBoxParam = ((PWLX_DISPATCH_VERSION_1_2)pWinlogonFunctions)->WlxDialogBoxParam;
74 ((PWLX_DISPATCH_VERSION_1_2)pWinlogonFunctions)->WlxDialogBoxParam = MyWlxDialogBoxParam;
75 break;
76 }
77
78 case WLX_VERSION_1_3:
79 {
80 pfWlxDialogBoxParam = ((PWLX_DISPATCH_VERSION_1_3)pWinlogonFunctions)->WlxDialogBoxParam;
81 ((PWLX_DISPATCH_VERSION_1_3)pWinlogonFunctions)->WlxDialogBoxParam = MyWlxDialogBoxParam;
82 break;
83 }
84
85 case WLX_VERSION_1_4:
86 {
87 pfWlxDialogBoxParam = ((PWLX_DISPATCH_VERSION_1_4)pWinlogonFunctions)->WlxDialogBoxParam;
88 ((PWLX_DISPATCH_VERSION_1_4)pWinlogonFunctions)->WlxDialogBoxParam = MyWlxDialogBoxParam;
89 break;
90 }
91
92 default:
93 {
94 Log(("VBoxGINA::hookDialogBoxes: unrecognized version '%d', nothing hooked!\n", dwWlxVersion));
95 /* not good, don't do anything */
96 break;
97 }
98 }
99}
100
101//
102// Redirected WlxLoggedOutSASDlgProc().
103//
104
105#define CREDPOLL_TIMERID 0x1243
106
107BOOL CALLBACK MyWlxLoggedOutSASDlgProc(HWND hwndDlg, // handle to dialog box
108 UINT uMsg, // message
109 WPARAM wParam, // first message parameter
110 LPARAM lParam) // second message parameter
111{
112 BOOL bResult;
113 static HWND hwndUserId, hwndPassword, hwndDomain = 0;
114 static UINT_PTR timer = 0;
115
116 Log(("VBoxGINA::MyWlxLoggedOutSASDlgProc\n"));
117
118 //
119 // Pass on to MSGINA first.
120 //
121 bResult = pfWlxLoggedOutSASDlgProc(hwndDlg, uMsg, wParam, lParam);
122
123 //
124 // We are only interested in the WM_INITDIALOG message.
125 //
126 switch (uMsg)
127 {
128 case WM_INITDIALOG:
129 {
130 Log(("VBoxGINA::MyWlxLoggedOutSASDlgProc: got WM_INITDIALOG\n"));
131
132 /* get the entry fields */
133 hwndUserId = GetDlgItem(hwndDlg, IDC_WLXLOGGEDOUTSAS_USERNAME);
134 if (!hwndUserId)
135 hwndUserId = GetDlgItem(hwndDlg, IDC_WLXLOGGEDOUTSAS_USERNAME2);
136 hwndPassword = GetDlgItem(hwndDlg, IDC_WLXLOGGEDOUTSAS_PASSWORD);
137 if (!hwndPassword)
138 hwndPassword = GetDlgItem(hwndDlg, IDC_WLXLOGGEDOUTSAS_PASSWORD2);
139 hwndDomain = GetDlgItem(hwndDlg, IDC_WLXLOGGEDOUTSAS_DOMAIN);
140 if (!hwndDomain)
141 hwndDomain = GetDlgItem(hwndDlg, IDC_WLXLOGGEDOUTSAS_DOMAIN2);
142
143 Log(("VBoxGINA::MyWlxLoggedOutSASDlgProc: hwndUserId: %x, hwndPassword: %d, hwndDomain: %d\n",
144 hwndUserId, hwndPassword, hwndDomain));
145
146 /* terminate the credentials poller thread, it's done is job */
147 credentialsPollerTerminate();
148
149 if (credentialsAvailable())
150 {
151 /* query the credentials from VBox */
152 if (credentialsRetrieve())
153 {
154 if (hwndUserId)
155 SendMessage(hwndUserId, WM_SETTEXT, 0, (LPARAM)g_Username);
156 if (hwndPassword)
157 SendMessage(hwndPassword, WM_SETTEXT, 0, (LPARAM)g_Password);
158 if (hwndDomain)
159 SendMessage(hwndDomain, WM_SETTEXT, 0, (LPARAM)g_Domain);
160
161 /* we got the credentials, null them out */
162 credentialsReset();
163
164 /* confirm the logon dialog, simulating the user pressing "OK" */
165 WPARAM wParam = MAKEWPARAM(IDOK, BN_CLICKED);
166 PostMessage(hwndDlg, WM_COMMAND, wParam, 0);
167 }
168 }
169 else
170 {
171 /*
172 * The dialog is there but we don't have any credentials.
173 * Create a timer and poll for them.
174 */
175 timer = SetTimer(hwndDlg, CREDPOLL_TIMERID, 200, NULL);
176 if (!timer)
177 {
178 Log(("VBoxGINA::MyWlxLoggedOutSASDlgProc: failed creating timer! last error: %s\n",
179 GetLastError()));
180 }
181 }
182 break;
183 }
184
185 case WM_TIMER:
186 {
187 /* is it our credentials poller timer? */
188 if (wParam == CREDPOLL_TIMERID)
189 {
190 if (credentialsAvailable())
191 {
192 if (credentialsRetrieve())
193 {
194 if (hwndUserId)
195 SendMessage(hwndUserId, WM_SETTEXT, 0, (LPARAM)g_Username);
196 if (hwndPassword)
197 SendMessage(hwndPassword, WM_SETTEXT, 0, (LPARAM)g_Password);
198 if (hwndDomain)
199 SendMessage(hwndDomain, WM_SETTEXT, 0, (LPARAM)g_Domain);
200
201 /* we got the credentials, null them out */
202 credentialsReset();
203
204 /* confirm the logon dialog, simulating the user pressing "OK" */
205 WPARAM wParam = MAKEWPARAM(IDOK, BN_CLICKED);
206 PostMessage(hwndDlg, WM_COMMAND, wParam, 0);
207
208 /* we don't need the timer any longer */
209 /** @todo will we leak the timer when logging in manually? Should we kill it on WM_CLOSE? */
210 KillTimer(hwndDlg, CREDPOLL_TIMERID);
211 }
212 }
213 }
214 break;
215 }
216 }
217 return bResult;
218}
219
220
221int WINAPI MyWlxDialogBoxParam(HANDLE hWlx,
222 HANDLE hInst,
223 LPWSTR lpszTemplate,
224 HWND hwndOwner,
225 DLGPROC dlgprc,
226 LPARAM dwInitParam)
227{
228 Log(("VBoxGINA::MyWlxDialogBoxParam: lpszTemplate = %d\n", lpszTemplate));
229
230 //
231 // We only know MSGINA dialogs by identifiers.
232 //
233 if (!HIWORD((int)(void*)lpszTemplate))
234 {
235 //
236 // Hook appropriate dialog boxes as necessary.
237 //
238 switch ((DWORD) lpszTemplate)
239 {
240 case IDD_WLXLOGGEDOUTSAS_DIALOG:
241 case IDD_WLXLOGGEDOUTSAS_DIALOG2:
242 {
243 Log(("VBoxGINA::MyWlxDialogBoxParam: returning hooked logged out dialog\n"));
244 pfWlxLoggedOutSASDlgProc = dlgprc;
245 return pfWlxDialogBoxParam(hWlx, hInst, lpszTemplate, hwndOwner,
246 MyWlxLoggedOutSASDlgProc, dwInitParam);
247 }
248
249 }
250 }
251
252 //
253 // The rest will not be redirected.
254 //
255 return pfWlxDialogBoxParam(hWlx, hInst, lpszTemplate,
256 hwndOwner, dlgprc, dwInitParam);
257}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette