compobj_private.h 13.9 KB
Newer Older
1 2 3 4 5 6
/*
 * Copyright 1995 Martin von Loewis
 * Copyright 1998 Justin Bradford
 * Copyright 1999 Francis Beaudet
 * Copyright 1999 Sylvain St-Germain
 * Copyright 2002 Marcus Meissner
7
 * Copyright 2003 Ove Kåven, TransGaming Technologies
8
 * Copyright 2004 Mike Hearn, Rob Shearman, CodeWeavers Inc
9 10 11 12 13 14 15 16 17 18 19 20 21
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * 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 26 27 28 29
#ifndef __WINE_OLE_COMPOBJ_H
#define __WINE_OLE_COMPOBJ_H

/* All private prototype functions used by OLE will be added to this header file */

30 31
#include <stdarg.h>

32 33
#include "wine/list.h"

34 35
#include "windef.h"
#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

46 47 48
/* signal to stub manager that this is a rem unknown object */
#define MSHLFLAGSP_REMUNKNOWN   0x80000000

49 50
/* Thread-safety Annotation Legend:
 *
51 52 53 54
 * RO    - The value is read only. It never changes after creation, so no
 *         locking is required.
 * LOCK  - The value is written to only using Interlocked* functions.
 * CS    - The value is read or written to inside a critical section.
55
 *         The identifier following "CS" is the specific critical section that
56 57 58 59
 *         must be used.
 * MUTEX - The value is read or written to with a mutex held.
 *         The identifier following "MUTEX" is the specific mutex that
 *         must be used.
60 61
 */

62 63
typedef enum ifstub_state
{
64 65 66 67 68 69
    STUBSTATE_NORMAL_MARSHALED,
    STUBSTATE_NORMAL_UNMARSHALED,
    STUBSTATE_TABLE_WEAK_MARSHALED,
    STUBSTATE_TABLE_WEAK_UNMARSHALED,
    STUBSTATE_TABLE_STRONG,
} STUB_STATE;
70

71 72 73 74 75 76 77 78
/* an interface stub */
struct ifstub   
{
    struct list       entry;      /* entry in stub_manager->ifstubs list (CS stub_manager->lock) */
    IRpcStubBuffer   *stubbuffer; /* RO */
    IID               iid;        /* RO */
    IPID              ipid;       /* RO */
    IUnknown         *iface;      /* RO */
79
    MSHLFLAGS         flags;      /* so we can enforce process-local marshalling rules (RO) */
80
    IRpcChannelBuffer*chan;       /* channel passed to IRpcStubBuffer::Invoke (RO) */
81
};
82

83 84 85 86 87 88 89 90 91

/* stub managers hold refs on the object and each interface stub */
struct stub_manager
{
    struct list       entry;      /* entry in apartment stubmgr list (CS apt->cs) */
    struct list       ifstubs;    /* list of active ifstubs for the object (CS lock) */
    CRITICAL_SECTION  lock;
    APARTMENT        *apt;        /* owning apt (RO) */

92
    ULONG             extrefs;    /* number of 'external' references (CS lock) */
93
    ULONG             refs;       /* internal reference count (CS apt->cs) */
94
    ULONG             weakrefs;   /* number of weak references (CS lock) */
95 96 97
    OID               oid;        /* apartment-scoped unique identifier (RO) */
    IUnknown         *object;     /* the object we are managing the stub for (RO) */
    ULONG             next_ipid;  /* currently unused (LOCK) */
98
    OXID_INFO         oxid_info;  /* string binding, ipid of rem unknown and other information (RO) */
99 100 101 102 103 104 105 106

    /* We need to keep a count of the outstanding marshals, so we can enforce the
     * marshalling rules (ie, you can only unmarshal normal marshals once). Note
     * that these counts do NOT include unmarshalled interfaces, once a stream is
     * unmarshalled and a proxy set up, this count is decremented.
     */

    ULONG             norm_refs;  /* refcount of normal marshals (CS lock) */
107
};
108

109 110 111
/* imported interface proxy */
struct ifproxy
{
112 113
  struct list entry;       /* entry in proxy_manager list (CS parent->cs) */
  struct proxy_manager *parent; /* owning proxy_manager (RO) */
114
  LPVOID iface;            /* interface pointer (RO) */
115
  STDOBJREF stdobjref;     /* marshal data that represents this object (RO) */
116 117
  IID iid;                 /* interface ID (RO) */
  LPRPCPROXYBUFFER proxy;  /* interface proxy (RO) */
118
  ULONG refs;              /* imported (public) references (LOCK) */
119
  IRpcChannelBuffer *chan; /* channel to object (CS parent->cs) */
120
};
121

