4 * Copyright 2001 Ove Kåven, TransGaming Technologies
5 * Copyright 2002 Marcus Meissner
6 * Copyright 2005 Mike Hearn, Rob Shearman for CodeWeavers
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
32 #define NONAMELESSUNION
33 #define NONAMELESSSTRUCT
46 #include "wine/unicode.h"
47 #include "wine/exception.h"
49 #include "compobj_private.h"
51 #include "wine/debug.h"
53 WINE_DEFAULT_DEBUG_CHANNEL(ole
);
55 static void __RPC_STUB
dispatch_rpc(RPC_MESSAGE
*msg
);
57 /* we only use one function to dispatch calls for all methods - we use the
58 * RPC_IF_OLE flag to tell the RPC runtime that this is the case */
59 static RPC_DISPATCH_FUNCTION rpc_dispatch_table
[1] = { dispatch_rpc
}; /* (RO) */
60 static RPC_DISPATCH_TABLE rpc_dispatch
= { 1, rpc_dispatch_table
}; /* (RO) */
62 static struct list registered_interfaces
= LIST_INIT(registered_interfaces
); /* (CS csRegIf) */
63 static CRITICAL_SECTION csRegIf
;
64 static CRITICAL_SECTION_DEBUG csRegIf_debug
=
67 { &csRegIf_debug
.ProcessLocksList
, &csRegIf_debug
.ProcessLocksList
},
68 0, 0, { (DWORD_PTR
)(__FILE__
": dcom registered server interfaces") }
70 static CRITICAL_SECTION csRegIf
= { &csRegIf_debug
, -1, 0, 0, 0, 0 };
72 static WCHAR wszPipeTransport
[] = {'n','c','a','c','n','_','n','p',0};
78 DWORD refs
; /* ref count */
79 RPC_SERVER_INTERFACE If
; /* interface registered with the RPC runtime */
82 /* get the pipe endpoint specified of the specified apartment */
83 static inline void get_rpc_endpoint(LPWSTR endpoint
, const OXID
*oxid
)
85 /* FIXME: should get endpoint from rpcss */
86 static const WCHAR wszEndpointFormat
[] = {'\\','p','i','p','e','\\','O','L','E','_','%','0','8','l','x','%','0','8','l','x',0};
87 wsprintfW(endpoint
, wszEndpointFormat
, (DWORD
)(*oxid
>> 32),(DWORD
)*oxid
);
92 const IRpcChannelBufferVtbl
*lpVtbl
;
98 RpcChannelBuffer super
; /* superclass */
100 RPC_BINDING_HANDLE bind
; /* handle to the remote server */
101 } ClientRpcChannelBuffer
;
103 struct dispatch_params
105 RPCOLEMESSAGE
*msg
; /* message */
106 IRpcStubBuffer
*stub
; /* stub buffer, if applicable */
107 IRpcChannelBuffer
*chan
; /* server channel buffer, if applicable */
108 HANDLE handle
; /* handle that will become signaled when call finishes */
109 RPC_STATUS status
; /* status (out) */
110 HRESULT hr
; /* hresult (out) */
113 static WINE_EXCEPTION_FILTER(ole_filter
)
115 if (GetExceptionCode() == EXCEPTION_ACCESS_VIOLATION
||
116 GetExceptionCode() == EXCEPTION_PRIV_INSTRUCTION
)
117 return EXCEPTION_CONTINUE_SEARCH
;
118 return EXCEPTION_EXECUTE_HANDLER
;
121 static HRESULT WINAPI
RpcChannelBuffer_QueryInterface(LPRPCCHANNELBUFFER iface
, REFIID riid
, LPVOID
*ppv
)
124 if (IsEqualIID(riid
,&IID_IRpcChannelBuffer
) || IsEqualIID(riid
,&IID_IUnknown
))
126 *ppv
= (LPVOID
)iface
;
127 IUnknown_AddRef(iface
);
130 return E_NOINTERFACE
;
133 static ULONG WINAPI
RpcChannelBuffer_AddRef(LPRPCCHANNELBUFFER iface
)
135 RpcChannelBuffer
*This
= (RpcChannelBuffer
*)iface
;
136 return InterlockedIncrement(&This
->refs
);
139 static ULONG WINAPI
ServerRpcChannelBuffer_Release(LPRPCCHANNELBUFFER iface
)
141 RpcChannelBuffer
*This
= (RpcChannelBuffer
*)iface
;
144 ref
= InterlockedDecrement(&This
->refs
);
148 HeapFree(GetProcessHeap(), 0, This
);
152 static ULONG WINAPI
ClientRpcChannelBuffer_Release(LPRPCCHANNELBUFFER iface
)
154 ClientRpcChannelBuffer
*This
= (ClientRpcChannelBuffer
*)iface
;
157 ref
= InterlockedDecrement(&This
->super
.refs
);
161 RpcBindingFree(&This
->bind
);
162 HeapFree(GetProcessHeap(), 0, This
);
166 static HRESULT WINAPI
ServerRpcChannelBuffer_GetBuffer(LPRPCCHANNELBUFFER iface
, RPCOLEMESSAGE
* olemsg
, REFIID riid
)
168 RpcChannelBuffer
*This
= (RpcChannelBuffer
*)iface
;
169 RPC_MESSAGE
*msg
= (RPC_MESSAGE
*)olemsg
;
172 TRACE("(%p)->(%p,%s)\n", This
, olemsg
, debugstr_guid(riid
));
174 status
= I_RpcGetBuffer(msg
);
176 TRACE("-- %ld\n", status
);
178 return HRESULT_FROM_WIN32(status
);
181 static HRESULT WINAPI
ClientRpcChannelBuffer_GetBuffer(LPRPCCHANNELBUFFER iface
, RPCOLEMESSAGE
* olemsg
, REFIID riid
)
183 ClientRpcChannelBuffer
*This
= (ClientRpcChannelBuffer
*)iface
;
184 RPC_MESSAGE
*msg
= (RPC_MESSAGE
*)olemsg
;
185 RPC_CLIENT_INTERFACE
*cif
;
188 TRACE("(%p)->(%p,%s)\n", This
, olemsg
, debugstr_guid(riid
));
190 cif
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(RPC_CLIENT_INTERFACE
));
192 return E_OUTOFMEMORY
;
194 cif
->Length
= sizeof(RPC_CLIENT_INTERFACE
);
195 /* RPC interface ID = COM interface ID */
196 cif
->InterfaceId
.SyntaxGUID
= *riid
;
197 /* COM objects always have a version of 0.0 */
198 cif
->InterfaceId
.SyntaxVersion
.MajorVersion
= 0;
199 cif
->InterfaceId
.SyntaxVersion
.MinorVersion
= 0;
200 msg
->RpcInterfaceInformation
= cif
;
201 msg
->Handle
= This
->bind
;
203 status
= I_RpcGetBuffer(msg
);
205 TRACE("-- %ld\n", status
);
207 return HRESULT_FROM_WIN32(status
);
210 /* this thread runs an outgoing RPC */
211 static DWORD WINAPI
rpc_sendreceive_thread(LPVOID param
)
213 struct dispatch_params
*data
= (struct dispatch_params
*) param
;
215 /* FIXME: trap and rethrow RPC exceptions in app thread */
216 data
->status
= I_RpcSendReceive((RPC_MESSAGE
*)data
->msg
);
218 TRACE("completed with status 0x%lx\n", data
->status
);
223 static HRESULT WINAPI
RpcChannelBuffer_SendReceive(LPRPCCHANNELBUFFER iface
, RPCOLEMESSAGE
*olemsg
, ULONG
*pstatus
)
226 RPC_MESSAGE
*msg
= (RPC_MESSAGE
*)olemsg
;
229 struct dispatch_params
*params
;
231 IRpcStubBuffer
*stub
;
235 TRACE("(%p) iMethod=%ld\n", olemsg
, olemsg
->iMethod
);
237 params
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*params
));
238 if (!params
) return E_OUTOFMEMORY
;
240 params
->msg
= olemsg
;
241 params
->status
= RPC_S_OK
;
244 /* Note: this is an optimization in the Microsoft OLE runtime that we need
245 * to copy, as shown by the test_no_couninitialize_client test. without
246 * short-circuiting the RPC runtime in the case below, the test will
247 * deadlock on the loader lock due to the RPC runtime needing to create
248 * a thread to process the RPC when this function is called indirectly
251 RpcBindingInqObject(msg
->Handle
, &ipid
);
252 stub
= ipid_to_apt_and_stubbuffer(&ipid
, &apt
);
253 if (apt
&& (apt
->model
& COINIT_APARTMENTTHREADED
))
256 params
->chan
= NULL
; /* FIXME: pass server channel */
257 params
->handle
= CreateEventW(NULL
, FALSE
, FALSE
, NULL
);
259 TRACE("Calling apartment thread 0x%08lx...\n", apt
->tid
);
261 PostMessageW(apt
->win
, DM_EXECUTERPC
, 0, (LPARAM
)params
);
265 if (stub
) IRpcStubBuffer_Release(stub
);
267 /* we use a separate thread here because we need to be able to
268 * pump the message loop in the application thread: if we do not,
269 * any windows created by this thread will hang and RPCs that try
270 * and re-enter this STA from an incoming server thread will
271 * deadlock. InstallShield is an example of that.
273 params
->handle
= CreateThread(NULL
, 0, rpc_sendreceive_thread
, params
, 0, &tid
);
276 ERR("Could not create RpcSendReceive thread, error %lx\n", GetLastError());
280 if (apt
) apartment_release(apt
);
283 hr
= CoWaitForMultipleHandles(0, INFINITE
, 1, ¶ms
->handle
, &index
);
284 CloseHandle(params
->handle
);
286 if (hr
== S_OK
) hr
= params
->hr
;
288 status
= params
->status
;
289 HeapFree(GetProcessHeap(), 0, params
);
294 if (pstatus
) *pstatus
= status
;
296 TRACE("RPC call status: 0x%lx\n", status
);
297 if (status
== RPC_S_OK
)
299 else if (status
== RPC_S_CALL_FAILED
)
300 hr
= *(HRESULT
*)olemsg
->Buffer
;
302 hr
= HRESULT_FROM_WIN32(status
);
304 TRACE("-- 0x%08lx\n", hr
);
309 static HRESULT WINAPI
ServerRpcChannelBuffer_FreeBuffer(LPRPCCHANNELBUFFER iface
, RPCOLEMESSAGE
* olemsg
)
311 RPC_MESSAGE
*msg
= (RPC_MESSAGE
*)olemsg
;
314 TRACE("(%p)\n", msg
);
316 status
= I_RpcFreeBuffer(msg
);
318 TRACE("-- %ld\n", status
);
320 return HRESULT_FROM_WIN32(status
);
323 static HRESULT WINAPI
ClientRpcChannelBuffer_FreeBuffer(LPRPCCHANNELBUFFER iface
, RPCOLEMESSAGE
* olemsg
)
325 RPC_MESSAGE
*msg
= (RPC_MESSAGE
*)olemsg
;
328 TRACE("(%p)\n", msg
);
330 status
= I_RpcFreeBuffer(msg
);
332 HeapFree(GetProcessHeap(), 0, msg
->RpcInterfaceInformation
);
333 msg
->RpcInterfaceInformation
= NULL
;
335 TRACE("-- %ld\n", status
);
337 return HRESULT_FROM_WIN32(status
);
340 static HRESULT WINAPI
RpcChannelBuffer_GetDestCtx(LPRPCCHANNELBUFFER iface
, DWORD
* pdwDestContext
, void** ppvDestContext
)
342 FIXME("(%p,%p), stub!\n", pdwDestContext
, ppvDestContext
);
346 static HRESULT WINAPI
RpcChannelBuffer_IsConnected(LPRPCCHANNELBUFFER iface
)
349 /* native does nothing too */
353 static const IRpcChannelBufferVtbl ClientRpcChannelBufferVtbl
=
355 RpcChannelBuffer_QueryInterface
,
356 RpcChannelBuffer_AddRef
,
357 ClientRpcChannelBuffer_Release
,
358 ClientRpcChannelBuffer_GetBuffer
,
359 RpcChannelBuffer_SendReceive
,
360 ClientRpcChannelBuffer_FreeBuffer
,
361 RpcChannelBuffer_GetDestCtx
,
362 RpcChannelBuffer_IsConnected
365 static const IRpcChannelBufferVtbl ServerRpcChannelBufferVtbl
=
367 RpcChannelBuffer_QueryInterface
,
368 RpcChannelBuffer_AddRef
,
369 ServerRpcChannelBuffer_Release
,
370 ServerRpcChannelBuffer_GetBuffer
,
371 RpcChannelBuffer_SendReceive
,
372 ServerRpcChannelBuffer_FreeBuffer
,
373 RpcChannelBuffer_GetDestCtx
,
374 RpcChannelBuffer_IsConnected
377 /* returns a channel buffer for proxies */
378 HRESULT
RPC_CreateClientChannel(const OXID
*oxid
, const IPID
*ipid
, IRpcChannelBuffer
**chan
)
380 ClientRpcChannelBuffer
*This
;
382 RPC_BINDING_HANDLE bind
;
384 LPWSTR string_binding
;
386 /* connect to the apartment listener thread */
387 get_rpc_endpoint(endpoint
, oxid
);
389 TRACE("proxy pipe: connecting to endpoint: %s\n", debugstr_w(endpoint
));
391 status
= RpcStringBindingComposeW(
399 if (status
== RPC_S_OK
)
401 status
= RpcBindingFromStringBindingW(string_binding
, &bind
);
403 if (status
== RPC_S_OK
)
405 IPID ipid2
= *ipid
; /* why can't RpcBindingSetObject take a const? */
406 status
= RpcBindingSetObject(bind
, &ipid2
);
407 if (status
!= RPC_S_OK
)
408 RpcBindingFree(&bind
);
411 RpcStringFreeW(&string_binding
);
414 if (status
!= RPC_S_OK
)
416 ERR("Couldn't get binding for endpoint %s, status = %ld\n", debugstr_w(endpoint
), status
);
417 return HRESULT_FROM_WIN32(status
);
420 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
423 RpcBindingFree(&bind
);
424 return E_OUTOFMEMORY
;
427 This
->super
.lpVtbl
= &ClientRpcChannelBufferVtbl
;
428 This
->super
.refs
= 1;
431 *chan
= (IRpcChannelBuffer
*)This
;
436 HRESULT
RPC_CreateServerChannel(IRpcChannelBuffer
**chan
)
438 RpcChannelBuffer
*This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
440 return E_OUTOFMEMORY
;
442 This
->lpVtbl
= &ServerRpcChannelBufferVtbl
;
445 *chan
= (IRpcChannelBuffer
*)This
;
451 void RPC_ExecuteCall(struct dispatch_params
*params
)
455 params
->hr
= IRpcStubBuffer_Invoke(params
->stub
, params
->msg
, params
->chan
);
459 params
->hr
= GetExceptionCode();
462 IRpcStubBuffer_Release(params
->stub
);
463 if (params
->handle
) SetEvent(params
->handle
);
466 static void __RPC_STUB
dispatch_rpc(RPC_MESSAGE
*msg
)
468 struct dispatch_params
*params
;
469 IRpcStubBuffer
*stub
;
473 RpcBindingInqObject(msg
->Handle
, &ipid
);
475 TRACE("ipid = %s, iMethod = %d\n", debugstr_guid(&ipid
), msg
->ProcNum
);
477 params
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*params
));
478 if (!params
) return RpcRaiseException(E_OUTOFMEMORY
);
480 stub
= ipid_to_apt_and_stubbuffer(&ipid
, &apt
);
483 if (apt
) apartment_release(apt
);
484 ERR("no apartment found for ipid %s\n", debugstr_guid(&ipid
));
485 return RpcRaiseException(RPC_E_DISCONNECTED
);
488 params
->msg
= (RPCOLEMESSAGE
*)msg
;
490 params
->chan
= NULL
; /* FIXME: pass server channel */
491 params
->status
= RPC_S_OK
;
493 /* Note: this is the important difference between STAs and MTAs - we
494 * always execute RPCs to STAs in the thread that originally created the
495 * apartment (i.e. the one that pumps messages to the window) */
496 if (apt
->model
& COINIT_APARTMENTTHREADED
)
498 params
->handle
= CreateEventW(NULL
, FALSE
, FALSE
, NULL
);
500 TRACE("Calling apartment thread 0x%08lx...\n", apt
->tid
);
502 PostMessageW(apt
->win
, DM_EXECUTERPC
, 0, (LPARAM
)params
);
503 WaitForSingleObject(params
->handle
, INFINITE
);
504 CloseHandle(params
->handle
);
507 RPC_ExecuteCall(params
);
509 HeapFree(GetProcessHeap(), 0, params
);
511 apartment_release(apt
);
514 /* stub registration */
515 HRESULT
RPC_RegisterInterface(REFIID riid
)
517 struct registered_if
*rif
;
521 TRACE("(%s)\n", debugstr_guid(riid
));
523 EnterCriticalSection(&csRegIf
);
524 LIST_FOR_EACH_ENTRY(rif
, ®istered_interfaces
, struct registered_if
, entry
)
526 if (IsEqualGUID(&rif
->If
.InterfaceId
.SyntaxGUID
, riid
))
535 TRACE("Creating new interface\n");
537 rif
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*rif
));
543 rif
->If
.Length
= sizeof(RPC_SERVER_INTERFACE
);
544 /* RPC interface ID = COM interface ID */
545 rif
->If
.InterfaceId
.SyntaxGUID
= *riid
;
546 rif
->If
.DispatchTable
= &rpc_dispatch
;
547 /* all other fields are 0, including the version asCOM objects
548 * always have a version of 0.0 */
549 status
= RpcServerRegisterIfEx(
550 (RPC_IF_HANDLE
)&rif
->If
,
552 RPC_IF_OLE
| RPC_IF_AUTOLISTEN
,
553 RPC_C_LISTEN_MAX_CALLS_DEFAULT
,
555 if (status
== RPC_S_OK
)
556 list_add_tail(®istered_interfaces
, &rif
->entry
);
559 ERR("RpcServerRegisterIfEx failed with error %ld\n", status
);
560 HeapFree(GetProcessHeap(), 0, rif
);
561 hr
= HRESULT_FROM_WIN32(status
);
567 LeaveCriticalSection(&csRegIf
);
571 /* stub unregistration */
572 void RPC_UnregisterInterface(REFIID riid
)
574 struct registered_if
*rif
;
575 EnterCriticalSection(&csRegIf
);
576 LIST_FOR_EACH_ENTRY(rif
, ®istered_interfaces
, struct registered_if
, entry
)
578 if (IsEqualGUID(&rif
->If
.InterfaceId
.SyntaxGUID
, riid
))
582 #if 0 /* this is a stub in builtin and spams the console with FIXME's */
583 IID iid
= *riid
; /* RpcServerUnregisterIf doesn't take const IID */
584 RpcServerUnregisterIf((RPC_IF_HANDLE
)&rif
->If
, &iid
, 0);
585 list_remove(&rif
->entry
);
586 HeapFree(GetProcessHeap(), 0, rif
);
592 LeaveCriticalSection(&csRegIf
);
595 /* make the apartment reachable by other threads and processes and create the
596 * IRemUnknown object */
597 void RPC_StartRemoting(struct apartment
*apt
)
599 if (!InterlockedExchange(&apt
->remoting_started
, TRUE
))
604 get_rpc_endpoint(endpoint
, &apt
->oxid
);
606 status
= RpcServerUseProtseqEpW(
608 RPC_C_PROTSEQ_MAX_REQS_DEFAULT
,
611 if (status
!= RPC_S_OK
)
612 ERR("Couldn't register endpoint %s\n", debugstr_w(endpoint
));
614 /* FIXME: move remote unknown exporting into this function */
616 start_apartment_remote_unknown();
620 static HRESULT
create_server(REFCLSID rclsid
)
622 static const WCHAR wszLocalServer32
[] = { 'L','o','c','a','l','S','e','r','v','e','r','3','2',0 };
623 static const WCHAR embedding
[] = { ' ', '-','E','m','b','e','d','d','i','n','g',0 };
626 HRESULT hres
= E_UNEXPECTED
;
627 WCHAR exe
[MAX_PATH
+1];
628 DWORD exelen
= sizeof(exe
);
629 WCHAR command
[MAX_PATH
+sizeof(embedding
)/sizeof(WCHAR
)];
631 PROCESS_INFORMATION pinfo
;
633 hres
= HRESULT_FROM_WIN32(COM_OpenKeyForCLSID(rclsid
, KEY_READ
, &hkeyclsid
));
635 ERR("class %s not registered\n", debugstr_guid(rclsid
));
636 return REGDB_E_READREGDB
;
639 hres
= RegOpenKeyExW(hkeyclsid
, wszLocalServer32
, 0, KEY_READ
, &key
);
641 if (hres
!= ERROR_SUCCESS
) {
642 WARN("class %s not registered as LocalServer32\n", debugstr_guid(rclsid
));
643 return REGDB_E_READREGDB
; /* Probably */
646 memset(exe
,0,sizeof(exe
));
647 hres
= RegQueryValueExW(key
, NULL
, NULL
, NULL
, (LPBYTE
)exe
, &exelen
);
650 WARN("No default value for LocalServer32 key\n");
651 return REGDB_E_CLASSNOTREG
; /* FIXME: check retval */
654 memset(&sinfo
,0,sizeof(sinfo
));
655 sinfo
.cb
= sizeof(sinfo
);
657 /* EXE servers are started with the -Embedding switch. MSDN also claims /Embedding is used,
658 * 9x does -Embedding, perhaps an 9x/NT difference?
661 strcpyW(command
, exe
);
662 strcatW(command
, embedding
);
664 TRACE("activating local server %s for %s\n", debugstr_w(command
), debugstr_guid(rclsid
));
666 if (!CreateProcessW(exe
, command
, NULL
, NULL
, FALSE
, 0, NULL
, NULL
, &sinfo
, &pinfo
)) {
667 WARN("failed to run local server %s\n", debugstr_w(exe
));
668 return HRESULT_FROM_WIN32(GetLastError());
670 CloseHandle(pinfo
.hProcess
);
671 CloseHandle(pinfo
.hThread
);
677 * start_local_service() - start a service given its name and parameters
679 static DWORD
start_local_service(LPCWSTR name
, DWORD num
, LPWSTR
*params
)
681 SC_HANDLE handle
, hsvc
;
682 DWORD r
= ERROR_FUNCTION_FAILED
;
684 TRACE("Starting service %s %ld params\n", debugstr_w(name
), num
);
686 handle
= OpenSCManagerW(NULL
, NULL
, SC_MANAGER_ALL_ACCESS
);
689 hsvc
= OpenServiceW(handle
, name
, SC_MANAGER_ALL_ACCESS
);
692 if(StartServiceW(hsvc
, num
, (LPCWSTR
*)params
))
696 if (r
== ERROR_SERVICE_ALREADY_RUNNING
)
698 CloseServiceHandle(hsvc
);
700 CloseServiceHandle(handle
);
702 TRACE("StartService returned error %ld (%s)\n", r
, r
?"ok":"failed");
708 * create_local_service() - start a COM server in a service
710 * To start a Local Service, we read the AppID value under
711 * the class's CLSID key, then open the HKCR\\AppId key specified
712 * there and check for a LocalService value.
714 * Note: Local Services are not supported under Windows 9x
716 static HRESULT
create_local_service(REFCLSID rclsid
)
718 HRESULT hres
= REGDB_E_READREGDB
;
719 WCHAR buf
[CHARS_IN_GUID
], keyname
[50];
720 static const WCHAR szAppId
[] = { 'A','p','p','I','d',0 };
721 static const WCHAR szAppIdKey
[] = { 'A','p','p','I','d','\\',0 };
722 static const WCHAR szLocalService
[] = { 'L','o','c','a','l','S','e','r','v','i','c','e',0 };
723 static const WCHAR szServiceParams
[] = {'S','e','r','v','i','c','e','P','a','r','a','m','s',0};
728 TRACE("Attempting to start Local service for %s\n", debugstr_guid(rclsid
));
730 /* read the AppID value under the class's key */
731 r
= COM_OpenKeyForCLSID(rclsid
, KEY_READ
, &hkey
);
732 if (r
!=ERROR_SUCCESS
)
735 r
= RegQueryValueExW(hkey
, szAppId
, NULL
, &type
, (LPBYTE
)buf
, &sz
);
737 if (r
!=ERROR_SUCCESS
|| type
!=REG_SZ
)
740 /* read the LocalService and ServiceParameters values from the AppID key */
741 strcpyW(keyname
, szAppIdKey
);
742 strcatW(keyname
, buf
);
743 r
= RegOpenKeyExW(HKEY_CLASSES_ROOT
, keyname
, 0, KEY_READ
, &hkey
);
744 if (r
!=ERROR_SUCCESS
)
747 r
= RegQueryValueExW(hkey
, szLocalService
, NULL
, &type
, (LPBYTE
)buf
, &sz
);
748 if (r
==ERROR_SUCCESS
&& type
==REG_SZ
)
751 LPWSTR args
[1] = { NULL
};
754 * FIXME: I'm not really sure how to deal with the service parameters.
755 * I suspect that the string returned from RegQueryValueExW
756 * should be split into a number of arguments by spaces.
757 * It would make more sense if ServiceParams contained a
758 * REG_MULTI_SZ here, but it's a REG_SZ for the services
759 * that I'm interested in for the moment.
761 r
= RegQueryValueExW(hkey
, szServiceParams
, NULL
, &type
, NULL
, &sz
);
762 if (r
== ERROR_SUCCESS
&& type
== REG_SZ
&& sz
)
764 args
[0] = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sz
);
766 RegQueryValueExW(hkey
, szServiceParams
, NULL
, &type
, (LPBYTE
)args
[0], &sz
);
768 r
= start_local_service(buf
, num_args
, args
);
769 if (r
==ERROR_SUCCESS
)
771 HeapFree(GetProcessHeap(),0,args
[0]);
779 static void get_localserver_pipe_name(WCHAR
*pipefn
, REFCLSID rclsid
)
781 static const WCHAR wszPipeRef
[] = {'\\','\\','.','\\','p','i','p','e','\\',0};
782 strcpyW(pipefn
, wszPipeRef
);
783 StringFromGUID2(rclsid
, pipefn
+ sizeof(wszPipeRef
)/sizeof(wszPipeRef
[0]) - 1, CHARS_IN_GUID
);
786 /* FIXME: should call to rpcss instead */
787 HRESULT
RPC_GetLocalClassObject(REFCLSID rclsid
, REFIID iid
, LPVOID
*ppv
)
792 DWORD res
, bufferlen
;
793 char marshalbuffer
[200];
795 LARGE_INTEGER seekto
;
796 ULARGE_INTEGER newpos
;
799 static const int MAXTRIES
= 30; /* 30 seconds */
801 TRACE("rclsid=%s, iid=%s\n", debugstr_guid(rclsid
), debugstr_guid(iid
));
803 get_localserver_pipe_name(pipefn
, rclsid
);
805 while (tries
++ < MAXTRIES
) {
806 TRACE("waiting for %s\n", debugstr_w(pipefn
));
808 WaitNamedPipeW( pipefn
, NMPWAIT_WAIT_FOREVER
);
809 hPipe
= CreateFileW(pipefn
, GENERIC_READ
| GENERIC_WRITE
, 0, NULL
, OPEN_EXISTING
, 0, 0);
810 if (hPipe
== INVALID_HANDLE_VALUE
) {
812 if ( (hres
= create_server(rclsid
)) &&
813 (hres
= create_local_service(rclsid
)) )
817 WARN("Connecting to %s, no response yet, retrying: le is %lx\n", debugstr_w(pipefn
), GetLastError());
823 if (!ReadFile(hPipe
,marshalbuffer
,sizeof(marshalbuffer
),&bufferlen
,NULL
)) {
824 FIXME("Failed to read marshal id from classfactory of %s.\n",debugstr_guid(rclsid
));
828 TRACE("read marshal id from pipe\n");
833 if (tries
>= MAXTRIES
)
834 return E_NOINTERFACE
;
836 hres
= CreateStreamOnHGlobal(0,TRUE
,&pStm
);
837 if (hres
) return hres
;
838 hres
= IStream_Write(pStm
,marshalbuffer
,bufferlen
,&res
);
840 seekto
.u
.LowPart
= 0;seekto
.u
.HighPart
= 0;
841 hres
= IStream_Seek(pStm
,seekto
,SEEK_SET
,&newpos
);
843 TRACE("unmarshalling classfactory\n");
844 hres
= CoUnmarshalInterface(pStm
,&IID_IClassFactory
,ppv
);
846 IStream_Release(pStm
);
851 struct local_server_params
857 /* FIXME: should call to rpcss instead */
858 static DWORD WINAPI
local_server_thread(LPVOID param
)
860 struct local_server_params
* lsp
= (struct local_server_params
*)param
;
864 IStream
*pStm
= lsp
->stream
;
866 unsigned char *buffer
;
868 LARGE_INTEGER seekto
;
869 ULARGE_INTEGER newpos
;
872 TRACE("Starting threader for %s.\n",debugstr_guid(&lsp
->clsid
));
874 get_localserver_pipe_name(pipefn
, &lsp
->clsid
);
876 HeapFree(GetProcessHeap(), 0, lsp
);
878 hPipe
= CreateNamedPipeW( pipefn
, PIPE_ACCESS_DUPLEX
,
879 PIPE_TYPE_BYTE
|PIPE_WAIT
, PIPE_UNLIMITED_INSTANCES
,
880 4096, 4096, 500 /* 0.5 second timeout */, NULL
);
882 if (hPipe
== INVALID_HANDLE_VALUE
)
884 FIXME("pipe creation failed for %s, le is %ld\n", debugstr_w(pipefn
), GetLastError());
889 if (!ConnectNamedPipe(hPipe
,NULL
)) {
890 ERR("Failure during ConnectNamedPipe %ld, ABORT!\n",GetLastError());
894 TRACE("marshalling IClassFactory to client\n");
896 hres
= IStream_Stat(pStm
,&ststg
,0);
897 if (hres
) return hres
;
899 buflen
= ststg
.cbSize
.u
.LowPart
;
900 buffer
= HeapAlloc(GetProcessHeap(),0,buflen
);
901 seekto
.u
.LowPart
= 0;
902 seekto
.u
.HighPart
= 0;
903 hres
= IStream_Seek(pStm
,seekto
,SEEK_SET
,&newpos
);
905 FIXME("IStream_Seek failed, %lx\n",hres
);
909 hres
= IStream_Read(pStm
,buffer
,buflen
,&res
);
911 FIXME("Stream Read failed, %lx\n",hres
);
915 WriteFile(hPipe
,buffer
,buflen
,&res
,NULL
);
916 FlushFileBuffers(hPipe
);
917 DisconnectNamedPipe(hPipe
);
919 TRACE("done marshalling IClassFactory\n");
922 IStream_Release(pStm
);
926 void RPC_StartLocalServer(REFCLSID clsid
, IStream
*stream
)
930 struct local_server_params
*lsp
= HeapAlloc(GetProcessHeap(), 0, sizeof(*lsp
));
933 lsp
->stream
= stream
;
935 thread
= CreateThread(NULL
, 0, local_server_thread
, lsp
, 0, &tid
);
937 /* FIXME: failure handling */