summaryrefslogtreecommitdiffstats
path: root/private/ole32/dcomss/olescm/scm.hxx
blob: e7434ac8cf92c891866d358dc2aefe64d9492227 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
//+-------------------------------------------------------------------
//
//  File:       scm.hxx
//
//  Contents:   Common stuff for OLE Service (SCM)
//
//  History:    03-Jun-93      Ricksa      Created
//              31-Dec-93      ErikGav     Chicago port
//              03-Nov-94      BillMo      ole32.dll contains scm
//                                         (added notes below on defs.)
//              25-Oct-95      BruceMa     Add support for Services
//
//---------------------------------------------------------------------

#ifdef _CHICAGO_
#include "chicago\scm.hxx"
#else

#ifndef __SCM_HXX__
#define __SCM_HXX__

#define SCM_ALLOW_SHARED_WOW    0
#define SCM_FORCE_SEPARATE_WOW  1

#define SHARED_SW               L"/SHARED_WOW"
#define SEPARATE_SW             L"/SEPARATE_WOW"

#include <scmmem.hxx>

#define GUIDSTR_MAX (1+ 8 + 1 + 4 + 1 + 4 + 1 + 4 + 1 + 12 + 1 + 1)

#ifndef _CHICAGO_
#define IFSECURITY(x) x,
#else
#define IFSECURITY(x)
#endif

//
// Here are some debug only routines
//
#if DBG == 1
extern char *apszModelStrings[4];
WCHAR *FormatGuid(const GUID& rguid, WCHAR *pwszGuid);
#endif

#ifndef _CHICAGO_

//---------------------------------------------------------------------
//  OLE with SCM -- prototypes
//---------------------------------------------------------------------

DWORD Update(void *);
LONG  LoadClassCache(void);
HRESULT InitSCMRegistry();

extern LPCWSTR pwszScmProtocolSequence[];
extern LPCWSTR pwszScmEndPoint[];

//
// NT lock and mutex classes
//

typedef class CLock CPortableLock;
typedef class CMutexSem CDynamicPortableMutex;
typedef class COleStaticMutexSem CStaticPortableMutex;
typedef class COleStaticLock CStaticPortableLock;

typedef DWORD (APIENTRY * GET_UNIVERSAL_NAME_FUNC)(
    LPCWSTR lpLocalPath,
    DWORD    dwInfoLevel,
    LPVOID   lpBuffer,
    LPDWORD  lpBufferSize
    );

DWORD APIENTRY ScmWNetGetUniversalName(
    LPCWSTR lpLocalPath,
    DWORD    dwInfoLevel,
    LPVOID   lpBuffer,
    LPDWORD  lpBufferSize
    );

typedef NET_API_STATUS (NET_API_FUNCTION * NET_SHARE_GET_INFO_FUNC)(
    LPTSTR  servername,
    LPTSTR  netname,
    DWORD   level,
    LPBYTE  *bufptr
    );

NET_API_STATUS NET_API_FUNCTION ScmNetShareGetInfo(
    LPTSTR  servername,
    LPTSTR  netname,
    DWORD   level,
    LPBYTE  *bufptr
    );

NTSTATUS
DfsFsctl(
    HANDLE  DfsHandle,
    ULONG   FsControlCode,
    PVOID   InputBuffer,
    ULONG   InputBufferLength,
    PVOID   OutputBuffer,
    PULONG  OutputBufferLength);

NTSTATUS
DfsOpen(
    PHANDLE DfsHandle);

#else

//
//  x86 Windows lock and mutex classes
//

typedef class CLockSmMutex CPortableLock;
class CDynamicPortableMutex : public CSmMutex
{
public:
    inline VOID Request()
    {
        Get();
    }
};
typedef CDynamicPortableMutex CStaticPortableMutex;
typedef CPortableLock CStaticPortableLock;

#endif