122 123
struct apartment
{
124
  struct list entry;
125

126
  LONG  refs;              /* refcount of the apartment (LOCK) */
127
  BOOL multi_threaded;     /* multi-threaded or single-threaded apartment? (RO) */
128 129
  DWORD tid;               /* thread id (RO) */
  OXID oxid;               /* object exporter ID (RO) */
130
  LONG ipidc;              /* interface pointer ID counter, starts at 1 (LOCK) */
131
  CRITICAL_SECTION cs;     /* thread safety */
132 133
  struct list proxies;     /* imported objects (CS cs) */
  struct list stubmgrs;    /* stub managers for exported objects (CS cs) */
134
  BOOL remunk_exported;    /* has the IRemUnknown interface for this apartment been created yet? (CS cs) */
135
  LONG remoting_started;   /* has the RPC system been started for this apartment? (LOCK) */
136
  struct list psclsids;    /* list of registered PS CLSIDs (CS cs) */
137
  struct list loaded_dlls; /* list of dlls loaded by this apartment (CS cs) */
138 139
  DWORD host_apt_tid;      /* thread ID of apartment hosting objects of differing threading model (CS cs) */
  HWND host_apt_hwnd;      /* handle to apartment window of host apartment (CS cs) */
140

141
  /* FIXME: OIDs should be given out by RPCSS */
142
  OID oidc;                /* object ID counter, starts at 1, zero is invalid OID (CS cs) */
143 144 145 146 147

  /* STA-only fields */
  HWND win;                /* message window (LOCK) */
  LPMESSAGEFILTER filter;  /* message filter (CS cs) */
  BOOL main;               /* is this a main-threaded-apartment? (RO) */
148
};
149

150 151 152 153 154 155
/* this is what is stored in TEB->ReservedForOle */
struct oletls
{
    struct apartment *apt;
    IErrorInfo       *errorinfo;   /* see errorinfo.c */
    IUnknown         *state;       /* see CoSetState */
156
    DWORD             apt_mask;    /* apartment mask (+0Ch on x86) */
157
    IInitializeSpy   *spy;         /* The "SPY" from CoInitializeSpy */
158
    DWORD            inits;        /* number of times CoInitializeEx called */
159
    DWORD            ole_inits;    /* number of times OleInitialize called */
160
    GUID             causality_id; /* unique identifier for each COM call */
161 162
    LONG             pending_call_count_client; /* number of client calls pending */
    LONG             pending_call_count_server; /* number of server calls pending */
163
    DWORD            unknown;
164
    IObjContext     *context_token; /* (+38h on x86) */
165 166 167
    IUnknown        *call_state;    /* current call context (+3Ch on x86) */
    DWORD            unknown2[46];
    IUnknown        *cancel_object; /* cancel object set by CoSetCancelObject (+F8h on x86) */
168
};
169

170 171 172

/* Global Interface Table Functions */

173 174 175
extern void* StdGlobalInterfaceTable_Construct(void) DECLSPEC_HIDDEN;
extern HRESULT StdGlobalInterfaceTable_GetFactory(LPVOID *ppv) DECLSPEC_HIDDEN;
extern void* StdGlobalInterfaceTableInstance DECLSPEC_HIDDEN;
176

177 178 179 180
HRESULT COM_OpenKeyForCLSID(REFCLSID clsid, LPCWSTR keyname, REGSAM access, HKEY *key) DECLSPEC_HIDDEN;
HRESULT COM_OpenKeyForAppIdFromCLSID(REFCLSID clsid, REGSAM access, HKEY *subkey) DECLSPEC_HIDDEN;
HRESULT MARSHAL_GetStandardMarshalCF(LPVOID *ppv) DECLSPEC_HIDDEN;
HRESULT FTMarshalCF_Create(REFIID riid, LPVOID *ppv) DECLSPEC_HIDDEN;
181

182 183
/* Stub Manager */

