Sync up to trunk head.
[reactos.git] / dll / win32 / ole32 / moniker.c
1 /*
2 * Monikers
3 *
4 * Copyright 1998 Marcus Meissner
5 * Copyright 1999 Noomen Hamza
6 * Copyright 2005 Robert Shearman (for CodeWeavers)
7 * Copyright 2007 Robert Shearman
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24 #include "config.h"
25 #include "wine/port.h"
26
27 #include <stdarg.h>
28 #include <string.h>
29
30 #define COBJMACROS
31
32 #include "winerror.h"
33 #include "windef.h"
34 #include "winbase.h"
35 #include "winuser.h"
36 #include "wtypes.h"
37 #include "ole2.h"
38
39 #include "wine/list.h"
40 #include "wine/debug.h"
41 #include "wine/unicode.h"
42 #include "wine/exception.h"
43
44 #include "compobj_private.h"
45 #include "moniker.h"
46 #include "irot.h"
47
48 WINE_DEFAULT_DEBUG_CHANNEL(ole);
49
50 /* see MSDN docs for IROTData::GetComparisonData, which states what this
51 * constant is
52 */
53 #define MAX_COMPARISON_DATA 2048
54
55 static LONG WINAPI rpc_filter(EXCEPTION_POINTERS *eptr)
56 {
57 return I_RpcExceptionFilter(eptr->ExceptionRecord->ExceptionCode);
58 }
59
60 /* define the structure of the running object table elements */
61 struct rot_entry
62 {
63 struct list entry;
64 InterfaceData* object; /* marshaled running object*/
65 MonikerComparisonData* moniker_data; /* moniker comparison data that identifies this object */
66 DWORD cookie; /* cookie identifying this object */
67 FILETIME last_modified;
68 IrotContextHandle ctxt_handle;
69 };
70
71 /* define the RunningObjectTableImpl structure */
72 typedef struct RunningObjectTableImpl
73 {
74 const IRunningObjectTableVtbl *lpVtbl;
75 LONG ref;
76
77 struct list rot; /* list of ROT entries */
78 CRITICAL_SECTION lock;
79 } RunningObjectTableImpl;
80
81 static RunningObjectTableImpl* runningObjectTableInstance = NULL;
82 static IrotHandle irot_handle;
83
84 /* define the EnumMonikerImpl structure */
85 typedef struct EnumMonikerImpl
86 {
87 const IEnumMonikerVtbl *lpVtbl;
88 LONG ref;
89
90 InterfaceList *moniker_list;
91 ULONG pos;
92 } EnumMonikerImpl;
93
94
95 /* IEnumMoniker Local functions*/
96 static HRESULT EnumMonikerImpl_CreateEnumROTMoniker(InterfaceList *moniker_list,
97 ULONG pos, IEnumMoniker **ppenumMoniker);
98
99 static IrotHandle get_irot_handle(void)
100 {
101 if (!irot_handle)
102 {
103 RPC_STATUS status;
104 RPC_WSTR binding;
105 IrotHandle new_handle;
106 unsigned short ncacn_np[] = IROT_PROTSEQ;
107 unsigned short endpoint[] = IROT_ENDPOINT;
108 status = RpcStringBindingComposeW(NULL, ncacn_np, NULL, endpoint, NULL, &binding);
109 if (status == RPC_S_OK)
110 {
111 status = RpcBindingFromStringBindingW(binding, &new_handle);
112 RpcStringFreeW(&binding);
113 }
114 if (status != RPC_S_OK)
115 return NULL;
116 if (InterlockedCompareExchangePointer(&irot_handle, new_handle, NULL))
117 /* another thread beat us to it */
118 RpcBindingFree(&new_handle);
119 }
120 return irot_handle;
121 }
122
123 static BOOL start_rpcss(void)
124 {
125 PROCESS_INFORMATION pi;
126 STARTUPINFOW si;
127 WCHAR cmd[MAX_PATH];
128 static const WCHAR rpcss[] = {'\\','r','p','c','s','s','.','e','x','e',0};
129 BOOL rslt;
130 void *redir;
131
132 TRACE("\n");
133
134 ZeroMemory(&si, sizeof(STARTUPINFOA));
135 si.cb = sizeof(STARTUPINFOA);
136 GetSystemDirectoryW( cmd, MAX_PATH - sizeof(rpcss)/sizeof(WCHAR) );
137 strcatW( cmd, rpcss );
138
139 Wow64DisableWow64FsRedirection( &redir );
140 rslt = CreateProcessW( cmd, cmd, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi );
141 Wow64RevertWow64FsRedirection( redir );
142
143 if (rslt)
144 {
145 CloseHandle(pi.hProcess);
146 CloseHandle(pi.hThread);
147 Sleep(100);
148 }
149
150 return rslt;
151 }
152
153 static HRESULT create_stream_on_mip_ro(const InterfaceData *mip, IStream **stream)
154 {
155 HGLOBAL hglobal = GlobalAlloc(0, mip->ulCntData);
156 void *pv = GlobalLock(hglobal);
157 memcpy(pv, mip->abData, mip->ulCntData);
158 GlobalUnlock(hglobal);
159 return CreateStreamOnHGlobal(hglobal, TRUE, stream);
160 }
161
162 static inline void rot_entry_delete(struct rot_entry *rot_entry)
163 {
164 if (rot_entry->cookie)
165 {
166 InterfaceData *object = NULL;
167 InterfaceData *moniker = NULL;
168 __TRY
169 {
170 IrotRevoke(get_irot_handle(), rot_entry->cookie,
171 &rot_entry->ctxt_handle, &object, &moniker);
172 }
173 __EXCEPT(rpc_filter)
174 {
175 }
176 __ENDTRY
177 MIDL_user_free(object);
178 if (moniker)
179 {
180 IStream *stream;
181 HRESULT hr;
182 hr = create_stream_on_mip_ro(moniker, &stream);
183 if (hr == S_OK)
184 {
185 CoReleaseMarshalData(stream);
186 IUnknown_Release(stream);
187 }
188 }
189 MIDL_user_free(moniker);
190 }
191 if (rot_entry->object)
192 {
193 IStream *stream;
194 HRESULT hr;
195 hr = create_stream_on_mip_ro(rot_entry->object, &stream);
196 if (hr == S_OK)
197 {
198 CoReleaseMarshalData(stream);
199 IUnknown_Release(stream);
200 }
201 }
202 HeapFree(GetProcessHeap(), 0, rot_entry->object);
203 HeapFree(GetProcessHeap(), 0, rot_entry->moniker_data);
204 HeapFree(GetProcessHeap(), 0, rot_entry);
205 }
206
207 /* moniker_data must be freed with HeapFree when no longer in use */
208 static HRESULT get_moniker_comparison_data(IMoniker *pMoniker, MonikerComparisonData **moniker_data)
209 {
210 HRESULT hr;
211 IROTData *pROTData = NULL;
212 hr = IMoniker_QueryInterface(pMoniker, &IID_IROTData, (void *)&pROTData);
213 if (SUCCEEDED(hr))
214 {
215 ULONG size = MAX_COMPARISON_DATA;
216 *moniker_data = HeapAlloc(GetProcessHeap(), 0, FIELD_OFFSET(MonikerComparisonData, abData[size]));
217 if (!*moniker_data)
218 {
219 IROTData_Release(pROTData);
220 return E_OUTOFMEMORY;
221 }
222 hr = IROTData_GetComparisonData(pROTData, (*moniker_data)->abData, size, &size);
223 IROTData_Release(pROTData);
224 if (hr != S_OK)
225 {
226 ERR("Failed to copy comparison data into buffer, hr = 0x%08x\n", hr);
227 HeapFree(GetProcessHeap(), 0, *moniker_data);
228 return hr;
229 }
230 (*moniker_data)->ulCntData = size;
231 }
232 else
233 {
234 IBindCtx *pbc;
235 LPOLESTR pszDisplayName;
236 CLSID clsid;
237 int len;
238
239 TRACE("generating comparison data from display name\n");
240
241 hr = CreateBindCtx(0, &pbc);
242 if (FAILED(hr))
243 return hr;
244 hr = IMoniker_GetDisplayName(pMoniker, pbc, NULL, &pszDisplayName);
245 IBindCtx_Release(pbc);
246 if (FAILED(hr))
247 return hr;
248 hr = IMoniker_GetClassID(pMoniker, &clsid);
249 if (FAILED(hr))
250 {
251 CoTaskMemFree(pszDisplayName);
252 return hr;
253 }
254
255 len = strlenW(pszDisplayName);
256 *moniker_data = HeapAlloc(GetProcessHeap(), 0,
257 FIELD_OFFSET(MonikerComparisonData, abData[sizeof(CLSID) + (len+1)*sizeof(WCHAR)]));
258 if (!*moniker_data)
259 {
260 CoTaskMemFree(pszDisplayName);
261 return E_OUTOFMEMORY;
262 }
263 (*moniker_data)->ulCntData = sizeof(CLSID) + (len+1)*sizeof(WCHAR);
264
265 memcpy(&(*moniker_data)->abData[0], &clsid, sizeof(clsid));
266 memcpy(&(*moniker_data)->abData[sizeof(clsid)], pszDisplayName, (len+1)*sizeof(WCHAR));
267 CoTaskMemFree(pszDisplayName);
268 }
269 return S_OK;
270 }
271
272 static HRESULT reduce_moniker(IMoniker *pmk, IBindCtx *pbc, IMoniker **pmkReduced)
273 {
274 IBindCtx *pbcNew = NULL;
275 HRESULT hr;
276 if (!pbc)
277 {
278 hr = CreateBindCtx(0, &pbcNew);
279 if (FAILED(hr))
280 return hr;
281 pbc = pbcNew;
282 }
283 hr = IMoniker_Reduce(pmk, pbc, MKRREDUCE_ALL, NULL, pmkReduced);
284 if (FAILED(hr))
285 ERR("reducing moniker failed with error 0x%08x\n", hr);
286 if (pbcNew) IBindCtx_Release(pbcNew);
287 return hr;
288 }
289
290 /***********************************************************************
291 * RunningObjectTable_QueryInterface
292 */
293 static HRESULT WINAPI
294 RunningObjectTableImpl_QueryInterface(IRunningObjectTable* iface,
295 REFIID riid,void** ppvObject)
296 {
297 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
298
299 TRACE("(%p,%p,%p)\n",This,riid,ppvObject);
300
301 /* validate arguments */
302
303 if (ppvObject==0)
304 return E_INVALIDARG;
305
306 *ppvObject = 0;
307
308 if (IsEqualIID(&IID_IUnknown, riid) ||
309 IsEqualIID(&IID_IRunningObjectTable, riid))
310 *ppvObject = This;
311
312 if ((*ppvObject)==0)
313 return E_NOINTERFACE;
314
315 IRunningObjectTable_AddRef(iface);
316
317 return S_OK;
318 }
319
320 /***********************************************************************
321 * RunningObjectTable_AddRef
322 */
323 static ULONG WINAPI
324 RunningObjectTableImpl_AddRef(IRunningObjectTable* iface)
325 {
326 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
327
328 TRACE("(%p)\n",This);
329
330 return InterlockedIncrement(&This->ref);
331 }
332
333 /***********************************************************************
334 * RunningObjectTable_Destroy
335 */
336 static HRESULT
337 RunningObjectTableImpl_Destroy(void)
338 {
339 struct list *cursor, *cursor2;
340 IrotHandle old_handle;
341
342 TRACE("()\n");
343
344 if (runningObjectTableInstance==NULL)
345 return E_INVALIDARG;
346
347 /* free the ROT table memory */
348 LIST_FOR_EACH_SAFE(cursor, cursor2, &runningObjectTableInstance->rot)
349 {
350 struct rot_entry *rot_entry = LIST_ENTRY(cursor, struct rot_entry, entry);
351 list_remove(&rot_entry->entry);
352 rot_entry_delete(rot_entry);
353 }
354
355 DEBUG_CLEAR_CRITSEC_NAME(&runningObjectTableInstance->lock);
356 DeleteCriticalSection(&runningObjectTableInstance->lock);
357
358 /* free the ROT structure memory */
359 HeapFree(GetProcessHeap(),0,runningObjectTableInstance);
360 runningObjectTableInstance = NULL;
361
362 old_handle = irot_handle;
363 irot_handle = NULL;
364 if (old_handle)
365 RpcBindingFree(&old_handle);
366
367 return S_OK;
368 }
369
370 /***********************************************************************
371 * RunningObjectTable_Release
372 */
373 static ULONG WINAPI
374 RunningObjectTableImpl_Release(IRunningObjectTable* iface)
375 {
376 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
377 ULONG ref;
378
379 TRACE("(%p)\n",This);
380
381 ref = InterlockedDecrement(&This->ref);
382
383 /* uninitialize ROT structure if there's no more references to it */
384 if (ref == 0)
385 {
386 struct list *cursor, *cursor2;
387 LIST_FOR_EACH_SAFE(cursor, cursor2, &This->rot)
388 {
389 struct rot_entry *rot_entry = LIST_ENTRY(cursor, struct rot_entry, entry);
390 list_remove(&rot_entry->entry);
391 rot_entry_delete(rot_entry);
392 }
393 /* RunningObjectTable data structure will be not destroyed here ! the destruction will be done only
394 * when RunningObjectTableImpl_UnInitialize function is called
395 */
396 }
397
398 return ref;
399 }
400
401 /***********************************************************************
402 * RunningObjectTable_Register
403 *
404 * PARAMS
405 * grfFlags [in] Registration options
406 * punkObject [in] the object being registered
407 * pmkObjectName [in] the moniker of the object being registered
408 * pdwRegister [out] the value identifying the registration
409 */
410 static HRESULT WINAPI
411 RunningObjectTableImpl_Register(IRunningObjectTable* iface, DWORD grfFlags,
412 IUnknown *punkObject, IMoniker *pmkObjectName, DWORD *pdwRegister)
413 {
414 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
415 struct rot_entry *rot_entry;
416 HRESULT hr = S_OK;
417 IStream *pStream = NULL;
418 DWORD mshlflags;
419 IBindCtx *pbc;
420 InterfaceData *moniker = NULL;
421
422 TRACE("(%p,%d,%p,%p,%p)\n",This,grfFlags,punkObject,pmkObjectName,pdwRegister);
423
424 if (grfFlags & ~(ROTFLAGS_REGISTRATIONKEEPSALIVE|ROTFLAGS_ALLOWANYCLIENT))
425 {
426 ERR("Invalid grfFlags: 0x%08x\n", grfFlags & ~(ROTFLAGS_REGISTRATIONKEEPSALIVE|ROTFLAGS_ALLOWANYCLIENT));
427 return E_INVALIDARG;
428 }
429
430 if (punkObject==NULL || pmkObjectName==NULL || pdwRegister==NULL)
431 return E_INVALIDARG;
432
433 rot_entry = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*rot_entry));
434 if (!rot_entry)
435 return E_OUTOFMEMORY;
436
437 /* marshal object */
438 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
439 if (hr != S_OK)
440 {
441 rot_entry_delete(rot_entry);
442 return hr;
443 }
444 mshlflags = (grfFlags & ROTFLAGS_REGISTRATIONKEEPSALIVE) ? MSHLFLAGS_TABLESTRONG : MSHLFLAGS_TABLEWEAK;
445 hr = CoMarshalInterface(pStream, &IID_IUnknown, punkObject, MSHCTX_LOCAL | MSHCTX_NOSHAREDMEM, NULL, mshlflags);
446 /* FIXME: a cleaner way would be to create an IStream class that writes
447 * directly to an MInterfacePointer */
448 if (hr == S_OK)
449 {
450 HGLOBAL hglobal;
451 hr = GetHGlobalFromStream(pStream, &hglobal);
452 if (hr == S_OK)
453 {
454 SIZE_T size = GlobalSize(hglobal);
455 const void *pv = GlobalLock(hglobal);
456 rot_entry->object = HeapAlloc(GetProcessHeap(), 0, FIELD_OFFSET(MInterfacePointer, abData[size]));
457 rot_entry->object->ulCntData = size;
458 memcpy(rot_entry->object->abData, pv, size);
459 GlobalUnlock(hglobal);
460 }
461 }
462 IStream_Release(pStream);
463 if (hr != S_OK)
464 {
465 rot_entry_delete(rot_entry);
466 return hr;
467 }
468
469 hr = CreateBindCtx(0, &pbc);
470 if (FAILED(hr))
471 {
472 rot_entry_delete(rot_entry);
473 return hr;
474 }
475
476 hr = reduce_moniker(pmkObjectName, pbc, &pmkObjectName);
477 if (FAILED(hr))
478 {
479 rot_entry_delete(rot_entry);
480 IBindCtx_Release(pbc);
481 return hr;
482 }
483
484 hr = IMoniker_GetTimeOfLastChange(pmkObjectName, pbc, NULL,
485 &rot_entry->last_modified);
486 IBindCtx_Release(pbc);
487 if (FAILED(hr))
488 {
489 CoFileTimeNow(&rot_entry->last_modified);
490 hr = S_OK;
491 }
492
493 hr = get_moniker_comparison_data(pmkObjectName,
494 &rot_entry->moniker_data);
495 if (hr != S_OK)
496 {
497 rot_entry_delete(rot_entry);
498 IMoniker_Release(pmkObjectName);
499 return hr;
500 }
501
502 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
503 if (hr != S_OK)
504 {
505 rot_entry_delete(rot_entry);
506 IMoniker_Release(pmkObjectName);
507 return hr;
508 }
509 /* marshal moniker */
510 hr = CoMarshalInterface(pStream, &IID_IMoniker, (IUnknown *)pmkObjectName,
511 MSHCTX_LOCAL | MSHCTX_NOSHAREDMEM, NULL, MSHLFLAGS_TABLESTRONG);
512 /* FIXME: a cleaner way would be to create an IStream class that writes
513 * directly to an MInterfacePointer */
514 if (hr == S_OK)
515 {
516 HGLOBAL hglobal;
517 hr = GetHGlobalFromStream(pStream, &hglobal);
518 if (hr == S_OK)
519 {
520 SIZE_T size = GlobalSize(hglobal);
521 const void *pv = GlobalLock(hglobal);
522 moniker = HeapAlloc(GetProcessHeap(), 0, FIELD_OFFSET(InterfaceData, abData[size]));
523 moniker->ulCntData = size;
524 memcpy(moniker->abData, pv, size);
525 GlobalUnlock(hglobal);
526 }
527 }
528 IStream_Release(pStream);
529 IMoniker_Release(pmkObjectName);
530 if (hr != S_OK)
531 {
532 HeapFree(GetProcessHeap(), 0, moniker);
533 rot_entry_delete(rot_entry);
534 return hr;
535 }
536
537
538 while (TRUE)
539 {
540 __TRY
541 {
542 hr = IrotRegister(get_irot_handle(), rot_entry->moniker_data,
543 rot_entry->object, moniker,
544 &rot_entry->last_modified, grfFlags,
545 &rot_entry->cookie, &rot_entry->ctxt_handle);
546 }
547 __EXCEPT(rpc_filter)
548 {
549 hr = HRESULT_FROM_WIN32(GetExceptionCode());
550 }
551 __ENDTRY
552 if (hr == HRESULT_FROM_WIN32(RPC_S_SERVER_UNAVAILABLE))
553 {
554 if (start_rpcss())
555 continue;
556 }
557 break;
558 }
559 HeapFree(GetProcessHeap(), 0, moniker);
560 if (FAILED(hr))
561 {
562 rot_entry_delete(rot_entry);
563 return hr;
564 }
565
566 /* gives a registration identifier to the registered object*/
567 *pdwRegister = rot_entry->cookie;
568
569 EnterCriticalSection(&This->lock);
570 list_add_tail(&This->rot, &rot_entry->entry);
571 LeaveCriticalSection(&This->lock);
572
573 return hr;
574 }
575
576 /***********************************************************************
577 * RunningObjectTable_Revoke
578 *
579 * PARAMS
580 * dwRegister [in] Value identifying registration to be revoked
581 */
582 static HRESULT WINAPI
583 RunningObjectTableImpl_Revoke( IRunningObjectTable* iface, DWORD dwRegister)
584 {
585 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
586 struct rot_entry *rot_entry;
587
588 TRACE("(%p,%d)\n",This,dwRegister);
589
590 EnterCriticalSection(&This->lock);
591 LIST_FOR_EACH_ENTRY(rot_entry, &This->rot, struct rot_entry, entry)
592 {
593 if (rot_entry->cookie == dwRegister)
594 {
595 list_remove(&rot_entry->entry);
596 LeaveCriticalSection(&This->lock);
597
598 rot_entry_delete(rot_entry);
599 return S_OK;
600 }
601 }
602 LeaveCriticalSection(&This->lock);
603
604 return E_INVALIDARG;
605 }
606
607 /***********************************************************************
608 * RunningObjectTable_IsRunning
609 *
610 * PARAMS
611 * pmkObjectName [in] moniker of the object whose status is desired
612 */
613 static HRESULT WINAPI
614 RunningObjectTableImpl_IsRunning( IRunningObjectTable* iface, IMoniker *pmkObjectName)
615 {
616 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
617 MonikerComparisonData *moniker_data;
618 HRESULT hr;
619 const struct rot_entry *rot_entry;
620
621 TRACE("(%p,%p)\n",This,pmkObjectName);
622
623 hr = reduce_moniker(pmkObjectName, NULL, &pmkObjectName);
624 if (FAILED(hr))
625 return hr;
626 hr = get_moniker_comparison_data(pmkObjectName, &moniker_data);
627 IMoniker_Release(pmkObjectName);
628 if (hr != S_OK)
629 return hr;
630
631 hr = S_FALSE;
632 EnterCriticalSection(&This->lock);
633 LIST_FOR_EACH_ENTRY(rot_entry, &This->rot, const struct rot_entry, entry)
634 {
635 if ((rot_entry->moniker_data->ulCntData == moniker_data->ulCntData) &&
636 !memcmp(moniker_data->abData, rot_entry->moniker_data->abData, moniker_data->ulCntData))
637 {
638 hr = S_OK;
639 break;
640 }
641 }
642 LeaveCriticalSection(&This->lock);
643
644 if (hr == S_FALSE)
645 {
646 while (TRUE)
647 {
648 __TRY
649 {
650 hr = IrotIsRunning(get_irot_handle(), moniker_data);
651 }
652 __EXCEPT(rpc_filter)
653 {
654 hr = HRESULT_FROM_WIN32(GetExceptionCode());
655 }
656 __ENDTRY
657 if (hr == HRESULT_FROM_WIN32(RPC_S_SERVER_UNAVAILABLE))
658 {
659 if (start_rpcss())
660 continue;
661 }
662 break;
663 }
664 }
665
666 HeapFree(GetProcessHeap(), 0, moniker_data);
667
668 return hr;
669 }
670
671 /***********************************************************************
672 * RunningObjectTable_GetObject
673 *
674 * PARAMS
675 * pmkObjectName [in] Pointer to the moniker on the object
676 * ppunkObject [out] variable that receives the IUnknown interface pointer
677 */
678 static HRESULT WINAPI
679 RunningObjectTableImpl_GetObject( IRunningObjectTable* iface,
680 IMoniker *pmkObjectName, IUnknown **ppunkObject)
681 {
682 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
683 MonikerComparisonData *moniker_data;
684 InterfaceData *object = NULL;
685 IrotCookie cookie;
686 HRESULT hr;
687 struct rot_entry *rot_entry;
688
689 TRACE("(%p,%p,%p)\n",This,pmkObjectName,ppunkObject);
690
691 if (ppunkObject == NULL)
692 return E_POINTER;
693
694 *ppunkObject = NULL;
695
696 hr = reduce_moniker(pmkObjectName, NULL, &pmkObjectName);
697 if (FAILED(hr))
698 return hr;
699 hr = get_moniker_comparison_data(pmkObjectName, &moniker_data);
700 IMoniker_Release(pmkObjectName);
701 if (hr != S_OK)
702 return hr;
703
704 EnterCriticalSection(&This->lock);
705 LIST_FOR_EACH_ENTRY(rot_entry, &This->rot, struct rot_entry, entry)
706 {
707 if ((rot_entry->moniker_data->ulCntData == moniker_data->ulCntData) &&
708 !memcmp(moniker_data->abData, rot_entry->moniker_data->abData, moniker_data->ulCntData))
709 {
710 IStream *pStream;
711 hr = create_stream_on_mip_ro(rot_entry->object, &pStream);
712 if (hr == S_OK)
713 {
714 hr = CoUnmarshalInterface(pStream, &IID_IUnknown, (void **)ppunkObject);
715 IStream_Release(pStream);
716 }
717
718 LeaveCriticalSection(&This->lock);
719 HeapFree(GetProcessHeap(), 0, moniker_data);
720
721 return hr;
722 }
723 }
724 LeaveCriticalSection(&This->lock);
725
726 TRACE("moniker unavailable locally, calling SCM\n");
727
728 while (TRUE)
729 {
730 __TRY
731 {
732 hr = IrotGetObject(get_irot_handle(), moniker_data, &object, &cookie);
733 }
734 __EXCEPT(rpc_filter)
735 {
736 hr = HRESULT_FROM_WIN32(GetExceptionCode());
737 }
738 __ENDTRY
739 if (hr == HRESULT_FROM_WIN32(RPC_S_SERVER_UNAVAILABLE))
740 {
741 if (start_rpcss())
742 continue;
743 }
744 break;
745 }
746
747 if (SUCCEEDED(hr))
748 {
749 IStream *pStream;
750 hr = create_stream_on_mip_ro(object, &pStream);
751 if (hr == S_OK)
752 {
753 hr = CoUnmarshalInterface(pStream, &IID_IUnknown, (void **)ppunkObject);
754 IStream_Release(pStream);
755 }
756 }
757 else
758 WARN("Moniker unavailable, IrotGetObject returned 0x%08x\n", hr);
759
760 HeapFree(GetProcessHeap(), 0, moniker_data);
761
762 return hr;
763 }
764
765 /***********************************************************************
766 * RunningObjectTable_NoteChangeTime
767 *
768 * PARAMS
769 * dwRegister [in] Value identifying registration being updated
770 * pfiletime [in] Pointer to structure containing object's last change time
771 */
772 static HRESULT WINAPI
773 RunningObjectTableImpl_NoteChangeTime(IRunningObjectTable* iface,
774 DWORD dwRegister, FILETIME *pfiletime)
775 {
776 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
777 struct rot_entry *rot_entry;
778 HRESULT hr = E_INVALIDARG;
779
780 TRACE("(%p,%d,%p)\n",This,dwRegister,pfiletime);
781
782 EnterCriticalSection(&This->lock);
783 LIST_FOR_EACH_ENTRY(rot_entry, &This->rot, struct rot_entry, entry)
784 {
785 if (rot_entry->cookie == dwRegister)
786 {
787 rot_entry->last_modified = *pfiletime;
788 LeaveCriticalSection(&This->lock);
789
790 while (TRUE)
791 {
792 __TRY
793 {
794 hr = IrotNoteChangeTime(get_irot_handle(), dwRegister, pfiletime);
795 }
796 __EXCEPT(rpc_filter)
797 {
798 hr = HRESULT_FROM_WIN32(GetExceptionCode());
799 }
800 __ENDTRY
801 if (hr == HRESULT_FROM_WIN32(RPC_S_SERVER_UNAVAILABLE))
802 {
803 if (start_rpcss())
804 continue;
805 }
806 break;
807 }
808
809 goto done;
810 }
811 }
812 LeaveCriticalSection(&This->lock);
813
814 done:
815 TRACE("-- 0x08%x\n", hr);
816 return hr;
817 }
818
819 /***********************************************************************
820 * RunningObjectTable_GetTimeOfLastChange
821 *
822 * PARAMS
823 * pmkObjectName [in] moniker of the object whose status is desired
824 * pfiletime [out] structure that receives object's last change time
825 */
826 static HRESULT WINAPI
827 RunningObjectTableImpl_GetTimeOfLastChange(IRunningObjectTable* iface,
828 IMoniker *pmkObjectName, FILETIME *pfiletime)
829 {
830 HRESULT hr = MK_E_UNAVAILABLE;
831 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
832 MonikerComparisonData *moniker_data;
833 const struct rot_entry *rot_entry;
834
835 TRACE("(%p,%p,%p)\n",This,pmkObjectName,pfiletime);
836
837 if (pmkObjectName==NULL || pfiletime==NULL)
838 return E_INVALIDARG;
839
840 hr = reduce_moniker(pmkObjectName, NULL, &pmkObjectName);
841 if (FAILED(hr))
842 return hr;
843 hr = get_moniker_comparison_data(pmkObjectName, &moniker_data);
844 IMoniker_Release(pmkObjectName);
845 if (hr != S_OK)
846 return hr;
847
848 hr = MK_E_UNAVAILABLE;
849
850 EnterCriticalSection(&This->lock);
851 LIST_FOR_EACH_ENTRY(rot_entry, &This->rot, const struct rot_entry, entry)
852 {
853 if ((rot_entry->moniker_data->ulCntData == moniker_data->ulCntData) &&
854 !memcmp(moniker_data->abData, rot_entry->moniker_data->abData, moniker_data->ulCntData))
855 {
856 *pfiletime = rot_entry->last_modified;
857 hr = S_OK;
858 break;
859 }
860 }
861 LeaveCriticalSection(&This->lock);
862
863 if (hr != S_OK)
864 {
865 while (TRUE)
866 {
867 __TRY
868 {
869 hr = IrotGetTimeOfLastChange(get_irot_handle(), moniker_data, pfiletime);
870 }
871 __EXCEPT(rpc_filter)
872 {
873 hr = HRESULT_FROM_WIN32(GetExceptionCode());
874 }
875 __ENDTRY
876 if (hr == HRESULT_FROM_WIN32(RPC_S_SERVER_UNAVAILABLE))
877 {
878 if (start_rpcss())
879 continue;
880 }
881 break;
882 }
883 }
884
885 HeapFree(GetProcessHeap(), 0, moniker_data);
886
887 TRACE("-- 0x%08x\n", hr);
888 return hr;
889 }
890
891 /***********************************************************************
892 * RunningObjectTable_EnumRunning
893 *
894 * PARAMS
895 * ppenumMoniker [out] receives the IEnumMoniker interface pointer
896 */
897 static HRESULT WINAPI
898 RunningObjectTableImpl_EnumRunning(IRunningObjectTable* iface,
899 IEnumMoniker **ppenumMoniker)
900 {
901 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
902 InterfaceList *interface_list = NULL;
903 HRESULT hr;
904
905 TRACE("(%p, %p)\n", This, ppenumMoniker);
906
907 *ppenumMoniker = NULL;
908
909 while (TRUE)
910 {
911 __TRY
912 {
913 hr = IrotEnumRunning(get_irot_handle(), &interface_list);
914 }
915 __EXCEPT(rpc_filter)
916 {
917 hr = HRESULT_FROM_WIN32(GetExceptionCode());
918 }
919 __ENDTRY
920 if (hr == HRESULT_FROM_WIN32(RPC_S_SERVER_UNAVAILABLE))
921 {
922 if (start_rpcss())
923 continue;
924 }
925 break;
926 }
927
928 if (SUCCEEDED(hr))
929 hr = EnumMonikerImpl_CreateEnumROTMoniker(interface_list,
930 0, ppenumMoniker);
931
932 return hr;
933 }
934
935 /* Virtual function table for the IRunningObjectTable class. */
936 static const IRunningObjectTableVtbl VT_RunningObjectTableImpl =
937 {
938 RunningObjectTableImpl_QueryInterface,
939 RunningObjectTableImpl_AddRef,
940 RunningObjectTableImpl_Release,
941 RunningObjectTableImpl_Register,
942 RunningObjectTableImpl_Revoke,
943 RunningObjectTableImpl_IsRunning,
944 RunningObjectTableImpl_GetObject,
945 RunningObjectTableImpl_NoteChangeTime,
946 RunningObjectTableImpl_GetTimeOfLastChange,
947 RunningObjectTableImpl_EnumRunning
948 };
949
950 /***********************************************************************
951 * RunningObjectTable_Initialize
952 */
953 HRESULT WINAPI RunningObjectTableImpl_Initialize(void)
954 {
955 TRACE("\n");
956
957 /* create the unique instance of the RunningObjectTableImpl structure */
958 runningObjectTableInstance = HeapAlloc(GetProcessHeap(), 0, sizeof(RunningObjectTableImpl));
959
960 if (!runningObjectTableInstance)
961 return E_OUTOFMEMORY;
962
963 /* initialize the virtual table function */
964 runningObjectTableInstance->lpVtbl = &VT_RunningObjectTableImpl;
965
966 /* the initial reference is set to "1" so that it isn't destroyed after its
967 * first use until the process is destroyed, as the running object table is
968 * a process-wide cache of a global table */
969 runningObjectTableInstance->ref = 1;
970
971 list_init(&runningObjectTableInstance->rot);
972 InitializeCriticalSection(&runningObjectTableInstance->lock);
973 DEBUG_SET_CRITSEC_NAME(&runningObjectTableInstance->lock, "RunningObjectTableImpl.lock");
974
975 return S_OK;
976 }
977
978 /***********************************************************************
979 * RunningObjectTable_UnInitialize
980 */
981 HRESULT WINAPI RunningObjectTableImpl_UnInitialize(void)
982 {
983 TRACE("\n");
984
985 if (runningObjectTableInstance==NULL)
986 return E_POINTER;
987
988 RunningObjectTableImpl_Release((IRunningObjectTable*)runningObjectTableInstance);
989
990 RunningObjectTableImpl_Destroy();
991
992 return S_OK;
993 }
994
995 /***********************************************************************
996 * GetRunningObjectTable (OLE32.@)
997 *
998 * Retrieves the global running object table.
999 *
1000 * PARAMS
1001 * reserved [I] Reserved. Set to 0.
1002 * pprot [O] Address that receives the pointer to the running object table.
1003 *
1004 * RETURNS
1005 * Success: S_OK.
1006 * Failure: Any HRESULT code.
1007 */
1008 HRESULT WINAPI
1009 GetRunningObjectTable(DWORD reserved, LPRUNNINGOBJECTTABLE *pprot)
1010 {
1011 IID riid=IID_IRunningObjectTable;
1012 HRESULT res;
1013
1014 TRACE("()\n");
1015
1016 if (reserved!=0)
1017 return E_UNEXPECTED;
1018
1019 if(runningObjectTableInstance==NULL)
1020 return CO_E_NOTINITIALIZED;
1021
1022 res = IRunningObjectTable_QueryInterface((IRunningObjectTable*)runningObjectTableInstance,&riid,(void**)pprot);
1023
1024 return res;
1025 }
1026
1027 static HRESULT get_moniker_for_progid_display_name(LPBC pbc,
1028 LPCOLESTR szDisplayName,
1029 LPDWORD pchEaten,
1030 LPMONIKER *ppmk)
1031 {
1032 CLSID clsid;
1033 HRESULT hr;
1034 LPWSTR progid;
1035 LPCWSTR start = szDisplayName;
1036 LPCWSTR end;
1037 int len;
1038 IMoniker *class_moniker;
1039
1040 if (*start == '@')
1041 start++;
1042
1043 /* find end delimiter */
1044 for (end = start; *end; end++)
1045 if (*end == ':')
1046 break;
1047
1048 len = end - start;
1049
1050 /* must start with '@' or have a ':' somewhere and mustn't be one character
1051 * long (since that looks like an absolute path) */
1052 if (((start == szDisplayName) && (*end == '\0')) || (len <= 1))
1053 return MK_E_SYNTAX;
1054
1055 progid = HeapAlloc(GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR));
1056 if (progid)
1057 {
1058 memcpy(progid, start, len * sizeof(WCHAR));
1059 progid[len] = '\0';
1060 }
1061 hr = CLSIDFromProgID(progid, &clsid);
1062 HeapFree(GetProcessHeap(), 0, progid);
1063 if (FAILED(hr))
1064 return MK_E_SYNTAX;
1065
1066 hr = CreateClassMoniker(&clsid, &class_moniker);
1067 if (SUCCEEDED(hr))
1068 {
1069 IParseDisplayName *pdn;
1070 hr = IMoniker_BindToObject(class_moniker, pbc, NULL,
1071 &IID_IParseDisplayName, (void **)&pdn);
1072 /* fallback to using IClassFactory to get IParseDisplayName -
1073 * adsldp.dll depends on this */
1074 if (FAILED(hr))
1075 {
1076 IClassFactory *pcf;
1077 hr = IMoniker_BindToObject(class_moniker, pbc, NULL,
1078 &IID_IClassFactory, (void **)&pcf);
1079 if (SUCCEEDED(hr))
1080 {
1081 hr = IClassFactory_CreateInstance(pcf, NULL,
1082 &IID_IParseDisplayName,
1083 (void **)&pdn);
1084 IClassFactory_Release(pcf);
1085 }
1086 }
1087 IMoniker_Release(class_moniker);
1088 if (SUCCEEDED(hr))
1089 {
1090 hr = IParseDisplayName_ParseDisplayName(pdn, pbc,
1091 (LPOLESTR)szDisplayName,
1092 pchEaten, ppmk);
1093 IParseDisplayName_Release(pdn);
1094 }
1095 }
1096 return hr;
1097 }
1098
1099 /******************************************************************************
1100 * MkParseDisplayName [OLE32.@]
1101 */
1102 HRESULT WINAPI MkParseDisplayName(LPBC pbc, LPCOLESTR szDisplayName,
1103 LPDWORD pchEaten, LPMONIKER *ppmk)
1104 {
1105 HRESULT hr = MK_E_SYNTAX;
1106 static const WCHAR wszClsidColon[] = {'c','l','s','i','d',':'};
1107 IMoniker *moniker;
1108 DWORD chEaten;
1109
1110 TRACE("(%p, %s, %p, %p)\n", pbc, debugstr_w(szDisplayName), pchEaten, ppmk);
1111
1112 if (!(IsValidInterface((LPUNKNOWN) pbc)))
1113 return E_INVALIDARG;
1114
1115 *pchEaten = 0;
1116 *ppmk = NULL;
1117
1118 if (!strncmpiW(szDisplayName, wszClsidColon, sizeof(wszClsidColon)/sizeof(wszClsidColon[0])))
1119 {
1120 hr = ClassMoniker_CreateFromDisplayName(pbc, szDisplayName, &chEaten, &moniker);
1121 if (FAILED(hr) && (hr != MK_E_SYNTAX))
1122 return hr;
1123 }
1124 else
1125 {
1126 hr = get_moniker_for_progid_display_name(pbc, szDisplayName, &chEaten, &moniker);
1127 if (FAILED(hr) && (hr != MK_E_SYNTAX))
1128 return hr;
1129 }
1130
1131 if (FAILED(hr))
1132 {
1133 hr = FileMoniker_CreateFromDisplayName(pbc, szDisplayName, &chEaten, &moniker);
1134 if (FAILED(hr) && (hr != MK_E_SYNTAX))
1135 return hr;
1136 }
1137
1138 if (SUCCEEDED(hr))
1139 {
1140 while (TRUE)
1141 {
1142 IMoniker *next_moniker;
1143 *pchEaten += chEaten;
1144 szDisplayName += chEaten;
1145 if (!*szDisplayName)
1146 {
1147 *ppmk = moniker;
1148 return S_OK;
1149 }
1150 chEaten = 0;
1151 hr = IMoniker_ParseDisplayName(moniker, pbc, NULL,
1152 (LPOLESTR)szDisplayName, &chEaten,
1153 &next_moniker);
1154 IMoniker_Release(moniker);
1155 if (FAILED(hr))
1156 {
1157 *pchEaten = 0;
1158 break;
1159 }
1160 moniker = next_moniker;
1161 }
1162 }
1163
1164 return hr;
1165 }
1166
1167 /***********************************************************************
1168 * GetClassFile (OLE32.@)
1169 *
1170 * Retrieves the class ID associated with the given filename.
1171 *
1172 * PARAMS
1173 * filePathName [I] Filename to retrieve the class ID for.
1174 * pclsid [O] Address that receives the class ID for the file.
1175 *
1176 * RETURNS
1177 * Success: S_OK.
1178 * Failure: Any HRESULT code.
1179 */
1180 HRESULT WINAPI GetClassFile(LPCOLESTR filePathName,CLSID *pclsid)
1181 {
1182 IStorage *pstg=0;
1183 HRESULT res;
1184 int nbElm, length, i;
1185 LONG sizeProgId;
1186 LPOLESTR *pathDec=0,absFile=0,progId=0;
1187 LPWSTR extension;
1188 static const WCHAR bkslashW[] = {'\\',0};
1189 static const WCHAR dotW[] = {'.',0};
1190
1191 TRACE("%s, %p\n", debugstr_w(filePathName), pclsid);
1192
1193 /* if the file contain a storage object the return the CLSID written by IStorage_SetClass method*/
1194 if((StgIsStorageFile(filePathName))==S_OK){
1195
1196 res=StgOpenStorage(filePathName,NULL,STGM_READ | STGM_SHARE_DENY_WRITE,NULL,0,&pstg);
1197
1198 if (SUCCEEDED(res))
1199 res=ReadClassStg(pstg,pclsid);
1200
1201 IStorage_Release(pstg);
1202
1203 return res;
1204 }
1205 /* If the file is not a storage object then attempt to match various bits in the file against a
1206 pattern in the registry. This case is not frequently used, so I present only the pseudocode for
1207 this case.
1208
1209 for(i=0;i<nFileTypes;i++)
1210
1211 for(i=0;j<nPatternsForType;j++){
1212
1213 PATTERN pat;
1214 HANDLE hFile;
1215
1216 pat=ReadPatternFromRegistry(i,j);
1217 hFile=CreateFileW(filePathName,,,,,,hFile);
1218 SetFilePosition(hFile,pat.offset);
1219 ReadFile(hFile,buf,pat.size,&r,NULL);
1220 if (memcmp(buf&pat.mask,pat.pattern.pat.size)==0){
1221
1222 *pclsid=ReadCLSIDFromRegistry(i);
1223 return S_OK;
1224 }
1225 }
1226 */
1227
1228 /* if the above strategies fail then search for the extension key in the registry */
1229
1230 /* get the last element (absolute file) in the path name */
1231 nbElm=FileMonikerImpl_DecomposePath(filePathName,&pathDec);
1232 absFile=pathDec[nbElm-1];
1233
1234 /* failed if the path represents a directory and not an absolute file name*/
1235 if (!lstrcmpW(absFile, bkslashW))
1236 return MK_E_INVALIDEXTENSION;
1237
1238 /* get the extension of the file */
1239 extension = NULL;
1240 length=lstrlenW(absFile);
1241 for(i = length-1; (i >= 0) && *(extension = &absFile[i]) != '.'; i--)
1242 /* nothing */;
1243
1244 if (!extension || !lstrcmpW(extension, dotW))
1245 return MK_E_INVALIDEXTENSION;
1246
1247 res=RegQueryValueW(HKEY_CLASSES_ROOT, extension, NULL, &sizeProgId);
1248
1249 /* get the progId associated to the extension */
1250 progId = CoTaskMemAlloc(sizeProgId);
1251 res = RegQueryValueW(HKEY_CLASSES_ROOT, extension, progId, &sizeProgId);
1252
1253 if (res==ERROR_SUCCESS)
1254 /* return the clsid associated to the progId */
1255 res= CLSIDFromProgID(progId,pclsid);
1256
1257 for(i=0; pathDec[i]!=NULL;i++)
1258 CoTaskMemFree(pathDec[i]);
1259 CoTaskMemFree(pathDec);
1260
1261 CoTaskMemFree(progId);
1262
1263 if (res==ERROR_SUCCESS)
1264 return res;
1265
1266 return MK_E_INVALIDEXTENSION;
1267 }
1268
1269 /***********************************************************************
1270 * EnumMoniker_QueryInterface
1271 */
1272 static HRESULT WINAPI EnumMonikerImpl_QueryInterface(IEnumMoniker* iface,REFIID riid,void** ppvObject)
1273 {
1274 EnumMonikerImpl *This = (EnumMonikerImpl *)iface;
1275
1276 TRACE("(%p,%p,%p)\n",This,riid,ppvObject);
1277
1278 /* validate arguments */
1279 if (ppvObject == NULL)
1280 return E_INVALIDARG;
1281
1282 *ppvObject = NULL;
1283
1284 if (IsEqualIID(&IID_IUnknown, riid))
1285 *ppvObject = This;
1286 else
1287 if (IsEqualIID(&IID_IEnumMoniker, riid))
1288 *ppvObject = This;
1289
1290 if ((*ppvObject)==NULL)
1291 return E_NOINTERFACE;
1292
1293 IEnumMoniker_AddRef(iface);
1294
1295 return S_OK;
1296 }
1297
1298 /***********************************************************************
1299 * EnumMoniker_AddRef
1300 */
1301 static ULONG WINAPI EnumMonikerImpl_AddRef(IEnumMoniker* iface)
1302 {
1303 EnumMonikerImpl *This = (EnumMonikerImpl *)iface;
1304
1305 TRACE("(%p)\n",This);
1306
1307 return InterlockedIncrement(&This->ref);
1308 }
1309
1310 /***********************************************************************
1311 * EnumMoniker_release
1312 */
1313 static ULONG WINAPI EnumMonikerImpl_Release(IEnumMoniker* iface)
1314 {
1315 EnumMonikerImpl *This = (EnumMonikerImpl *)iface;
1316 ULONG ref;
1317
1318 TRACE("(%p)\n",This);
1319
1320 ref = InterlockedDecrement(&This->ref);
1321
1322 /* uninitialize rot structure if there's no more reference to it*/
1323 if (ref == 0)
1324 {
1325 ULONG i;
1326
1327 TRACE("(%p) Deleting\n",This);
1328
1329 for (i = 0; i < This->moniker_list->size; i++)
1330 HeapFree(GetProcessHeap(), 0, This->moniker_list->interfaces[i]);
1331 HeapFree(GetProcessHeap(), 0, This->moniker_list);
1332 HeapFree(GetProcessHeap(), 0, This);
1333 }
1334
1335 return ref;
1336 }
1337 /***********************************************************************
1338 * EnumMoniker_Next
1339 */
1340 static HRESULT WINAPI EnumMonikerImpl_Next(IEnumMoniker* iface, ULONG celt, IMoniker** rgelt, ULONG * pceltFetched)
1341 {
1342 ULONG i;
1343 EnumMonikerImpl *This = (EnumMonikerImpl *)iface;
1344 HRESULT hr = S_OK;
1345
1346 TRACE("(%p) TabCurrentPos %d Tablastindx %d\n", This, This->pos, This->moniker_list->size);
1347
1348 /* retrieve the requested number of moniker from the current position */
1349 for(i = 0; (This->pos < This->moniker_list->size) && (i < celt); i++)
1350 {
1351 IStream *stream;
1352 hr = create_stream_on_mip_ro(This->moniker_list->interfaces[This->pos++], &stream);
1353 if (hr != S_OK) break;
1354 hr = CoUnmarshalInterface(stream, &IID_IMoniker, (void **)&rgelt[i]);
1355 IStream_Release(stream);
1356 if (hr != S_OK) break;
1357 }
1358
1359 if (pceltFetched != NULL)
1360 *pceltFetched= i;
1361
1362 if (hr != S_OK)
1363 return hr;
1364
1365 if (i == celt)
1366 return S_OK;
1367 else
1368 return S_FALSE;
1369
1370 }
1371
1372 /***********************************************************************
1373 * EnumMoniker_Skip
1374 */
1375 static HRESULT WINAPI EnumMonikerImpl_Skip(IEnumMoniker* iface, ULONG celt)
1376 {
1377 EnumMonikerImpl *This = (EnumMonikerImpl *)iface;
1378
1379 TRACE("(%p)\n",This);
1380
1381 if (This->pos + celt >= This->moniker_list->size)
1382 return S_FALSE;
1383
1384 This->pos += celt;
1385
1386 return S_OK;
1387 }
1388
1389 /***********************************************************************
1390 * EnumMoniker_Reset
1391 */
1392 static HRESULT WINAPI EnumMonikerImpl_Reset(IEnumMoniker* iface)
1393 {
1394 EnumMonikerImpl *This = (EnumMonikerImpl *)iface;
1395
1396 This->pos = 0; /* set back to start of list */
1397
1398 TRACE("(%p)\n",This);
1399
1400 return S_OK;
1401 }
1402
1403 /***********************************************************************
1404 * EnumMoniker_Clone
1405 */
1406 static HRESULT WINAPI EnumMonikerImpl_Clone(IEnumMoniker* iface, IEnumMoniker ** ppenum)
1407 {
1408 EnumMonikerImpl *This = (EnumMonikerImpl *)iface;
1409 InterfaceList *moniker_list;
1410 ULONG i;
1411
1412 TRACE("(%p)\n",This);
1413
1414 *ppenum = NULL;
1415
1416 moniker_list = HeapAlloc(GetProcessHeap(), 0, FIELD_OFFSET(InterfaceList, interfaces[This->moniker_list->size]));
1417 if (!moniker_list)
1418 return E_OUTOFMEMORY;
1419
1420 moniker_list->size = This->moniker_list->size;
1421 for (i = 0; i < This->moniker_list->size; i++)
1422 {
1423 SIZE_T size = FIELD_OFFSET(InterfaceData, abData[This->moniker_list->interfaces[i]->ulCntData]);
1424 moniker_list->interfaces[i] = HeapAlloc(GetProcessHeap(), 0, size);
1425 if (!moniker_list->interfaces[i])
1426 {
1427 ULONG end = i;
1428 for (i = 0; i < end; i++)
1429 HeapFree(GetProcessHeap(), 0, moniker_list->interfaces[i]);
1430 HeapFree(GetProcessHeap(), 0, moniker_list);
1431 return E_OUTOFMEMORY;
1432 }
1433 memcpy(moniker_list->interfaces[i], This->moniker_list->interfaces[i], size);
1434 }
1435
1436 /* copy the enum structure */
1437 return EnumMonikerImpl_CreateEnumROTMoniker(moniker_list, This->pos, ppenum);
1438 }
1439
1440 /* Virtual function table for the IEnumMoniker class. */
1441 static const IEnumMonikerVtbl VT_EnumMonikerImpl =
1442 {
1443 EnumMonikerImpl_QueryInterface,
1444 EnumMonikerImpl_AddRef,
1445 EnumMonikerImpl_Release,
1446 EnumMonikerImpl_Next,
1447 EnumMonikerImpl_Skip,
1448 EnumMonikerImpl_Reset,
1449 EnumMonikerImpl_Clone
1450 };
1451
1452 /***********************************************************************
1453 * EnumMonikerImpl_CreateEnumROTMoniker
1454 * Used by EnumRunning to create the structure and EnumClone
1455 * to copy the structure
1456 */
1457 static HRESULT EnumMonikerImpl_CreateEnumROTMoniker(InterfaceList *moniker_list,
1458 ULONG current_pos,
1459 IEnumMoniker **ppenumMoniker)
1460 {
1461 EnumMonikerImpl* This = NULL;
1462
1463 if (!ppenumMoniker)
1464 return E_INVALIDARG;
1465
1466 This = HeapAlloc(GetProcessHeap(), 0, sizeof(EnumMonikerImpl));
1467 if (!This) return E_OUTOFMEMORY;
1468
1469 TRACE("(%p)\n", This);
1470
1471 /* initialize the virtual table function */
1472 This->lpVtbl = &VT_EnumMonikerImpl;
1473
1474 /* the initial reference is set to "1" */
1475 This->ref = 1; /* set the ref count to one */
1476 This->pos = current_pos; /* Set the list start posn */
1477 This->moniker_list = moniker_list;
1478
1479 *ppenumMoniker = (IEnumMoniker*)This;
1480
1481 return S_OK;
1482 }
1483
1484
1485 /* Shared implementation of moniker marshaler based on saving and loading of
1486 * monikers */
1487
1488 typedef struct MonikerMarshal
1489 {
1490 const IUnknownVtbl *lpVtbl;
1491 const IMarshalVtbl *lpVtblMarshal;
1492
1493 LONG ref;
1494 IMoniker *moniker;
1495 } MonikerMarshal;
1496
1497 static inline MonikerMarshal *impl_from_IMarshal( IMarshal *iface )
1498 {
1499 return (MonikerMarshal *)((char*)iface - FIELD_OFFSET(MonikerMarshal, lpVtblMarshal));
1500 }
1501
1502 static HRESULT WINAPI MonikerMarshalInner_QueryInterface(IUnknown *iface, REFIID riid, LPVOID *ppv)
1503 {
1504 MonikerMarshal *This = (MonikerMarshal *)iface;
1505 TRACE("(%s, %p)\n", debugstr_guid(riid), ppv);
1506 *ppv = NULL;
1507 if (IsEqualIID(&IID_IUnknown, riid) || IsEqualIID(&IID_IMarshal, riid))
1508 {
1509 *ppv = &This->lpVtblMarshal;
1510 IUnknown_AddRef((IUnknown *)&This->lpVtblMarshal);
1511 return S_OK;
1512 }
1513 FIXME("No interface for %s\n", debugstr_guid(riid));
1514 return E_NOINTERFACE;
1515 }
1516
1517 static ULONG WINAPI MonikerMarshalInner_AddRef(IUnknown *iface)
1518 {
1519 MonikerMarshal *This = (MonikerMarshal *)iface;
1520 return InterlockedIncrement(&This->ref);
1521 }
1522
1523 static ULONG WINAPI MonikerMarshalInner_Release(IUnknown *iface)
1524 {
1525 MonikerMarshal *This = (MonikerMarshal *)iface;
1526 ULONG ref = InterlockedDecrement(&This->ref);
1527
1528 if (!ref) HeapFree(GetProcessHeap(), 0, This);
1529 return ref;
1530 }
1531
1532 static const IUnknownVtbl VT_MonikerMarshalInner =
1533 {
1534 MonikerMarshalInner_QueryInterface,
1535 MonikerMarshalInner_AddRef,
1536 MonikerMarshalInner_Release
1537 };
1538
1539 static HRESULT WINAPI MonikerMarshal_QueryInterface(IMarshal *iface, REFIID riid, LPVOID *ppv)
1540 {
1541 MonikerMarshal *This = impl_from_IMarshal(iface);
1542 return IMoniker_QueryInterface(This->moniker, riid, ppv);
1543 }
1544
1545 static ULONG WINAPI MonikerMarshal_AddRef(IMarshal *iface)
1546 {
1547 MonikerMarshal *This = impl_from_IMarshal(iface);
1548 return IMoniker_AddRef(This->moniker);
1549 }
1550
1551 static ULONG WINAPI MonikerMarshal_Release(IMarshal *iface)
1552 {
1553 MonikerMarshal *This = impl_from_IMarshal(iface);
1554 return IMoniker_Release(This->moniker);
1555 }
1556
1557 static HRESULT WINAPI MonikerMarshal_GetUnmarshalClass(
1558 LPMARSHAL iface, REFIID riid, void* pv, DWORD dwDestContext,
1559 void* pvDestContext, DWORD mshlflags, CLSID* pCid)
1560 {
1561 MonikerMarshal *This = impl_from_IMarshal(iface);
1562
1563 TRACE("(%s, %p, %x, %p, %x, %p)\n", debugstr_guid(riid), pv,
1564 dwDestContext, pvDestContext, mshlflags, pCid);
1565
1566 return IMoniker_GetClassID(This->moniker, pCid);
1567 }
1568
1569 static HRESULT WINAPI MonikerMarshal_GetMarshalSizeMax(
1570 LPMARSHAL iface, REFIID riid, void* pv, DWORD dwDestContext,
1571 void* pvDestContext, DWORD mshlflags, DWORD* pSize)
1572 {
1573 MonikerMarshal *This = impl_from_IMarshal(iface);
1574 HRESULT hr;
1575 ULARGE_INTEGER size;
1576
1577 TRACE("(%s, %p, %x, %p, %x, %p)\n", debugstr_guid(riid), pv,
1578 dwDestContext, pvDestContext, mshlflags, pSize);
1579
1580 hr = IMoniker_GetSizeMax(This->moniker, &size);
1581 if (hr == S_OK)
1582 *pSize = (DWORD)size.QuadPart;
1583 return hr;
1584 }
1585
1586 static HRESULT WINAPI MonikerMarshal_MarshalInterface(LPMARSHAL iface, IStream *pStm,
1587 REFIID riid, void* pv, DWORD dwDestContext,
1588 void* pvDestContext, DWORD mshlflags)
1589 {
1590 MonikerMarshal *This = impl_from_IMarshal(iface);
1591
1592 TRACE("(%p, %s, %p, %x, %p, %x)\n", pStm, debugstr_guid(riid), pv,
1593 dwDestContext, pvDestContext, mshlflags);
1594
1595 return IMoniker_Save(This->moniker, pStm, FALSE);
1596 }
1597
1598 static HRESULT WINAPI MonikerMarshal_UnmarshalInterface(LPMARSHAL iface, IStream *pStm, REFIID riid, void **ppv)
1599 {
1600 MonikerMarshal *This = impl_from_IMarshal(iface);
1601 HRESULT hr;
1602
1603 TRACE("(%p, %s, %p)\n", pStm, debugstr_guid(riid), ppv);
1604
1605 hr = IMoniker_Load(This->moniker, pStm);
1606 if (hr == S_OK)
1607 hr = IMoniker_QueryInterface(This->moniker, riid, ppv);
1608 return hr;
1609 }
1610
1611 static HRESULT WINAPI MonikerMarshal_ReleaseMarshalData(LPMARSHAL iface, IStream *pStm)
1612 {
1613 TRACE("()\n");
1614 /* can't release a state-based marshal as nothing on server side to
1615 * release */
1616 return S_OK;
1617 }
1618
1619 static HRESULT WINAPI MonikerMarshal_DisconnectObject(LPMARSHAL iface, DWORD dwReserved)
1620 {
1621 TRACE("()\n");
1622 /* can't disconnect a state-based marshal as nothing on server side to
1623 * disconnect from */
1624 return S_OK;
1625 }
1626
1627 static const IMarshalVtbl VT_MonikerMarshal =
1628 {
1629 MonikerMarshal_QueryInterface,
1630 MonikerMarshal_AddRef,
1631 MonikerMarshal_Release,
1632 MonikerMarshal_GetUnmarshalClass,
1633 MonikerMarshal_GetMarshalSizeMax,
1634 MonikerMarshal_MarshalInterface,
1635 MonikerMarshal_UnmarshalInterface,
1636 MonikerMarshal_ReleaseMarshalData,
1637 MonikerMarshal_DisconnectObject
1638 };
1639
1640 HRESULT MonikerMarshal_Create(IMoniker *inner, IUnknown **outer)
1641 {
1642 MonikerMarshal *This = HeapAlloc(GetProcessHeap(), 0, sizeof(*This));
1643 if (!This) return E_OUTOFMEMORY;
1644
1645 This->lpVtbl = &VT_MonikerMarshalInner;
1646 This->lpVtblMarshal = &VT_MonikerMarshal;
1647 This->ref = 1;
1648 This->moniker = inner;
1649
1650 *outer = (IUnknown *)&This->lpVtbl;
1651 return S_OK;
1652 }
1653
1654 void * __RPC_USER MIDL_user_allocate(SIZE_T size)
1655 {
1656 return HeapAlloc(GetProcessHeap(), 0, size);
1657 }
1658
1659 void __RPC_USER MIDL_user_free(void *p)
1660 {
1661 HeapFree(GetProcessHeap(), 0, p);
1662 }