-
Notifications
You must be signed in to change notification settings - Fork 319
/
ole32.go
531 lines (450 loc) · 13.3 KB
/
ole32.go
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
// Copyright 2010 The win Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build windows
package win
import (
"syscall"
"unsafe"
"golang.org/x/sys/windows"
)
const (
CLSCTX_INPROC_SERVER = 0x1
CLSCTX_INPROC_HANDLER = 0x2
CLSCTX_LOCAL_SERVER = 0x4
CLSCTX_INPROC_SERVER16 = 0x8
CLSCTX_REMOTE_SERVER = 0x10
CLSCTX_INPROC_HANDLER16 = 0x20
CLSCTX_RESERVED1 = 0x40
CLSCTX_RESERVED2 = 0x80
CLSCTX_RESERVED3 = 0x100
CLSCTX_RESERVED4 = 0x200
CLSCTX_NO_CODE_DOWNLOAD = 0x400
CLSCTX_RESERVED5 = 0x800
CLSCTX_NO_CUSTOM_MARSHAL = 0x1000
CLSCTX_ENABLE_CODE_DOWNLOAD = 0x2000
CLSCTX_NO_FAILURE_LOG = 0x4000
CLSCTX_DISABLE_AAA = 0x8000
CLSCTX_ENABLE_AAA = 0x10000
CLSCTX_FROM_DEFAULT_CONTEXT = 0x20000
CLSCTX_ACTIVATE_32_BIT_SERVER = 0x40000
CLSCTX_ACTIVATE_64_BIT_SERVER = 0x80000
CLSCTX_ENABLE_CLOAKING = 0x100000
CLSCTX_PS_DLL = 0x80000000
CLSCTX_INPROC = CLSCTX_INPROC_SERVER | CLSCTX_INPROC_HANDLER
CLSCTX_ALL = CLSCTX_INPROC_SERVER | CLSCTX_INPROC_HANDLER | CLSCTX_LOCAL_SERVER | CLSCTX_REMOTE_SERVER
CLSCTX_SERVER = CLSCTX_INPROC_SERVER | CLSCTX_LOCAL_SERVER | CLSCTX_REMOTE_SERVER
)
const (
COINIT_APARTMENTTHREADED = 0x2 // Apartment model
COINIT_MULTITHREADED = 0x0 // OLE calls objects on any thread.
COINIT_DISABLE_OLE1DDE = 0x4 // Don't use DDE for Ole1 support.
COINIT_SPEED_OVER_MEMORY = 0x8 // Trade memory for speed.
)
// Verbs for IOleObject.DoVerb
const (
OLEIVERB_PRIMARY = 0
OLEIVERB_SHOW = -1
OLEIVERB_OPEN = -2
OLEIVERB_HIDE = -3
OLEIVERB_UIACTIVATE = -4
OLEIVERB_INPLACEACTIVATE = -5
OLEIVERB_DISCARDUNDOSTATE = -6
)
// OLECLOSE constants
const (
OLECLOSE_SAVEIFDIRTY = 0
OLECLOSE_NOSAVE = 1
OLECLOSE_PROMPTSAVE = 2
)
type IID syscall.GUID
type CLSID syscall.GUID
type REFIID *IID
type REFCLSID *CLSID
var (
IID_IClassFactory = IID{0x00000001, 0x0000, 0x0000, [8]byte{0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46}}
IID_IConnectionPointContainer = IID{0xB196B284, 0xBAB4, 0x101A, [8]byte{0xB6, 0x9C, 0x00, 0xAA, 0x00, 0x34, 0x1D, 0x07}}
IID_IOleClientSite = IID{0x00000118, 0x0000, 0x0000, [8]byte{0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46}}
IID_IOleInPlaceObject = IID{0x00000113, 0x0000, 0x0000, [8]byte{0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46}}
IID_IOleInPlaceSite = IID{0x00000119, 0x0000, 0x0000, [8]byte{0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46}}
IID_IOleObject = IID{0x00000112, 0x0000, 0x0000, [8]byte{0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46}}
IID_IUnknown = IID{0x00000000, 0x0000, 0x0000, [8]byte{0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46}}
)
func EqualREFIID(a, b REFIID) bool {
if a == b {
return true
}
if a == nil || b == nil {
return false
}
if a.Data1 != b.Data1 || a.Data2 != b.Data2 || a.Data3 != b.Data3 {
return false
}
for i := 0; i < 8; i++ {
if a.Data4[i] != b.Data4[i] {
return false
}
}
return true
}
type IClassFactoryVtbl struct {
QueryInterface uintptr
AddRef uintptr
Release uintptr
CreateInstance uintptr
LockServer uintptr
}
type IClassFactory struct {
LpVtbl *IClassFactoryVtbl
}
func (cf *IClassFactory) Release() uint32 {
ret, _, _ := syscall.Syscall(cf.LpVtbl.Release, 1,
uintptr(unsafe.Pointer(cf)),
0,
0)
return uint32(ret)
}
func (cf *IClassFactory) CreateInstance(pUnkOuter *IUnknown, riid REFIID, ppvObject *unsafe.Pointer) HRESULT {
ret, _, _ := syscall.Syscall6(cf.LpVtbl.CreateInstance, 4,
uintptr(unsafe.Pointer(cf)),
uintptr(unsafe.Pointer(pUnkOuter)),
uintptr(unsafe.Pointer(riid)),
uintptr(unsafe.Pointer(ppvObject)),
0,
0)
return HRESULT(ret)
}
type IConnectionPointVtbl struct {
QueryInterface uintptr
AddRef uintptr
Release uintptr
GetConnectionInterface uintptr
GetConnectionPointContainer uintptr
Advise uintptr
Unadvise uintptr
EnumConnections uintptr
}
type IConnectionPoint struct {
LpVtbl *IConnectionPointVtbl
}
func (cp *IConnectionPoint) Release() uint32 {
ret, _, _ := syscall.Syscall(cp.LpVtbl.Release, 1,
uintptr(unsafe.Pointer(cp)),
0,
0)
return uint32(ret)
}
func (cp *IConnectionPoint) Advise(pUnkSink unsafe.Pointer, pdwCookie *uint32) HRESULT {
ret, _, _ := syscall.Syscall(cp.LpVtbl.Advise, 3,
uintptr(unsafe.Pointer(cp)),
uintptr(pUnkSink),
uintptr(unsafe.Pointer(pdwCookie)))
return HRESULT(ret)
}
type IConnectionPointContainerVtbl struct {
QueryInterface uintptr
AddRef uintptr
Release uintptr
EnumConnectionPoints uintptr
FindConnectionPoint uintptr
}
type IConnectionPointContainer struct {
LpVtbl *IConnectionPointContainerVtbl
}
func (cpc *IConnectionPointContainer) Release() uint32 {
ret, _, _ := syscall.Syscall(cpc.LpVtbl.Release, 1,
uintptr(unsafe.Pointer(cpc)),
0,
0)
return uint32(ret)
}
func (cpc *IConnectionPointContainer) FindConnectionPoint(riid REFIID, ppCP **IConnectionPoint) HRESULT {
ret, _, _ := syscall.Syscall(cpc.LpVtbl.FindConnectionPoint, 3,
uintptr(unsafe.Pointer(cpc)),
uintptr(unsafe.Pointer(riid)),
uintptr(unsafe.Pointer(ppCP)))
return HRESULT(ret)
}
type IOleClientSiteVtbl struct {
QueryInterface uintptr
AddRef uintptr
Release uintptr
SaveObject uintptr
GetMoniker uintptr
GetContainer uintptr
ShowObject uintptr
OnShowWindow uintptr
RequestNewObjectLayout uintptr
}
type IOleClientSite struct {
LpVtbl *IOleClientSiteVtbl
}
type IOleInPlaceFrameVtbl struct {
QueryInterface uintptr
AddRef uintptr
Release uintptr
GetWindow uintptr
ContextSensitiveHelp uintptr
GetBorder uintptr
RequestBorderSpace uintptr
SetBorderSpace uintptr
SetActiveObject uintptr
InsertMenus uintptr
SetMenu uintptr
RemoveMenus uintptr
SetStatusText uintptr
EnableModeless uintptr
TranslateAccelerator uintptr
}
type IOleInPlaceFrame struct {
LpVtbl *IOleInPlaceFrameVtbl
}
type IOleInPlaceObjectVtbl struct {
QueryInterface uintptr
AddRef uintptr
Release uintptr
GetWindow uintptr
ContextSensitiveHelp uintptr
InPlaceDeactivate uintptr
UIDeactivate uintptr
SetObjectRects uintptr
ReactivateAndUndo uintptr
}
type IOleInPlaceObject struct {
LpVtbl *IOleInPlaceObjectVtbl
}
func (obj *IOleInPlaceObject) Release() uint32 {
ret, _, _ := syscall.Syscall(obj.LpVtbl.Release, 1,
uintptr(unsafe.Pointer(obj)),
0,
0)
return uint32(ret)
}
func (obj *IOleInPlaceObject) SetObjectRects(lprcPosRect, lprcClipRect *RECT) HRESULT {
ret, _, _ := syscall.Syscall(obj.LpVtbl.SetObjectRects, 3,
uintptr(unsafe.Pointer(obj)),
uintptr(unsafe.Pointer(lprcPosRect)),
uintptr(unsafe.Pointer(lprcClipRect)))
return HRESULT(ret)
}
type IOleInPlaceSiteVtbl struct {
QueryInterface uintptr
AddRef uintptr
Release uintptr
GetWindow uintptr
ContextSensitiveHelp uintptr
CanInPlaceActivate uintptr
OnInPlaceActivate uintptr
OnUIActivate uintptr
GetWindowContext uintptr
Scroll uintptr
OnUIDeactivate uintptr
OnInPlaceDeactivate uintptr
DiscardUndoState uintptr
DeactivateAndUndo uintptr
OnPosRectChange uintptr
}
type IOleInPlaceSite struct {
LpVtbl *IOleInPlaceSiteVtbl
}
type IOleObjectVtbl struct {
QueryInterface uintptr
AddRef uintptr
Release uintptr
SetClientSite uintptr
GetClientSite uintptr
SetHostNames uintptr
Close uintptr
SetMoniker uintptr
GetMoniker uintptr
InitFromData uintptr
GetClipboardData uintptr
DoVerb uintptr
EnumVerbs uintptr
Update uintptr
IsUpToDate uintptr
GetUserClassID uintptr
GetUserType uintptr
SetExtent uintptr
GetExtent uintptr
Advise uintptr
Unadvise uintptr
EnumAdvise uintptr
GetMiscStatus uintptr
SetColorScheme uintptr
}
type IOleObject struct {
LpVtbl *IOleObjectVtbl
}
func (obj *IOleObject) QueryInterface(riid REFIID, ppvObject *unsafe.Pointer) HRESULT {
ret, _, _ := syscall.Syscall(obj.LpVtbl.QueryInterface, 3,
uintptr(unsafe.Pointer(obj)),
uintptr(unsafe.Pointer(riid)),
uintptr(unsafe.Pointer(ppvObject)))
return HRESULT(ret)
}
func (obj *IOleObject) Release() uint32 {
ret, _, _ := syscall.Syscall(obj.LpVtbl.Release, 1,
uintptr(unsafe.Pointer(obj)),
0,
0)
return uint32(ret)
}
func (obj *IOleObject) SetClientSite(pClientSite *IOleClientSite) HRESULT {
ret, _, _ := syscall.Syscall(obj.LpVtbl.SetClientSite, 2,
uintptr(unsafe.Pointer(obj)),
uintptr(unsafe.Pointer(pClientSite)),
0)
return HRESULT(ret)
}
func (obj *IOleObject) SetHostNames(szContainerApp, szContainerObj *uint16) HRESULT {
ret, _, _ := syscall.Syscall(obj.LpVtbl.SetHostNames, 3,
uintptr(unsafe.Pointer(obj)),
uintptr(unsafe.Pointer(szContainerApp)),
uintptr(unsafe.Pointer(szContainerObj)))
return HRESULT(ret)
}
func (obj *IOleObject) Close(dwSaveOption uint32) HRESULT {
ret, _, _ := syscall.Syscall(obj.LpVtbl.Close, 2,
uintptr(unsafe.Pointer(obj)),
uintptr(dwSaveOption),
0)
return HRESULT(ret)
}
func (obj *IOleObject) DoVerb(iVerb int32, lpmsg *MSG, pActiveSite *IOleClientSite, lindex int32, hwndParent HWND, lprcPosRect *RECT) HRESULT {
ret, _, _ := syscall.Syscall9(obj.LpVtbl.DoVerb, 7,
uintptr(unsafe.Pointer(obj)),
uintptr(iVerb),
uintptr(unsafe.Pointer(lpmsg)),
uintptr(unsafe.Pointer(pActiveSite)),
uintptr(lindex),
uintptr(hwndParent),
uintptr(unsafe.Pointer(lprcPosRect)),
0,
0)
return HRESULT(ret)
}
type IUnknownVtbl struct {
QueryInterface uintptr
AddRef uintptr
Release uintptr
}
type IUnknown struct {
LpVtbl *IUnknownVtbl
}
type OLEINPLACEFRAMEINFO struct {
Cb uint32
FMDIApp BOOL
HwndFrame HWND
Haccel HACCEL
CAccelEntries uint32
}
type COAUTHIDENTITY struct {
User *uint16
UserLength uint32
Domain *uint16
DomainLength uint32
Password *uint16
PasswordLength uint32
Flags uint32
}
type COAUTHINFO struct {
dwAuthnSvc uint32
dwAuthzSvc uint32
pwszServerPrincName *uint16
dwAuthnLevel uint32
dwImpersonationLevel uint32
pAuthIdentityData *COAUTHIDENTITY
dwCapabilities uint32
}
type COSERVERINFO struct {
dwReserved1 uint32
pwszName *uint16
pAuthInfo *COAUTHINFO
dwReserved2 uint32
}
var (
// Library
libole32 *windows.LazyDLL
// Functions
coCreateInstance *windows.LazyProc
coGetClassObject *windows.LazyProc
coInitializeEx *windows.LazyProc
coTaskMemFree *windows.LazyProc
coUninitialize *windows.LazyProc
oleInitialize *windows.LazyProc
oleSetContainedObject *windows.LazyProc
oleUninitialize *windows.LazyProc
)
func init() {
// Library
libole32 = windows.NewLazySystemDLL("ole32.dll")
// Functions
coCreateInstance = libole32.NewProc("CoCreateInstance")
coGetClassObject = libole32.NewProc("CoGetClassObject")
coInitializeEx = libole32.NewProc("CoInitializeEx")
coTaskMemFree = libole32.NewProc("CoTaskMemFree")
coUninitialize = libole32.NewProc("CoUninitialize")
oleInitialize = libole32.NewProc("OleInitialize")
oleSetContainedObject = libole32.NewProc("OleSetContainedObject")
oleUninitialize = libole32.NewProc("OleUninitialize")
}
func CoCreateInstance(rclsid REFCLSID, pUnkOuter *IUnknown, dwClsContext uint32, riid REFIID, ppv *unsafe.Pointer) HRESULT {
ret, _, _ := syscall.Syscall6(coCreateInstance.Addr(), 5,
uintptr(unsafe.Pointer(rclsid)),
uintptr(unsafe.Pointer(pUnkOuter)),
uintptr(dwClsContext),
uintptr(unsafe.Pointer(riid)),
uintptr(unsafe.Pointer(ppv)),
0)
return HRESULT(ret)
}
func CoGetClassObject(rclsid REFCLSID, dwClsContext uint32, pServerInfo *COSERVERINFO, riid REFIID, ppv *unsafe.Pointer) HRESULT {
ret, _, _ := syscall.Syscall6(coGetClassObject.Addr(), 5,
uintptr(unsafe.Pointer(rclsid)),
uintptr(dwClsContext),
uintptr(unsafe.Pointer(pServerInfo)),
uintptr(unsafe.Pointer(riid)),
uintptr(unsafe.Pointer(ppv)),
0)
return HRESULT(ret)
}
func CoInitializeEx(reserved unsafe.Pointer, coInit uint32) HRESULT {
ret, _, _ := syscall.Syscall(coInitializeEx.Addr(), 2,
uintptr(reserved),
uintptr(coInit),
0)
return HRESULT(ret)
}
func CoUninitialize() {
syscall.Syscall(coUninitialize.Addr(), 0,
0,
0,
0)
}
func CoTaskMemFree(pv uintptr) {
syscall.Syscall(coTaskMemFree.Addr(), 1,
pv,
0,
0)
}
func OleInitialize() HRESULT {
ret, _, _ := syscall.Syscall(oleInitialize.Addr(), 1, // WTF, why does 0 not work here?
0,
0,
0)
return HRESULT(ret)
}
func OleSetContainedObject(pUnknown *IUnknown, fContained bool) HRESULT {
ret, _, _ := syscall.Syscall(oleSetContainedObject.Addr(), 2,
uintptr(unsafe.Pointer(pUnknown)),
uintptr(BoolToBOOL(fContained)),
0)
return HRESULT(ret)
}
func OleUninitialize() {
syscall.Syscall(oleUninitialize.Addr(), 0,
0,
0,
0)
}