#define OLE32_DLL L"OLE32.DLL"
#define OLE32_BYTE_LEN sizeof(OLE32_DLL)
#define OLE32_CHAR_LEN (sizeof(OLE32_DLL) / sizeof(WCHAR) - 1)

#define SCM_EVENT_SOURCE        L"DCOM"

//+-------------------------------------------------------------------------
//
//  Function:   NotFoundError
//
//  Synopsis:   Convert registry not found errors to TRUE
//
//  Arguments:  [err] - Input error
//
//  Returns:    TRUE - registry entry was not found
//              FALSE - some other error
//
//  History:    09-Nov-94 Ricksa    Made inline and gave a header
//
//--------------------------------------------------------------------------
inline BOOL NotFoundError(LONG err)
{
    return(err == ERROR_FILE_NOT_FOUND || err == ERROR_BAD_PATHNAME);
}



//+-------------------------------------------------------------------------
//
//  Class:      CAppIDData
//
//  Purpose:    Class to read registry entry for an appid.
//
//  Interface:  ReadEntries -- read the given classes info into
//                                the CAppIDData.
//
//
//  Notes:
//
//--------------------------------------------------------------------------
class CAppIDData
{
public:
                    CAppIDData();;

                    ~CAppIDData();


    LONG            ReadEntries( LPOLESTR pwszAppID );

    void            Cleanup();

//private:
    WCHAR *pwszRemoteServerName;

    WCHAR *pwszLocalService;
    WCHAR *pwszServiceArgs;

    WCHAR *pwszRunAsUserName;
    WCHAR *pwszRunAsDomainName;

    SECURITY_DESCRIPTOR  * pSD;

    BOOL  fHasRemoteServerName;
    BOOL  fHasService;
    BOOL  fActivateAtStorage;

    LONG err;
    LONG errClsReg;
    LONG dwSaveErr;

};
//+-------------------------------------------------------------------------
//
//  Class:      CClassRegistryReader
//
//  Purpose:    Class to read registry.  Reads one cls entrie.
//
//  Interface:  ReadSingleClass -- read the given classes info into
//                                the CRegistryReader, ready to
//                                by added to gcllClassCache by the
//                                client calling NewClassData.
//
//              DoAdd -- Add the values previously read by ReadSingleClass
//                       to the gcllClassCache.
//
//  Notes:
//
//--------------------------------------------------------------------------

class CClassCacheList;
class CClassData;

class CClassRegistryReader
{
public:
                 CClassRegistryReader(); // open CLSID section of registry
                 ~CClassRegistryReader();

    LONG         ReadSingleClass(
                        REFCLSID rclsid,
                        BOOL CheckTreatAs,
                        BOOL CheckAutoConvert );

    CClassData * NewClassData(HRESULT &hr);

private:

    void InitInner();
    LONG ReadClassEntry(HKEY hKey, BOOL CheckTreatAs, BOOL CheckAutoConvert);

    FILETIME ftLastWrite;

    TCHAR awName[MAX_PATH];

    DWORD cName;
    DWORD iSubKey;
    LONG err;
    LONG errClsReg;
    LONG dwSaveErr;
    HKEY hClsReg;
#ifdef DCOM
    // NT 5.0 BOOL _fShared;
#endif // DCOM

    WCHAR awcsLocalServer[MAX_PATH];
    WCHAR awcsAppID[40];
    WCHAR *pwszLocalServer;
    LONG  lLocalServer;
    ULONG lAppID;
    WCHAR *pwszAppID;
#ifdef _CAIRO_
    WCHAR awcsActivateAtBits[4];
#endif
    WCHAR awcsDebug[4];

    GUID  guidClassID;
    LONG  lDebug;
    BOOL  fHasLocalServer;
    BOOL  f16Bit;
    CAppIDData  *   pAppIDData;
};

#include    <scm.h>
#ifdef DCOM
#define IFDCOM(x) x,
#else
#define IFDCOM(x)
#endif

#endif // __SCM_HXX__

#endif