ws2_32: Explicitly return WSAENOTSOCK for a file handle in getsockopt() except SO_OPE...
[wine.git] / dlls / ole32 / git.c
blobfe6b5e581224d5f0179b0312850d171b85dd62f0
1 /*
2 * Implementation of the StdGlobalInterfaceTable object
4 * The GlobalInterfaceTable (GIT) object is used to marshal interfaces between
5 * threading apartments (contexts). When you want to pass an interface but not
6 * as a parameter, it wouldn't get marshalled automatically, so you can use this
7 * object to insert the interface into a table, and you get back a cookie.
8 * Then when it's retrieved, it'll be unmarshalled into the right apartment.
10 * Copyright 2003 Mike Hearn <mike@theoretic.com>
12 * This library is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public
14 * License as published by the Free Software Foundation; either
15 * version 2.1 of the License, or (at your option) any later version.
17 * This library is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this library; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 #include <stdarg.h>
29 #define COBJMACROS
31 #include "windef.h"
32 #include "winbase.h"
33 #include "winuser.h"
34 #include "objbase.h"
35 #include "ole2.h"
36 #include "winerror.h"
38 #include "compobj_private.h"
40 #include "wine/list.h"
41 #include "wine/debug.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(ole);
45 /****************************************************************************
46 * StdGlobalInterfaceTable definition
48 * This class implements IGlobalInterfaceTable and is a process-wide singleton
49 * used for marshalling interfaces between threading apartments using cookies.
52 /* Each entry in the linked list of GIT entries */
53 typedef struct StdGITEntry
55 DWORD cookie;
56 IID iid; /* IID of the interface */
57 IStream* stream; /* Holds the marshalled interface */
59 struct list entry;
60 } StdGITEntry;
62 /* Class data */
63 typedef struct StdGlobalInterfaceTableImpl
65 IGlobalInterfaceTable IGlobalInterfaceTable_iface;
67 struct list list;
68 ULONG nextCookie;
70 } StdGlobalInterfaceTableImpl;
72 static IGlobalInterfaceTable *std_git;
74 static CRITICAL_SECTION git_section;
75 static CRITICAL_SECTION_DEBUG critsect_debug =
77 0, 0, &git_section,
78 { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
79 0, 0, { (DWORD_PTR)(__FILE__ ": global interface table") }
81 static CRITICAL_SECTION git_section = { &critsect_debug, -1, 0, 0, 0, 0 };
84 static inline StdGlobalInterfaceTableImpl *impl_from_IGlobalInterfaceTable(IGlobalInterfaceTable *iface)
86 return CONTAINING_RECORD(iface, StdGlobalInterfaceTableImpl, IGlobalInterfaceTable_iface);
89 /***
90 * A helper function to traverse the list and find the entry that matches the cookie.
91 * Returns NULL if not found. Must be called inside git_section critical section.
93 static StdGITEntry* StdGlobalInterfaceTable_FindEntry(StdGlobalInterfaceTableImpl* This,
94 DWORD cookie)
96 StdGITEntry* e;
98 TRACE("This=%p, cookie=0x%x\n", This, cookie);
100 LIST_FOR_EACH_ENTRY(e, &This->list, StdGITEntry, entry) {
101 if (e->cookie == cookie)
102 return e;
105 TRACE("Entry not found\n");
106 return NULL;
109 /***
110 * Here's the boring boilerplate stuff for IUnknown
113 static HRESULT WINAPI
114 StdGlobalInterfaceTable_QueryInterface(IGlobalInterfaceTable* iface,
115 REFIID riid, void** ppvObject)
117 /* Make sure silly coders can't crash us */
118 if (ppvObject == 0) return E_INVALIDARG;
120 *ppvObject = 0; /* assume we don't have the interface */
122 /* Do we implement that interface? */
123 if (IsEqualIID(&IID_IUnknown, riid) ||
124 IsEqualIID(&IID_IGlobalInterfaceTable, riid))
126 *ppvObject = iface;
128 else
130 FIXME("(%s), not supported.\n", debugstr_guid(riid));
131 return E_NOINTERFACE;
134 /* Now inc the refcount */
135 IGlobalInterfaceTable_AddRef(iface);
136 return S_OK;
139 static ULONG WINAPI
140 StdGlobalInterfaceTable_AddRef(IGlobalInterfaceTable* iface)
142 return 1;
145 static ULONG WINAPI
146 StdGlobalInterfaceTable_Release(IGlobalInterfaceTable* iface)
148 return 1;
151 /***
152 * Now implement the actual IGlobalInterfaceTable interface
155 static HRESULT WINAPI
156 StdGlobalInterfaceTable_RegisterInterfaceInGlobal(
157 IGlobalInterfaceTable* iface, IUnknown* pUnk,
158 REFIID riid, DWORD* pdwCookie)
160 StdGlobalInterfaceTableImpl* const This = impl_from_IGlobalInterfaceTable(iface);
161 IStream* stream = NULL;
162 HRESULT hres;
163 StdGITEntry* entry;
164 LARGE_INTEGER zero;
166 TRACE("iface=%p, pUnk=%p, riid=%s, pdwCookie=0x%p\n", iface, pUnk, debugstr_guid(riid), pdwCookie);
168 if (pUnk == NULL) return E_INVALIDARG;
170 /* marshal the interface */
171 TRACE("About to marshal the interface\n");
173 hres = CreateStreamOnHGlobal(0, TRUE, &stream);
174 if (hres != S_OK) return hres;
175 hres = CoMarshalInterface(stream, riid, pUnk, MSHCTX_INPROC, NULL, MSHLFLAGS_TABLESTRONG);
176 if (hres != S_OK)
178 IStream_Release(stream);
179 return hres;
182 zero.QuadPart = 0;
183 IStream_Seek(stream, zero, STREAM_SEEK_SET, NULL);
185 entry = HeapAlloc(GetProcessHeap(), 0, sizeof(StdGITEntry));
186 if (!entry)
188 CoReleaseMarshalData(stream);
189 IStream_Release(stream);
190 return E_OUTOFMEMORY;
193 EnterCriticalSection(&git_section);
195 entry->iid = *riid;
196 entry->stream = stream;
197 entry->cookie = This->nextCookie;
198 This->nextCookie++; /* inc the cookie count */
200 /* insert the new entry at the end of the list */
201 list_add_tail(&This->list, &entry->entry);
203 /* and return the cookie */
204 *pdwCookie = entry->cookie;
206 LeaveCriticalSection(&git_section);
208 TRACE("Cookie is 0x%x\n", entry->cookie);
209 return S_OK;
212 static HRESULT WINAPI
213 StdGlobalInterfaceTable_RevokeInterfaceFromGlobal(
214 IGlobalInterfaceTable* iface, DWORD dwCookie)
216 StdGlobalInterfaceTableImpl* This = impl_from_IGlobalInterfaceTable(iface);
217 StdGITEntry* entry;
218 HRESULT hr;
220 TRACE("iface=%p, dwCookie=0x%x\n", iface, dwCookie);
222 EnterCriticalSection(&git_section);
224 entry = StdGlobalInterfaceTable_FindEntry(This, dwCookie);
225 if (entry == NULL) {
226 TRACE("Entry not found\n");
227 LeaveCriticalSection(&git_section);
228 return E_INVALIDARG; /* not found */
231 list_remove(&entry->entry);
233 LeaveCriticalSection(&git_section);
235 /* Free the stream */
236 hr = CoReleaseMarshalData(entry->stream);
237 if (hr != S_OK)
239 WARN("Failed to release marshal data, hr = 0x%08x\n", hr);
240 return hr;
242 IStream_Release(entry->stream);
244 HeapFree(GetProcessHeap(), 0, entry);
245 return S_OK;
248 static HRESULT WINAPI
249 StdGlobalInterfaceTable_GetInterfaceFromGlobal(
250 IGlobalInterfaceTable* iface, DWORD dwCookie,
251 REFIID riid, void **ppv)
253 StdGlobalInterfaceTableImpl* This = impl_from_IGlobalInterfaceTable(iface);
254 StdGITEntry* entry;
255 HRESULT hres;
256 IStream *stream;
258 TRACE("dwCookie=0x%x, riid=%s, ppv=%p\n", dwCookie, debugstr_guid(riid), ppv);
260 EnterCriticalSection(&git_section);
262 entry = StdGlobalInterfaceTable_FindEntry(This, dwCookie);
263 if (entry == NULL) {
264 WARN("Entry for cookie 0x%x not found\n", dwCookie);
265 LeaveCriticalSection(&git_section);
266 return E_INVALIDARG;
269 TRACE("entry=%p\n", entry);
271 hres = IStream_Clone(entry->stream, &stream);
273 LeaveCriticalSection(&git_section);
275 if (hres != S_OK) {
276 WARN("Failed to clone stream with error 0x%08x\n", hres);
277 return hres;
280 /* unmarshal the interface */
281 hres = CoUnmarshalInterface(stream, riid, ppv);
282 IStream_Release(stream);
284 if (hres != S_OK) {
285 WARN("Failed to unmarshal stream\n");
286 return hres;
289 TRACE("ppv=%p\n", *ppv);
290 return S_OK;
293 static const IGlobalInterfaceTableVtbl StdGlobalInterfaceTableImpl_Vtbl =
295 StdGlobalInterfaceTable_QueryInterface,
296 StdGlobalInterfaceTable_AddRef,
297 StdGlobalInterfaceTable_Release,
298 StdGlobalInterfaceTable_RegisterInterfaceInGlobal,
299 StdGlobalInterfaceTable_RevokeInterfaceFromGlobal,
300 StdGlobalInterfaceTable_GetInterfaceFromGlobal
303 HRESULT WINAPI GlobalInterfaceTable_CreateInstance(IClassFactory *iface, IUnknown *outer, REFIID riid, void **obj)
305 StdGlobalInterfaceTableImpl *git;
307 if (!std_git)
309 git = heap_alloc(sizeof(*git));
310 if (!git) return E_OUTOFMEMORY;
312 git->IGlobalInterfaceTable_iface.lpVtbl = &StdGlobalInterfaceTableImpl_Vtbl;
313 list_init(&git->list);
314 git->nextCookie = 0xf100; /* that's where windows starts, so that's where we start */
316 if (InterlockedCompareExchangePointer((void **)&std_git, &git->IGlobalInterfaceTable_iface, NULL))
318 heap_free(git);
320 else
321 TRACE("Created the GIT %p\n", git);
324 return IGlobalInterfaceTable_QueryInterface(std_git, riid, obj);
327 void release_std_git(void)
329 StdGlobalInterfaceTableImpl *git;
330 StdGITEntry *entry, *entry2;
332 if (!std_git) return;
334 git = impl_from_IGlobalInterfaceTable(std_git);
335 LIST_FOR_EACH_ENTRY_SAFE(entry, entry2, &git->list, StdGITEntry, entry)
337 list_remove(&entry->entry);
339 CoReleaseMarshalData(entry->stream);
340 IStream_Release(entry->stream);
341 HeapFree(GetProcessHeap(), 0, entry);
344 HeapFree(GetProcessHeap(), 0, git);