184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
ULONG stub_manager_int_release(struct stub_manager *This) DECLSPEC_HIDDEN;
struct stub_manager *new_stub_manager(APARTMENT *apt, IUnknown *object) DECLSPEC_HIDDEN;
ULONG stub_manager_ext_addref(struct stub_manager *m, ULONG refs, BOOL tableweak) DECLSPEC_HIDDEN;
ULONG stub_manager_ext_release(struct stub_manager *m, ULONG refs, BOOL tableweak, BOOL last_unlock_releases) DECLSPEC_HIDDEN;
struct ifstub *stub_manager_new_ifstub(struct stub_manager *m, IRpcStubBuffer *sb, IUnknown *iptr, REFIID iid, MSHLFLAGS flags) DECLSPEC_HIDDEN;
struct ifstub *stub_manager_find_ifstub(struct stub_manager *m, REFIID iid, MSHLFLAGS flags) DECLSPEC_HIDDEN;
struct stub_manager *get_stub_manager(APARTMENT *apt, OID oid) DECLSPEC_HIDDEN;
struct stub_manager *get_stub_manager_from_object(APARTMENT *apt, void *object) DECLSPEC_HIDDEN;
BOOL stub_manager_notify_unmarshal(struct stub_manager *m, const IPID *ipid) DECLSPEC_HIDDEN;
BOOL stub_manager_is_table_marshaled(struct stub_manager *m, const IPID *ipid) DECLSPEC_HIDDEN;
void stub_manager_release_marshal_data(struct stub_manager *m, ULONG refs, const IPID *ipid, BOOL tableweak) DECLSPEC_HIDDEN;
HRESULT ipid_get_dispatch_params(const IPID *ipid, APARTMENT **stub_apt, IRpcStubBuffer **stub, IRpcChannelBuffer **chan, IID *iid, IUnknown **iface) DECLSPEC_HIDDEN;
HRESULT start_apartment_remote_unknown(void) DECLSPEC_HIDDEN;

HRESULT marshal_object(APARTMENT *apt, STDOBJREF *stdobjref, REFIID riid, IUnknown *obj, MSHLFLAGS mshlflags) DECLSPEC_HIDDEN;
199

200
/* RPC Backend */
201

202 203
struct dispatch_params;

204
void    RPC_StartRemoting(struct apartment *apt) DECLSPEC_HIDDEN;
205
HRESULT RPC_CreateClientChannel(const OXID *oxid, const IPID *ipid,
206
                                const OXID_INFO *oxid_info,
207
                                DWORD dest_context, void *dest_context_data,
208 209 210 211 212 213 214 215 216 217 218
                                IRpcChannelBuffer **chan) DECLSPEC_HIDDEN;
HRESULT RPC_CreateServerChannel(IRpcChannelBuffer **chan) DECLSPEC_HIDDEN;
void    RPC_ExecuteCall(struct dispatch_params *params) DECLSPEC_HIDDEN;
HRESULT RPC_RegisterInterface(REFIID riid) DECLSPEC_HIDDEN;
void    RPC_UnregisterInterface(REFIID riid) DECLSPEC_HIDDEN;
HRESULT RPC_StartLocalServer(REFCLSID clsid, IStream *stream, BOOL multi_use, void **registration) DECLSPEC_HIDDEN;
void    RPC_StopLocalServer(void *registration) DECLSPEC_HIDDEN;
HRESULT RPC_GetLocalClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv) DECLSPEC_HIDDEN;
HRESULT RPC_RegisterChannelHook(REFGUID rguid, IChannelHook *hook) DECLSPEC_HIDDEN;
void    RPC_UnregisterAllChannelHooks(void) DECLSPEC_HIDDEN;
HRESULT RPC_ResolveOxid(OXID oxid, OXID_INFO *oxid_info) DECLSPEC_HIDDEN;
219

220
/* This function initialize the Running Object Table */
221
HRESULT WINAPI RunningObjectTableImpl_Initialize(void) DECLSPEC_HIDDEN;
222 223

/* This function uninitialize the Running Object Table */
224
HRESULT WINAPI RunningObjectTableImpl_UnInitialize(void) DECLSPEC_HIDDEN;
225

226
/* Drag and drop */
227
void OLEDD_UnInitialize(void) DECLSPEC_HIDDEN;
228 229 230

/* Apartment Functions */

