wintrust: Use path in WIN_TRUST_SUBJECT_FILE structure rather than assuming a path...
[wine] / dlls / ole32 / compobj_private.h
1 /*
2  * Copyright 1995 Martin von Loewis
3  * Copyright 1998 Justin Bradford
4  * Copyright 1999 Francis Beaudet
5  * Copyright 1999 Sylvain St-Germain
6  * Copyright 2002 Marcus Meissner
7  * Copyright 2003 Ove Kåven, TransGaming Technologies
8  * Copyright 2004 Mike Hearn, Rob Shearman, CodeWeavers Inc
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * This library 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 GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with this library; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23  */
24
25 #ifndef __WINE_OLE_COMPOBJ_H
26 #define __WINE_OLE_COMPOBJ_H
27
28 /* All private prototype functions used by OLE will be added to this header file */
29
30 #include <stdarg.h>
31
32 #include "wine/list.h"
33
34 #include "windef.h"
35 #include "winbase.h"
36 #include "wtypes.h"
37 #include "dcom.h"
38 #include "winreg.h"
39 #include "winternl.h"
40
41 struct apartment;
42 typedef struct apartment APARTMENT;
43
44 DEFINE_OLEGUID( CLSID_DfMarshal, 0x0000030b, 0, 0 );
45 DEFINE_OLEGUID( CLSID_PSFactoryBuffer, 0x00000320, 0, 0 );
46
47 /* signal to stub manager that this is a rem unknown object */
48 #define MSHLFLAGSP_REMUNKNOWN   0x80000000
49
50 /* Thread-safety Annotation Legend:
51  *
52  * RO    - The value is read only. It never changes after creation, so no
53  *         locking is required.
54  * LOCK  - The value is written to only using Interlocked* functions.
55  * CS    - The value is read or written to inside a critical section.
56  *         The identifier following "CS" is the specific critical section that
57  *         must be used.
58  * MUTEX - The value is read or written to with a mutex held.
59  *         The identifier following "MUTEX" is the specific mutex that
60  *         must be used.
61  */
62
63 typedef enum ifstub_state
64 {
65     STUBSTATE_NORMAL_MARSHALED,
66     STUBSTATE_NORMAL_UNMARSHALED,
67     STUBSTATE_TABLE_WEAK_MARSHALED,
68     STUBSTATE_TABLE_WEAK_UNMARSHALED,
69     STUBSTATE_TABLE_STRONG,
70 } STUB_STATE;
71
72 /* an interface stub */
73 struct ifstub   
74 {
75     struct list       entry;      /* entry in stub_manager->ifstubs list (CS stub_manager->lock) */
76     IRpcStubBuffer   *stubbuffer; /* RO */
77     IID               iid;        /* RO */
78     IPID              ipid;       /* RO */
79     IUnknown         *iface;      /* RO */
80     MSHLFLAGS         flags;      /* so we can enforce process-local marshalling rules (RO) */
81     IRpcChannelBuffer*chan;       /* channel passed to IRpcStubBuffer::Invoke (RO) */
82 };
83
84
85 /* stub managers hold refs on the object and each interface stub */
86 struct stub_manager
87 {
88     struct list       entry;      /* entry in apartment stubmgr list (CS apt->cs) */
89     struct list       ifstubs;    /* list of active ifstubs for the object (CS lock) */
90     CRITICAL_SECTION  lock;
91     APARTMENT        *apt;        /* owning apt (RO) */
92
93     ULONG             extrefs;    /* number of 'external' references (CS lock) */
94     ULONG             refs;       /* internal reference count (CS apt->cs) */
95     ULONG             weakrefs;   /* number of weak references (CS lock) */
96     OID               oid;        /* apartment-scoped unique identifier (RO) */
97     IUnknown         *object;     /* the object we are managing the stub for (RO) */
98     ULONG             next_ipid;  /* currently unused (LOCK) */
99     OXID_INFO         oxid_info;  /* string binding, ipid of rem unknown and other information (RO) */
100
101     /* We need to keep a count of the outstanding marshals, so we can enforce the
102      * marshalling rules (ie, you can only unmarshal normal marshals once). Note
103      * that these counts do NOT include unmarshalled interfaces, once a stream is
104      * unmarshalled and a proxy set up, this count is decremented.
105      */
106
107     ULONG             norm_refs;  /* refcount of normal marshals (CS lock) */
108 };
109
110 /* imported interface proxy */
111 struct ifproxy
112 {
113   struct list entry;       /* entry in proxy_manager list (CS parent->cs) */
114   struct proxy_manager *parent; /* owning proxy_manager (RO) */
115   LPVOID iface;            /* interface pointer (RO) */
116   STDOBJREF stdobjref;     /* marshal data that represents this object (RO) */
117   IID iid;                 /* interface ID (RO) */
118   LPRPCPROXYBUFFER proxy;  /* interface proxy (RO) */
119   ULONG refs;              /* imported (public) references (LOCK) */
120   IRpcChannelBuffer *chan; /* channel to object (CS parent->cs) */
121 };
122
123 /* imported object / proxy manager */
124 struct proxy_manager
125 {
126   const IMultiQIVtbl *lpVtbl;
127   const IMarshalVtbl *lpVtblMarshal;
128   const IClientSecurityVtbl *lpVtblCliSec;
129   struct apartment *parent; /* owning apartment (RO) */
130   struct list entry;        /* entry in apartment (CS parent->cs) */
131   OXID oxid;                /* object exported ID (RO) */
132   OXID_INFO oxid_info;      /* string binding, ipid of rem unknown and other information (RO) */
133   OID oid;                  /* object ID (RO) */
134   struct list interfaces;   /* imported interfaces (CS cs) */
135   LONG refs;                /* proxy reference count (LOCK) */
136   CRITICAL_SECTION cs;      /* thread safety for this object and children */
137   ULONG sorflags;           /* STDOBJREF flags (RO) */
138   IRemUnknown *remunk;      /* proxy to IRemUnknown used for lifecycle management (CS cs) */
139   HANDLE remoting_mutex;    /* mutex used for synchronizing access to IRemUnknown */
140   MSHCTX dest_context;      /* context used for activating optimisations (LOCK) */
141   void *dest_context_data;  /* reserved context value (LOCK) */
142 };
143
144 struct apartment
145 {
146   struct list entry;
147
148   LONG  refs;              /* refcount of the apartment (LOCK) */
149   BOOL multi_threaded;     /* multi-threaded or single-threaded apartment? (RO) */
150   DWORD tid;               /* thread id (RO) */
151   OXID oxid;               /* object exporter ID (RO) */
152   LONG ipidc;              /* interface pointer ID counter, starts at 1 (LOCK) */
153   CRITICAL_SECTION cs;     /* thread safety */
154   struct list proxies;     /* imported objects (CS cs) */
155   struct list stubmgrs;    /* stub managers for exported objects (CS cs) */
156   BOOL remunk_exported;    /* has the IRemUnknown interface for this apartment been created yet? (CS cs) */
157   LONG remoting_started;   /* has the RPC system been started for this apartment? (LOCK) */
158   struct list psclsids;    /* list of registered PS CLSIDs (CS cs) */
159   struct list loaded_dlls; /* list of dlls loaded by this apartment (CS cs) */
160   DWORD host_apt_tid;      /* thread ID of apartment hosting objects of differing threading model (CS cs) */
161   HWND host_apt_hwnd;      /* handle to apartment window of host apartment (CS cs) */
162
163   /* FIXME: OID's should be given out by RPCSS */
164   OID oidc;                /* object ID counter, starts at 1, zero is invalid OID (CS cs) */
165
166   /* STA-only fields */
167   HWND win;                /* message window (LOCK) */
168   LPMESSAGEFILTER filter;  /* message filter (CS cs) */
169   BOOL main;               /* is this a main-threaded-apartment? (RO) */
170 };
171
172 /* this is what is stored in TEB->ReservedForOle */
173 struct oletls
174 {
175     struct apartment *apt;
176     IErrorInfo       *errorinfo;   /* see errorinfo.c */
177     IUnknown         *state;       /* see CoSetState */
178     DWORD            inits;        /* number of times CoInitializeEx called */
179     DWORD            ole_inits;    /* number of times OleInitialize called */
180     GUID             causality_id; /* unique identifier for each COM call */
181     LONG             pending_call_count_client; /* number of client calls pending */
182     LONG             pending_call_count_server; /* number of server calls pending */
183 };
184
185
186 /* Global Interface Table Functions */
187
188 extern void* StdGlobalInterfaceTable_Construct(void);
189 extern HRESULT StdGlobalInterfaceTable_GetFactory(LPVOID *ppv);
190 extern void* StdGlobalInterfaceTableInstance;
191
192 /* FIXME: these shouldn't be needed, except for 16-bit functions */
193 extern HRESULT WINE_StringFromCLSID(const CLSID *id,LPSTR idstr);
194
195 HRESULT COM_OpenKeyForCLSID(REFCLSID clsid, LPCWSTR keyname, REGSAM access, HKEY *key);
196 HRESULT COM_OpenKeyForAppIdFromCLSID(REFCLSID clsid, REGSAM access, HKEY *subkey);
197 HRESULT MARSHAL_GetStandardMarshalCF(LPVOID *ppv);
198 HRESULT FTMarshalCF_Create(REFIID riid, LPVOID *ppv);
199
200 /* Stub Manager */
201
202 ULONG stub_manager_int_addref(struct stub_manager *This);
203 ULONG stub_manager_int_release(struct stub_manager *This);
204 struct stub_manager *new_stub_manager(APARTMENT *apt, IUnknown *object);
205 ULONG stub_manager_ext_addref(struct stub_manager *m, ULONG refs, BOOL tableweak);
206 ULONG stub_manager_ext_release(struct stub_manager *m, ULONG refs, BOOL tableweak, BOOL last_unlock_releases);
207 struct ifstub *stub_manager_new_ifstub(struct stub_manager *m, IRpcStubBuffer *sb, IUnknown *iptr, REFIID iid, MSHLFLAGS flags);
208 struct ifstub *stub_manager_find_ifstub(struct stub_manager *m, REFIID iid, MSHLFLAGS flags);
209 struct stub_manager *get_stub_manager(APARTMENT *apt, OID oid);
210 struct stub_manager *get_stub_manager_from_object(APARTMENT *apt, void *object);
211 BOOL stub_manager_notify_unmarshal(struct stub_manager *m, const IPID *ipid);
212 BOOL stub_manager_is_table_marshaled(struct stub_manager *m, const IPID *ipid);
213 void stub_manager_release_marshal_data(struct stub_manager *m, ULONG refs, const IPID *ipid, BOOL tableweak);
214 HRESULT ipid_to_stub_manager(const IPID *ipid, APARTMENT **stub_apt, struct stub_manager **stubmgr_ret);
215 HRESULT ipid_get_dispatch_params(const IPID *ipid, APARTMENT **stub_apt, IRpcStubBuffer **stub, IRpcChannelBuffer **chan, IID *iid, IUnknown **iface);
216 HRESULT start_apartment_remote_unknown(void);
217
218 HRESULT marshal_object(APARTMENT *apt, STDOBJREF *stdobjref, REFIID riid, IUnknown *obj, MSHLFLAGS mshlflags);
219
220 /* RPC Backend */
221
222 struct dispatch_params;
223
224 void    RPC_StartRemoting(struct apartment *apt);
225 HRESULT RPC_CreateClientChannel(const OXID *oxid, const IPID *ipid,
226                                 const OXID_INFO *oxid_info,
227                                 DWORD dest_context, void *dest_context_data,
228                                 IRpcChannelBuffer **chan);
229 HRESULT RPC_CreateServerChannel(IRpcChannelBuffer **chan);
230 void    RPC_ExecuteCall(struct dispatch_params *params);
231 HRESULT RPC_RegisterInterface(REFIID riid);
232 void    RPC_UnregisterInterface(REFIID riid);
233 HRESULT RPC_StartLocalServer(REFCLSID clsid, IStream *stream, BOOL multi_use, void **registration);
234 void    RPC_StopLocalServer(void *registration);
235 HRESULT RPC_GetLocalClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv);
236 HRESULT RPC_RegisterChannelHook(REFGUID rguid, IChannelHook *hook);
237 void    RPC_UnregisterAllChannelHooks(void);
238 HRESULT RPC_ResolveOxid(OXID oxid, OXID_INFO *oxid_info);
239
240 /* This function initialize the Running Object Table */
241 HRESULT WINAPI RunningObjectTableImpl_Initialize(void);
242
243 /* This function uninitialize the Running Object Table */
244 HRESULT WINAPI RunningObjectTableImpl_UnInitialize(void);
245
246 /* Drag and drop */
247 void OLEDD_UnInitialize(void);
248
249 /* Apartment Functions */
250
251 APARTMENT *apartment_findfromoxid(OXID oxid, BOOL ref);
252 APARTMENT *apartment_findfromtid(DWORD tid);
253 DWORD apartment_addref(struct apartment *apt);
254 DWORD apartment_release(struct apartment *apt);
255 HRESULT apartment_disconnectproxies(struct apartment *apt);
256 void apartment_disconnectobject(struct apartment *apt, void *object);
257 static inline HRESULT apartment_getoxid(const struct apartment *apt, OXID *oxid)
258 {
259     *oxid = apt->oxid;
260     return S_OK;
261 }
262 HRESULT apartment_createwindowifneeded(struct apartment *apt);
263 HWND apartment_getwindow(const struct apartment *apt);
264 void apartment_joinmta(void);
265
266
267 /* DCOM messages used by the apartment window (not compatible with native) */
268 #define DM_EXECUTERPC   (WM_USER + 0) /* WPARAM = 0, LPARAM = (struct dispatch_params *) */
269 #define DM_HOSTOBJECT   (WM_USER + 1) /* WPARAM = 0, LPARAM = (struct host_object_params *) */
270
271 /*
272  * Per-thread values are stored in the TEB on offset 0xF80
273  */
274
275 /* will create if necessary */
276 static inline struct oletls *COM_CurrentInfo(void)
277 {
278     if (!NtCurrentTeb()->ReservedForOle)
279         NtCurrentTeb()->ReservedForOle = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(struct oletls));
280
281     return NtCurrentTeb()->ReservedForOle;
282 }
283
284 static inline APARTMENT* COM_CurrentApt(void)
285 {  
286     return COM_CurrentInfo()->apt;
287 }
288
289 static inline GUID COM_CurrentCausalityId(void)
290 {
291     struct oletls *info = COM_CurrentInfo();
292     if (!info)
293         return GUID_NULL;
294     if (IsEqualGUID(&info->causality_id, &GUID_NULL))
295         CoCreateGuid(&info->causality_id);
296     return info->causality_id;
297 }
298
299 #define ICOM_THIS_MULTI(impl,field,iface) impl* const This=(impl*)((char*)(iface) - offsetof(impl,field))
300
301 /* helpers for debugging */
302 # define DEBUG_SET_CRITSEC_NAME(cs, name) (cs)->DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": " name)
303 # define DEBUG_CLEAR_CRITSEC_NAME(cs) (cs)->DebugInfo->Spare[0] = 0
304
305 extern HINSTANCE OLE32_hInstance; /* FIXME: make static */
306
307 #define CHARS_IN_GUID 39 /* including NULL */
308
309 #define WINE_CLSCTX_DONT_HOST   0x80000000
310
311 /* Exported non-interface Data Advise Holder functions */
312 HRESULT DataAdviseHolder_OnConnect(IDataAdviseHolder *iface, IDataObject *pDelegate);
313 void DataAdviseHolder_OnDisconnect(IDataAdviseHolder *iface);
314
315 #endif /* __WINE_OLE_COMPOBJ_H */