/[rdesktop]/sourceforge.net/trunk/seamlessrdp/ServerExe/HookDll/hookdll.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /sourceforge.net/trunk/seamlessrdp/ServerExe/HookDll/hookdll.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1128 - (hide annotations)
Wed Mar 15 12:05:20 2006 UTC (18 years, 2 months ago) by ossman_
File MIME type: text/plain
File size: 6211 byte(s)
ran indent-all

1 ossman_ 1071 /* -*- c-basic-offset: 8 -*-
2     rdesktop: A Remote Desktop Protocol client.
3     Seamless windows - Remote server hook DLL
4 ossman_ 1069
5 ossman_ 1071 Based on code copyright (C) 2004-2005 Martin Wickett
6    
7     Copyright (C) Peter Åstrand <astrand@cendio.se> 2005-2006
8     Copyright (C) Pierre Ossman <ossman@cendio.se> 2006
9    
10     This program is free software; you can redistribute it and/or modify
11     it under the terms of the GNU General Public License as published by
12     the Free Software Foundation; either version 2 of the License, or
13     (at your option) any later version.
14    
15     This program is distributed in the hope that it will be useful,
16     but WITHOUT ANY WARRANTY; without even the implied warranty of
17     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18     GNU General Public License for more details.
19    
20     You should have received a copy of the GNU General Public License
21     along with this program; if not, write to the Free Software
22     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23     */
24    
25 ossman_ 1069 #include <stdio.h>
26     #include <stdarg.h>
27    
28 ossman_ 1071 #include <windows.h>
29     #include <winuser.h>
30 ossman_ 1069
31 ossman_ 1073 #include "../vchannel.h"
32 ossman_ 1071
33 ossman_ 1069 #define DLL_EXPORT __declspec(dllexport)
34    
35     // Shared DATA
36     #pragma data_seg ( "SHAREDDATA" )
37    
38     // this is the total number of processes this dll is currently attached to
39 ossman_ 1071 int g_instance_count = 0;
40 ossman_ 1069
41     #pragma data_seg ()
42    
43     #pragma comment(linker, "/section:SHAREDDATA,rws")
44    
45 ossman_ 1071 static HHOOK g_cbt_hook = NULL;
46     static HHOOK g_wndproc_hook = NULL;
47 ossman_ 1069
48 ossman_ 1071 static HINSTANCE g_instance = NULL;
49 ossman_ 1069
50 ossman_ 1071 static HANDLE g_mutex = NULL;
51 ossman_ 1069
52 ossman_ 1081 static void
53     update_position(HWND hwnd)
54     {
55     RECT rect;
56    
57     if (!GetWindowRect(hwnd, &rect))
58     {
59     debug("GetWindowRect failed!\n");
60     return;
61     }
62    
63 astrand 1091 vchannel_write("POSITION,0x%p,%d,%d,%d,%d,0x%x",
64 ossman_ 1081 hwnd,
65     rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top, 0);
66     }
67    
68 ossman_ 1071 static LRESULT CALLBACK
69     wndproc_hook_proc(int code, WPARAM cur_thread, LPARAM details)
70 ossman_ 1069 {
71 ossman_ 1097 HWND hwnd, parent;
72 ossman_ 1079 UINT msg;
73     WPARAM wparam;
74     LPARAM lparam;
75 ossman_ 1069
76 ossman_ 1079 LONG style;
77 ossman_ 1069
78 ossman_ 1071 if (code < 0)
79     goto end;
80 ossman_ 1069
81 ossman_ 1079 hwnd = ((CWPSTRUCT *) details)->hwnd;
82     msg = ((CWPSTRUCT *) details)->message;
83     wparam = ((CWPSTRUCT *) details)->wParam;
84     lparam = ((CWPSTRUCT *) details)->lParam;
85    
86     style = GetWindowLong(hwnd, GWL_STYLE);
87    
88 ossman_ 1082 /* Docs say that WS_CHILD and WS_POPUP is an illegal combination,
89     but they exist nonetheless. */
90     if ((style & WS_CHILD) && !(style & WS_POPUP))
91 ossman_ 1079 goto end;
92    
93 ossman_ 1097 if (style & WS_POPUP)
94 ossman_ 1109 {
95 ossman_ 1097 parent = (HWND) GetWindowLong(hwnd, GWL_HWNDPARENT);
96 ossman_ 1109 if (!parent)
97     parent = (HWND) - 1;
98     }
99 ossman_ 1097 else
100     parent = NULL;
101    
102 ossman_ 1071 switch (msg)
103     {
104 ossman_ 1069
105 ossman_ 1071 case WM_WINDOWPOSCHANGED:
106 ossman_ 1079 {
107     WINDOWPOS *wp = (WINDOWPOS *) lparam;
108 ossman_ 1069
109 ossman_ 1079 if (wp->flags & SWP_SHOWWINDOW)
110     {
111 ossman_ 1099 char title[150];
112     int state;
113    
114 ossman_ 1097 vchannel_write("CREATE,0x%p,0x%p,0x%x", hwnd, parent, 0);
115 ossman_ 1069
116 ossman_ 1099 GetWindowText(hwnd, title, sizeof(title));
117 ossman_ 1069
118 ossman_ 1113 vchannel_write("TITLE,0x%x,%s,0x%x", hwnd,
119     vchannel_strfilter(title), 0);
120 ossman_ 1099
121     if (style & WS_MAXIMIZE)
122     state = 2;
123     else if (style & WS_MINIMIZE)
124     state = 1;
125     else
126     state = 0;
127    
128     vchannel_write("STATE,0x%p,0x%x,0x%x", hwnd, state, 0);
129    
130 ossman_ 1081 update_position(hwnd);
131 ossman_ 1099
132     /* FIXME: Figure out z order */
133 ossman_ 1079 }
134 ossman_ 1069
135 ossman_ 1079 if (wp->flags & SWP_HIDEWINDOW)
136 astrand 1091 vchannel_write("DESTROY,0x%p,0x%x", hwnd, 0);
137 ossman_ 1079
138 ossman_ 1108 if (!(style & WS_VISIBLE) || (style & WS_MINIMIZE))
139 ossman_ 1079 break;
140    
141 ossman_ 1080 if (!(wp->flags & SWP_NOMOVE && wp->flags & SWP_NOSIZE))
142 ossman_ 1081 update_position(hwnd);
143 ossman_ 1079
144     if (!(wp->flags & SWP_NOZORDER))
145 ossman_ 1080 {
146 astrand 1091 vchannel_write("ZCHANGE,0x%p,0x%p,0x%x",
147 ossman_ 1079 hwnd,
148     wp->flags & SWP_NOACTIVATE ? wp->
149     hwndInsertAfter : 0, 0);
150 ossman_ 1080 }
151 ossman_ 1069
152 ossman_ 1071 break;
153 ossman_ 1079 }
154 ossman_ 1069
155 ossman_ 1081 case WM_SIZE:
156 ossman_ 1108 if (!(style & WS_VISIBLE) || (style & WS_MINIMIZE))
157 ossman_ 1083 break;
158 ossman_ 1081 update_position(hwnd);
159     break;
160    
161     case WM_MOVE:
162 ossman_ 1108 if (!(style & WS_VISIBLE) || (style & WS_MINIMIZE))
163 ossman_ 1083 break;
164 ossman_ 1081 update_position(hwnd);
165     break;
166    
167 ossman_ 1102 case WM_SETTEXT:
168 ossman_ 1113 {
169     char *title;
170     if (!(style & WS_VISIBLE))
171     break;
172     title = _strdup((char *) lparam);
173     vchannel_write("TITLE,0x%p,%s,0x%x", hwnd,
174     vchannel_strfilter(title), 0);
175     free(title);
176 ossman_ 1102 break;
177 ossman_ 1113 }
178 ossman_ 1102
179 ossman_ 1071 case WM_DESTROY:
180 ossman_ 1083 if (!(style & WS_VISIBLE))
181     break;
182 astrand 1091 vchannel_write("DESTROY,0x%p,0x%x", hwnd, 0);
183 ossman_ 1071 break;
184 ossman_ 1069
185 ossman_ 1071 default:
186     break;
187     }
188    
189     end:
190     return CallNextHookEx(g_wndproc_hook, code, cur_thread, details);
191 ossman_ 1069 }
192    
193 ossman_ 1071 static LRESULT CALLBACK
194     cbt_hook_proc(int code, WPARAM wparam, LPARAM lparam)
195 ossman_ 1069 {
196 ossman_ 1071 if (code < 0)
197     goto end;
198 ossman_ 1069
199 ossman_ 1071 switch (code)
200     {
201     case HCBT_MINMAX:
202     {
203 ossman_ 1079 int show, state;
204 ossman_ 1069
205 ossman_ 1071 show = LOWORD(lparam);
206 ossman_ 1069
207 ossman_ 1128 if ((show == SW_NORMAL) || (show == SW_SHOWNORMAL)
208     || (show == SW_RESTORE))
209 ossman_ 1079 state = 0;
210 ossman_ 1106 else if ((show == SW_MINIMIZE) || (show == SW_SHOWMINIMIZED))
211 ossman_ 1079 state = 1;
212 ossman_ 1106 else if ((show == SW_MAXIMIZE) || (show == SW_SHOWMAXIMIZED))
213 ossman_ 1079 state = 2;
214 ossman_ 1100 else
215 ossman_ 1106 {
216     debug("Unexpected show: %d", show);
217 ossman_ 1100 break;
218 ossman_ 1106 }
219 ossman_ 1096 vchannel_write("STATE,0x%p,0x%x,0x%x", (HWND) wparam, state, 0);
220 ossman_ 1071 break;
221     }
222 ossman_ 1069
223 ossman_ 1071 default:
224     break;
225     }
226 ossman_ 1069
227 ossman_ 1071 end:
228     return CallNextHookEx(g_cbt_hook, code, wparam, lparam);
229 ossman_ 1069 }
230    
231 ossman_ 1071 DLL_EXPORT void
232     SetHooks(void)
233 ossman_ 1069 {
234 ossman_ 1071 if (!g_cbt_hook)
235     g_cbt_hook = SetWindowsHookEx(WH_CBT, cbt_hook_proc, g_instance, 0);
236 ossman_ 1069
237 ossman_ 1071 if (!g_wndproc_hook)
238     g_wndproc_hook = SetWindowsHookEx(WH_CALLWNDPROC, wndproc_hook_proc, g_instance, 0);
239 ossman_ 1069 }
240    
241 ossman_ 1071 DLL_EXPORT void
242     RemoveHooks(void)
243 ossman_ 1069 {
244 ossman_ 1071 if (g_cbt_hook)
245     UnhookWindowsHookEx(g_cbt_hook);
246 ossman_ 1069
247 ossman_ 1071 if (g_wndproc_hook)
248     UnhookWindowsHookEx(g_wndproc_hook);
249 ossman_ 1069 }
250    
251 ossman_ 1071 DLL_EXPORT int
252     GetInstanceCount()
253 ossman_ 1069 {
254 ossman_ 1071 return g_instance_count;
255 ossman_ 1069 }
256    
257 ossman_ 1071 BOOL APIENTRY
258     DllMain(HINSTANCE hinstDLL, DWORD ul_reason_for_call, LPVOID lpReserved)
259 ossman_ 1069 {
260 ossman_ 1071 switch (ul_reason_for_call)
261     {
262     case DLL_PROCESS_ATTACH:
263     // remember our instance handle
264     g_instance = hinstDLL;
265 ossman_ 1069
266 ossman_ 1073 g_mutex = CreateMutex(NULL, FALSE, "Local\\SeamlessDLL");
267 ossman_ 1071 if (!g_mutex)
268     return FALSE;
269 ossman_ 1069
270 ossman_ 1071 WaitForSingleObject(g_mutex, INFINITE);
271     ++g_instance_count;
272     ReleaseMutex(g_mutex);
273 ossman_ 1069
274 ossman_ 1071 vchannel_open();
275 ossman_ 1069
276 ossman_ 1071 break;
277 ossman_ 1069
278 ossman_ 1071 case DLL_THREAD_ATTACH:
279     break;
280 ossman_ 1069
281 ossman_ 1071 case DLL_THREAD_DETACH:
282     break;
283 ossman_ 1069
284 ossman_ 1071 case DLL_PROCESS_DETACH:
285     WaitForSingleObject(g_mutex, INFINITE);
286     --g_instance_count;
287     ReleaseMutex(g_mutex);
288 ossman_ 1069
289 ossman_ 1071 vchannel_close();
290 ossman_ 1069
291 ossman_ 1071 CloseHandle(g_mutex);
292 ossman_ 1069
293 ossman_ 1071 break;
294     }
295 ossman_ 1069
296 ossman_ 1071 return TRUE;
297 ossman_ 1069 }

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26