server: Add some validation of clipboard window handles.
[wine.git] / server / clipboard.c
bloba1535b6e134e965fc914f6130427156a376e022f
1 /*
2 * Server-side clipboard management
4 * Copyright (C) 2002 Ulrich Czekalla
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "config.h"
22 #include "wine/port.h"
24 #include <assert.h>
25 #include <stdlib.h>
26 #include <stdio.h>
27 #include <string.h>
29 #include "ntstatus.h"
30 #define WIN32_NO_STATUS
31 #include "request.h"
32 #include "object.h"
33 #include "file.h"
34 #include "process.h"
35 #include "user.h"
36 #include "winuser.h"
37 #include "winternl.h"
39 struct clipboard
41 struct object obj; /* object header */
42 struct thread *open_thread; /* thread id that has clipboard open */
43 user_handle_t open_win; /* window that has clipboard open */
44 struct thread *owner_thread; /* thread id that owns the clipboard */
45 user_handle_t owner_win; /* window that owns the clipboard data */
46 user_handle_t viewer; /* first window in clipboard viewer list */
47 unsigned int seqno; /* clipboard change sequence number */
48 timeout_t seqno_timestamp; /* time stamp of last seqno increment */
51 static void clipboard_dump( struct object *obj, int verbose );
53 static const struct object_ops clipboard_ops =
55 sizeof(struct clipboard), /* size */
56 clipboard_dump, /* dump */
57 no_get_type, /* get_type */
58 no_add_queue, /* add_queue */
59 NULL, /* remove_queue */
60 NULL, /* signaled */
61 NULL, /* satisfied */
62 no_signal, /* signal */
63 no_get_fd, /* get_fd */
64 no_map_access, /* map_access */
65 default_get_sd, /* get_sd */
66 default_set_sd, /* set_sd */
67 no_lookup_name, /* lookup_name */
68 no_link_name, /* link_name */
69 NULL, /* unlink_name */
70 no_open_file, /* open_file */
71 no_close_handle, /* close_handle */
72 no_destroy /* destroy */
76 #define MINUPDATELAPSE (2 * TICKS_PER_SEC)
78 /* dump a clipboard object */
79 static void clipboard_dump( struct object *obj, int verbose )
81 struct clipboard *clipboard = (struct clipboard *)obj;
83 fprintf( stderr, "Clipboard open_thread=%p open_win=%08x owner_thread=%p owner_win=%08x viewer=%08x seq=%u\n",
84 clipboard->open_thread, clipboard->open_win, clipboard->owner_thread,
85 clipboard->owner_win, clipboard->viewer, clipboard->seqno );
88 /* retrieve the clipboard info for the current process, allocating it if needed */
89 static struct clipboard *get_process_clipboard(void)
91 struct clipboard *clipboard;
92 struct winstation *winstation = get_process_winstation( current->process, WINSTA_ACCESSCLIPBOARD );
94 if (!winstation) return NULL;
96 if (!(clipboard = winstation->clipboard))
98 if ((clipboard = alloc_object( &clipboard_ops )))
100 clipboard->open_thread = NULL;
101 clipboard->open_win = 0;
102 clipboard->owner_thread = NULL;
103 clipboard->owner_win = 0;
104 clipboard->viewer = 0;
105 clipboard->seqno = 0;
106 clipboard->seqno_timestamp = 0;
107 winstation->clipboard = clipboard;
110 release_object( winstation );
111 return clipboard;
114 /* cleanup clipboard information upon window destruction */
115 void cleanup_clipboard_window( struct desktop *desktop, user_handle_t window )
117 struct clipboard *clipboard = desktop->winstation->clipboard;
119 if (!clipboard) return;
121 if (clipboard->open_win == window)
123 clipboard->open_win = 0;
124 clipboard->open_thread = NULL;
126 if (clipboard->owner_win == window)
128 clipboard->owner_win = 0;
129 clipboard->owner_thread = NULL;
131 if (clipboard->viewer == window) clipboard->viewer = 0;
134 /* Called when thread terminates to allow release of clipboard */
135 void cleanup_clipboard_thread(struct thread *thread)
137 struct clipboard *clipboard;
138 struct winstation *winstation;
140 if (!thread->process->winstation) return;
141 if (!(winstation = get_process_winstation( thread->process, WINSTA_ACCESSCLIPBOARD ))) return;
143 if ((clipboard = winstation->clipboard))
145 if (thread == clipboard->open_thread)
147 clipboard->open_win = 0;
148 clipboard->open_thread = NULL;
150 if (thread == clipboard->owner_thread)
152 clipboard->owner_win = 0;
153 clipboard->owner_thread = NULL;
156 release_object( winstation );
159 static int release_clipboard_owner( struct clipboard *clipboard, user_handle_t win )
161 if ((clipboard->open_thread && clipboard->open_thread->process != current->process) ||
162 (win && clipboard->owner_win != get_user_full_handle( win )))
164 set_win32_error( ERROR_CLIPBOARD_NOT_OPEN );
165 return 0;
167 clipboard->owner_win = 0;
168 clipboard->owner_thread = NULL;
169 return 1;
173 static int get_seqno( struct clipboard *clipboard )
175 if (!clipboard->owner_thread && (current_time - clipboard->seqno_timestamp > MINUPDATELAPSE))
177 clipboard->seqno_timestamp = current_time;
178 clipboard->seqno++;
180 return clipboard->seqno;
184 /* open the clipboard */
185 DECL_HANDLER(open_clipboard)
187 struct clipboard *clipboard = get_process_clipboard();
188 user_handle_t win = req->window;
190 if (!clipboard) return;
192 if (win && !get_user_object_handle( &win, USER_WINDOW ))
194 set_win32_error( ERROR_INVALID_WINDOW_HANDLE );
195 return;
197 if (clipboard->open_thread && clipboard->open_win != win)
199 set_error( STATUS_INVALID_LOCK_SEQUENCE );
200 return;
202 clipboard->open_win = win;
203 clipboard->open_thread = current;
205 reply->owner = (clipboard->owner_thread && clipboard->owner_thread->process == current->process);
209 /* close the clipboard */
210 DECL_HANDLER(close_clipboard)
212 struct clipboard *clipboard = get_process_clipboard();
214 if (!clipboard) return;
216 if (clipboard->open_thread != current)
218 set_win32_error( ERROR_CLIPBOARD_NOT_OPEN );
219 return;
221 if (req->changed) clipboard->seqno++;
222 clipboard->open_thread = NULL;
223 clipboard->open_win = 0;
225 reply->viewer = clipboard->viewer;
226 reply->owner = (clipboard->owner_thread && clipboard->owner_thread->process == current->process);
230 DECL_HANDLER(set_clipboard_info)
232 struct clipboard *clipboard = get_process_clipboard();
234 if (!clipboard) return;
236 reply->old_clipboard = clipboard->open_win;
237 reply->old_owner = clipboard->owner_win;
238 reply->old_viewer = clipboard->viewer;
240 if (req->flags & SET_CB_RELOWNER)
242 if (!release_clipboard_owner( clipboard, req->owner )) return;
245 if (req->flags & SET_CB_SEQNO) clipboard->seqno++;
247 reply->seqno = get_seqno( clipboard );
249 if (clipboard->open_thread) reply->flags |= CB_OPEN_ANY;
250 if (clipboard->open_thread == current) reply->flags |= CB_OPEN;
251 if (clipboard->owner_thread == current) reply->flags |= CB_OWNER;
252 if (clipboard->owner_thread && clipboard->owner_thread->process == current->process)
253 reply->flags |= CB_PROCESS;
257 /* empty the clipboard and grab ownership */
258 DECL_HANDLER(empty_clipboard)
260 struct clipboard *clipboard = get_process_clipboard();
262 if (!clipboard) return;
264 if (clipboard->open_thread != current)
266 set_win32_error( ERROR_CLIPBOARD_NOT_OPEN );
267 return;
269 clipboard->owner_win = clipboard->open_win;
270 clipboard->owner_thread = clipboard->open_thread;
271 clipboard->seqno++;
275 /* Get clipboard information */
276 DECL_HANDLER(get_clipboard_info)
278 struct clipboard *clipboard = get_process_clipboard();
280 if (!clipboard) return;
282 reply->window = clipboard->open_win;
283 reply->owner = clipboard->owner_win;
284 reply->viewer = clipboard->viewer;
285 reply->seqno = get_seqno( clipboard );
289 /* set the clipboard viewer window */
290 DECL_HANDLER(set_clipboard_viewer)
292 struct clipboard *clipboard = get_process_clipboard();
293 user_handle_t viewer = req->viewer;
294 user_handle_t previous = req->previous;
296 if (!clipboard) return;
298 if (viewer && !get_user_object_handle( &viewer, USER_WINDOW ))
300 set_win32_error( ERROR_INVALID_WINDOW_HANDLE );
301 return;
303 if (previous && !get_user_object_handle( &previous, USER_WINDOW ))
305 set_win32_error( ERROR_INVALID_WINDOW_HANDLE );
306 return;
309 reply->old_viewer = clipboard->viewer;
310 reply->owner = clipboard->owner_win;
312 if (!previous || clipboard->viewer == previous)
313 clipboard->viewer = viewer;
314 else
315 set_error( STATUS_PENDING ); /* need to send message instead */