231 232 233 234 235
APARTMENT *apartment_findfromoxid(OXID oxid, BOOL ref) DECLSPEC_HIDDEN;
APARTMENT *apartment_findfromtid(DWORD tid) DECLSPEC_HIDDEN;
DWORD apartment_release(struct apartment *apt) DECLSPEC_HIDDEN;
HRESULT apartment_disconnectproxies(struct apartment *apt) DECLSPEC_HIDDEN;
void apartment_disconnectobject(struct apartment *apt, void *object) DECLSPEC_HIDDEN;
236
static inline HRESULT apartment_getoxid(const struct apartment *apt, OXID *oxid)
237 238 239 240
{
    *oxid = apt->oxid;
    return S_OK;
}
241 242 243
HRESULT apartment_createwindowifneeded(struct apartment *apt) DECLSPEC_HIDDEN;
HWND apartment_getwindow(const struct apartment *apt) DECLSPEC_HIDDEN;
void apartment_joinmta(void) DECLSPEC_HIDDEN;
244

245 246 247

/* DCOM messages used by the apartment window (not compatible with native) */
#define DM_EXECUTERPC   (WM_USER + 0) /* WPARAM = 0, LPARAM = (struct dispatch_params *) */
248
#define DM_HOSTOBJECT   (WM_USER + 1) /* WPARAM = 0, LPARAM = (struct host_object_params *) */
249

250
/*
251
 * Per-thread values are stored in the TEB on offset 0xF80
252
 */
253 254 255

/* will create if necessary */
static inline struct oletls *COM_CurrentInfo(void)
256
{
257
    if (!NtCurrentTeb()->ReservedForOle)
258
        NtCurrentTeb()->ReservedForOle = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(struct oletls));
259

260
    return NtCurrentTeb()->ReservedForOle;
261
}
262

263
static inline APARTMENT* COM_CurrentApt(void)
264 265
{  
    return COM_CurrentInfo()->apt;
266 267
}

268 269 270 271 272 273 274 275 276 277
static inline GUID COM_CurrentCausalityId(void)
{
    struct oletls *info = COM_CurrentInfo();
    if (!info)
        return GUID_NULL;
    if (IsEqualGUID(&info->causality_id, &GUID_NULL))
        CoCreateGuid(&info->causality_id);
    return info->causality_id;
}

278
/* helpers for debugging */
279 280
# define DEBUG_SET_CRITSEC_NAME(cs, name) (cs)->DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": " name)
# define DEBUG_CLEAR_CRITSEC_NAME(cs) (cs)->DebugInfo->Spare[0] = 0
281

282 283
#define CHARS_IN_GUID 39 /* including NULL */

284 285
#define WINE_CLSCTX_DONT_HOST   0x80000000

286
/* from dlldata.c */
287
extern HINSTANCE hProxyDll DECLSPEC_HIDDEN;
288
extern HRESULT WINAPI OLE32_DllGetClassObject(REFCLSID rclsid, REFIID iid,LPVOID *ppv) DECLSPEC_HIDDEN;
289 290
extern HRESULT WINAPI OLE32_DllRegisterServer(void) DECLSPEC_HIDDEN;
extern HRESULT WINAPI OLE32_DllUnregisterServer(void) DECLSPEC_HIDDEN;
291

292 293
extern HRESULT Handler_DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv) DECLSPEC_HIDDEN;
extern HRESULT HandlerCF_Create(REFCLSID rclsid, REFIID riid, LPVOID *ppv) DECLSPEC_HIDDEN;
294

295
/* Exported non-interface Data Advise Holder functions */
296 297 298 299 300 301 302 303 304 305 306 307 308 309
HRESULT DataAdviseHolder_OnConnect(IDataAdviseHolder *iface, IDataObject *pDelegate) DECLSPEC_HIDDEN;
void DataAdviseHolder_OnDisconnect(IDataAdviseHolder *iface) DECLSPEC_HIDDEN;

extern UINT ownerlink_clipboard_format DECLSPEC_HIDDEN;
extern UINT filename_clipboard_format DECLSPEC_HIDDEN;
extern UINT filenameW_clipboard_format DECLSPEC_HIDDEN;
extern UINT dataobject_clipboard_format DECLSPEC_HIDDEN;
extern UINT embedded_object_clipboard_format DECLSPEC_HIDDEN;
extern UINT embed_source_clipboard_format DECLSPEC_HIDDEN;
extern UINT custom_link_source_clipboard_format DECLSPEC_HIDDEN;
extern UINT link_source_clipboard_format DECLSPEC_HIDDEN;
extern UINT object_descriptor_clipboard_format DECLSPEC_HIDDEN;
extern UINT link_source_descriptor_clipboard_format DECLSPEC_HIDDEN;
extern UINT ole_private_data_clipboard_format DECLSPEC_HIDDEN;
310

311
#endif /* __WINE_OLE_COMPOBJ_H */