2 * Copyright 2011 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 #include "wine/debug.h"
32 #include "mshtml_private.h"
34 WINE_DEFAULT_DEBUG_CHANNEL(mshtml
);
37 * This object wraps any unrecognized interface overriding its IUnknown methods, allowing
38 * us to return external interface from our QI implementation preserving COM rules.
39 * This can't be done right and it seems to be broken by design.
42 IUnknown IUnknown_iface
;
48 static inline iface_wrapper_t
*impl_from_IUnknown(IUnknown
*iface
)
50 return CONTAINING_RECORD(iface
, iface_wrapper_t
, IUnknown_iface
);
53 static HRESULT WINAPI
wrapper_QueryInterface(IUnknown
*iface
, REFIID riid
, void **ppv
)
55 iface_wrapper_t
*This
= impl_from_IUnknown(iface
);
57 TRACE("(%p)->(%s %p)\n", This
, debugstr_mshtml_guid(riid
), ppv
);
59 return IUnknown_QueryInterface(This
->ref_unk
, riid
, ppv
);
62 static HRESULT WINAPI
wrapper_AddRef(IUnknown
*iface
)
64 iface_wrapper_t
*This
= impl_from_IUnknown(iface
);
65 LONG ref
= InterlockedIncrement(&This
->ref
);
67 TRACE("(%p) ref=%d\n", This
, ref
);
72 static HRESULT WINAPI
wrapper_Release(IUnknown
*iface
)
74 iface_wrapper_t
*This
= impl_from_IUnknown(iface
);
75 LONG ref
= InterlockedDecrement(&This
->ref
);
77 TRACE("(%p) ref=%d\n", This
, ref
);
80 IUnknown_Release(This
->iface
);
81 IUnknown_Release(This
->ref_unk
);
90 #define DEFINE_WRAPPER_FUNC(n, off, x) \
91 HRESULT wrapper_func_##n(IUnknown*); \
92 __ASM_GLOBAL_FUNC(wrapper_func_##n, \
93 "movl 4(%esp), %eax\n\t" \
94 "movl 4(%eax), %eax\n\t" \
95 "movl %eax, 4(%esp)\n\t" \
96 "movl 0(%eax), %eax\n\t" \
97 "jmp *" #off "(%eax)\n\t")
99 #elif defined(__x86_64__)
101 #define DEFINE_WRAPPER_FUNC(n, x, off) \
102 HRESULT WINAPI wrapper_func_##n(IUnknown*); \
103 __ASM_GLOBAL_FUNC(wrapper_func_##n, \
104 "movq 8(%rcx), %rcx\n\t" \
105 "movq 0(%rcx), %rax\n\t" \
106 "jmp *" #off "(%rax)\n\t")
110 #define DEFINE_WRAPPER_FUNC(n, x, off) \
111 static HRESULT WINAPI wrapper_func_##n(IUnknown *iface) { \
112 ERR("Not implemented for this architecture\n"); \
118 /* DEFINE_WRAPPER_FUNC takes 3 arguments: index in vtbl, 32-bit offset in vtbl and 64-bit offset in vtbl */
119 DEFINE_WRAPPER_FUNC(3, 12, 24)
120 DEFINE_WRAPPER_FUNC(4, 16, 32)
121 DEFINE_WRAPPER_FUNC(5, 20, 40)
122 DEFINE_WRAPPER_FUNC(6, 24, 48)
123 DEFINE_WRAPPER_FUNC(7, 28, 56)
124 DEFINE_WRAPPER_FUNC(8, 32, 64)
125 DEFINE_WRAPPER_FUNC(9, 36, 72)
126 DEFINE_WRAPPER_FUNC(10, 40, 80)
127 DEFINE_WRAPPER_FUNC(11, 44, 88)
128 DEFINE_WRAPPER_FUNC(12, 48, 96)
129 DEFINE_WRAPPER_FUNC(13, 52, 104)
130 DEFINE_WRAPPER_FUNC(14, 56, 112)
131 DEFINE_WRAPPER_FUNC(15, 60, 120)
132 DEFINE_WRAPPER_FUNC(16, 64, 128)
133 DEFINE_WRAPPER_FUNC(17, 68, 136)
134 DEFINE_WRAPPER_FUNC(18, 72, 144)
135 DEFINE_WRAPPER_FUNC(19, 76, 152)
136 DEFINE_WRAPPER_FUNC(20, 80, 160)
137 DEFINE_WRAPPER_FUNC(21, 84, 168)
138 DEFINE_WRAPPER_FUNC(22, 88, 176)
139 DEFINE_WRAPPER_FUNC(23, 92, 184)
140 DEFINE_WRAPPER_FUNC(24, 96, 192)
141 DEFINE_WRAPPER_FUNC(25, 100, 200)
142 DEFINE_WRAPPER_FUNC(26, 104, 208)
143 DEFINE_WRAPPER_FUNC(27, 108, 216)
144 DEFINE_WRAPPER_FUNC(28, 112, 224)
145 DEFINE_WRAPPER_FUNC(29, 116, 232)
146 DEFINE_WRAPPER_FUNC(30, 120, 240)
147 DEFINE_WRAPPER_FUNC(31, 124, 248)
148 DEFINE_WRAPPER_FUNC(32, 128, 256)
149 DEFINE_WRAPPER_FUNC(33, 132, 264)
150 DEFINE_WRAPPER_FUNC(34, 136, 272)
151 DEFINE_WRAPPER_FUNC(35, 140, 280)
152 DEFINE_WRAPPER_FUNC(36, 144, 288)
153 DEFINE_WRAPPER_FUNC(37, 148, 296)
154 DEFINE_WRAPPER_FUNC(38, 152, 304)
155 DEFINE_WRAPPER_FUNC(39, 156, 312)
156 DEFINE_WRAPPER_FUNC(40, 160, 320)
157 DEFINE_WRAPPER_FUNC(41, 164, 328)
158 DEFINE_WRAPPER_FUNC(42, 168, 336)
159 DEFINE_WRAPPER_FUNC(43, 172, 344)
160 DEFINE_WRAPPER_FUNC(44, 176, 352)
161 DEFINE_WRAPPER_FUNC(45, 180, 360)
162 DEFINE_WRAPPER_FUNC(46, 184, 368)
163 DEFINE_WRAPPER_FUNC(47, 188, 376)
164 DEFINE_WRAPPER_FUNC(48, 192, 384)
165 DEFINE_WRAPPER_FUNC(49, 196, 392)
166 DEFINE_WRAPPER_FUNC(50, 200, 400)
167 DEFINE_WRAPPER_FUNC(51, 204, 408)
168 DEFINE_WRAPPER_FUNC(52, 208, 416)
169 DEFINE_WRAPPER_FUNC(53, 212, 424)
170 DEFINE_WRAPPER_FUNC(54, 216, 432)
171 DEFINE_WRAPPER_FUNC(55, 220, 440)
172 DEFINE_WRAPPER_FUNC(56, 224, 448)
173 DEFINE_WRAPPER_FUNC(57, 228, 456)
174 DEFINE_WRAPPER_FUNC(58, 232, 464)
175 DEFINE_WRAPPER_FUNC(59, 236, 472)
176 DEFINE_WRAPPER_FUNC(60, 240, 480)
177 DEFINE_WRAPPER_FUNC(61, 244, 488)
178 DEFINE_WRAPPER_FUNC(62, 248, 496)
179 DEFINE_WRAPPER_FUNC(63, 252, 504)
180 DEFINE_WRAPPER_FUNC(64, 256, 512)
181 DEFINE_WRAPPER_FUNC(65, 260, 520)
182 DEFINE_WRAPPER_FUNC(66, 264, 528)
183 DEFINE_WRAPPER_FUNC(67, 268, 536)
184 DEFINE_WRAPPER_FUNC(68, 272, 544)
185 DEFINE_WRAPPER_FUNC(69, 276, 552)
186 DEFINE_WRAPPER_FUNC(70, 280, 560)
187 DEFINE_WRAPPER_FUNC(71, 284, 568)
188 DEFINE_WRAPPER_FUNC(72, 288, 576)
189 DEFINE_WRAPPER_FUNC(73, 292, 584)
190 DEFINE_WRAPPER_FUNC(74, 296, 592)
191 DEFINE_WRAPPER_FUNC(75, 300, 600)
192 DEFINE_WRAPPER_FUNC(76, 304, 608)
193 DEFINE_WRAPPER_FUNC(77, 308, 616)
194 DEFINE_WRAPPER_FUNC(78, 312, 624)
195 DEFINE_WRAPPER_FUNC(79, 316, 632)
196 DEFINE_WRAPPER_FUNC(80, 320, 640)
197 DEFINE_WRAPPER_FUNC(81, 324, 648)
198 DEFINE_WRAPPER_FUNC(82, 328, 656)
199 DEFINE_WRAPPER_FUNC(83, 332, 664)
200 DEFINE_WRAPPER_FUNC(84, 336, 672)
201 DEFINE_WRAPPER_FUNC(85, 340, 680)
202 DEFINE_WRAPPER_FUNC(86, 344, 688)
203 DEFINE_WRAPPER_FUNC(87, 348, 696)
204 DEFINE_WRAPPER_FUNC(88, 352, 704)
205 DEFINE_WRAPPER_FUNC(89, 356, 712)
206 DEFINE_WRAPPER_FUNC(90, 360, 720)
207 DEFINE_WRAPPER_FUNC(91, 364, 728)
208 DEFINE_WRAPPER_FUNC(92, 368, 736)
209 DEFINE_WRAPPER_FUNC(93, 372, 744)
210 DEFINE_WRAPPER_FUNC(94, 376, 752)
211 DEFINE_WRAPPER_FUNC(95, 380, 760)
212 DEFINE_WRAPPER_FUNC(96, 384, 768)
213 DEFINE_WRAPPER_FUNC(97, 388, 776)
214 DEFINE_WRAPPER_FUNC(98, 392, 784)
215 DEFINE_WRAPPER_FUNC(99, 396, 792)
217 /* The size was found by testing when calls start crashing. It looks like MS wraps up to 100 functions. */
218 static const void *wrapper_vtbl
[] = {
219 wrapper_QueryInterface
,
321 HRESULT
wrap_iface(IUnknown
*iface
, IUnknown
*ref_unk
, IUnknown
**ret
)
323 iface_wrapper_t
*wrapper
;
325 wrapper
= heap_alloc(sizeof(*wrapper
));
327 return E_OUTOFMEMORY
;
329 wrapper
->IUnknown_iface
.lpVtbl
= (const IUnknownVtbl
*)wrapper_vtbl
;
332 IUnknown_AddRef(iface
);
333 wrapper
->iface
= iface
;
335 IUnknown_AddRef(ref_unk
);
336 wrapper
->ref_unk
= ref_unk
;
338 *ret
= &wrapper
->IUnknown_iface
;