2 * Copyright 2012 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
23 #include "urlmon_main.h"
29 #include "wine/debug.h"
31 WINE_DEFAULT_DEBUG_CHANNEL(urlmon
);
33 static const WCHAR ctxW
[] = {'c','t','x',0};
34 static const WCHAR cab_extW
[] = {'.','c','a','b',0};
35 static const WCHAR infW
[] = {'i','n','f',0};
36 static const WCHAR dllW
[] = {'d','l','l',0};
37 static const WCHAR ocxW
[] = {'o','c','x',0};
47 IBindStatusCallback
*callback
;
51 const WCHAR
*cache_file
;
53 const WCHAR
*file_name
;
54 enum install_type install_type
;
60 static void release_install_ctx(install_ctx_t
*ctx
)
63 IUri_Release(ctx
->uri
);
65 IBindStatusCallback_Release(ctx
->callback
);
66 heap_free(ctx
->install_file
);
70 static inline BOOL
file_exists(const WCHAR
*file_name
)
72 return GetFileAttributesW(file_name
) != INVALID_FILE_ATTRIBUTES
;
75 static HRESULT
extract_cab_file(install_ctx_t
*ctx
)
77 size_t path_len
, file_len
;
81 hres
= ExtractFilesW(ctx
->cache_file
, ctx
->tmp_dir
, 0, NULL
, NULL
, 0);
83 WARN("ExtractFilesW failed: %08x\n", hres
);
87 path_len
= strlenW(ctx
->tmp_dir
);
88 file_len
= strlenW(ctx
->file_name
);
89 ctx
->install_file
= heap_alloc((path_len
+file_len
+2)*sizeof(WCHAR
));
90 if(!ctx
->install_file
)
93 memcpy(ctx
->install_file
, ctx
->tmp_dir
, path_len
*sizeof(WCHAR
));
94 ctx
->install_file
[path_len
] = '\\';
95 memcpy(ctx
->install_file
+path_len
+1, ctx
->file_name
, (file_len
+1)*sizeof(WCHAR
));
97 /* NOTE: Assume that file_name contains ".cab" extension */
98 ptr
= ctx
->install_file
+path_len
+1+file_len
-3;
100 memcpy(ptr
, infW
, sizeof(infW
));
101 if(file_exists(ctx
->install_file
)) {
102 ctx
->install_type
= INSTALL_INF
;
106 memcpy(ptr
, dllW
, sizeof(dllW
));
107 if(file_exists(ctx
->install_file
)) {
108 ctx
->install_type
= INSTALL_DLL
;
112 memcpy(ptr
, ocxW
, sizeof(ocxW
));
113 if(file_exists(ctx
->install_file
)) {
114 ctx
->install_type
= INSTALL_DLL
;
118 FIXME("No known install file\n");
122 static HRESULT
setup_dll(install_ctx_t
*ctx
)
127 HRESULT (WINAPI
*reg_func
)(void);
129 module
= LoadLibraryW(ctx
->install_file
);
133 reg_func
= (void*)GetProcAddress(module
, "DllRegisterServer");
137 WARN("no DllRegisterServer function\n");
145 static void expand_command(install_ctx_t
*ctx
, const WCHAR
*cmd
, WCHAR
*buf
, size_t *size
)
147 const WCHAR
*ptr
= cmd
, *prev_ptr
= cmd
;
148 size_t len
= 0, len2
;
150 static const WCHAR expand_dirW
[] = {'%','E','X','T','R','A','C','T','_','D','I','R','%'};
152 while((ptr
= strchrW(ptr
, '%'))) {
154 memcpy(buf
+len
, prev_ptr
, ptr
-prev_ptr
);
157 if(!strncmpiW(ptr
, expand_dirW
, sizeof(expand_dirW
)/sizeof(WCHAR
))) {
158 len2
= strlenW(ctx
->tmp_dir
);
160 memcpy(buf
+len
, ctx
->tmp_dir
, len2
*sizeof(WCHAR
));
162 ptr
+= sizeof(expand_dirW
)/sizeof(WCHAR
);
164 FIXME("Can't expand %s\n", debugstr_w(ptr
));
175 strcpyW(buf
+len
, prev_ptr
);
176 *size
= len
+ strlenW(prev_ptr
) + 1;
179 static HRESULT
process_hook_section(install_ctx_t
*ctx
, const WCHAR
*sect_name
)
181 WCHAR buf
[2048], val
[2*MAX_PATH
];
186 static const WCHAR runW
[] = {'r','u','n',0};
188 len
= GetPrivateProfileStringW(sect_name
, NULL
, NULL
, buf
, sizeof(buf
)/sizeof(*buf
), ctx
->install_file
);
192 for(key
= buf
; *key
; key
+= strlenW(key
)+1) {
193 if(!strcmpiW(key
, runW
)) {
197 len
= GetPrivateProfileStringW(sect_name
, runW
, NULL
, val
, sizeof(val
)/sizeof(*val
), ctx
->install_file
);
199 TRACE("Run %s\n", debugstr_w(val
));
201 expand_command(ctx
, val
, NULL
, &size
);
203 cmd
= heap_alloc(size
*sizeof(WCHAR
));
207 expand_command(ctx
, val
, cmd
, &size
);
208 hres
= RunSetupCommandW(ctx
->hwnd
, cmd
, NULL
, ctx
->tmp_dir
, NULL
, NULL
, 0, NULL
);
213 FIXME("Unsupported hook %s\n", debugstr_w(key
));
221 static HRESULT
install_inf_file(install_ctx_t
*ctx
)
223 WCHAR buf
[2048], sect_name
[128];
224 BOOL default_install
= TRUE
;
229 static const WCHAR setup_hooksW
[] = {'S','e','t','u','p',' ','H','o','o','k','s',0};
230 static const WCHAR add_codeW
[] = {'A','d','d','.','C','o','d','e',0};
232 len
= GetPrivateProfileStringW(setup_hooksW
, NULL
, NULL
, buf
, sizeof(buf
)/sizeof(*buf
), ctx
->install_file
);
234 default_install
= FALSE
;
236 for(key
= buf
; *key
; key
+= strlenW(key
)+1) {
237 TRACE("[Setup Hooks] key: %s\n", debugstr_w(key
));
239 len
= GetPrivateProfileStringW(setup_hooksW
, key
, NULL
, sect_name
, sizeof(sect_name
)/sizeof(*sect_name
),
242 WARN("Could not get key value\n");
246 hres
= process_hook_section(ctx
, sect_name
);
252 len
= GetPrivateProfileStringW(add_codeW
, NULL
, NULL
, buf
, sizeof(buf
)/sizeof(*buf
), ctx
->install_file
);
254 default_install
= FALSE
;
256 for(key
= buf
; *key
; key
+= strlenW(key
)+1) {
257 TRACE("[Add.Code] key: %s\n", debugstr_w(key
));
259 len
= GetPrivateProfileStringW(add_codeW
, key
, NULL
, sect_name
, sizeof(sect_name
)/sizeof(*sect_name
),
262 WARN("Could not get key value\n");
266 hres
= RunSetupCommandW(ctx
->hwnd
, ctx
->install_file
, sect_name
,
267 ctx
->tmp_dir
, NULL
, NULL
, RSC_FLAG_INF
, NULL
);
269 WARN("RunSetupCommandW failed: %08x\n", hres
);
275 if(default_install
) {
276 hres
= RunSetupCommandW(ctx
->hwnd
, ctx
->install_file
, NULL
, ctx
->tmp_dir
, NULL
, NULL
, RSC_FLAG_INF
, NULL
);
278 WARN("RunSetupCommandW failed: %08x\n", hres
);
286 static HRESULT
install_cab_file(install_ctx_t
*ctx
)
288 WCHAR tmp_path
[MAX_PATH
], tmp_dir
[MAX_PATH
];
289 BOOL res
= FALSE
, leave_temp
= FALSE
;
293 GetTempPathW(sizeof(tmp_path
)/sizeof(WCHAR
), tmp_path
);
295 for(i
=0; !res
&& i
< 100; i
++) {
296 GetTempFileNameW(tmp_path
, NULL
, GetTickCount() + i
*17037, tmp_dir
);
297 res
= CreateDirectoryW(tmp_dir
, NULL
);
302 ctx
->tmp_dir
= tmp_dir
;
304 TRACE("Using temporary directory %s\n", debugstr_w(tmp_dir
));
306 hres
= extract_cab_file(ctx
);
307 if(SUCCEEDED(hres
)) {
309 IBindStatusCallback_OnProgress(ctx
->callback
, 0, 0, BINDSTATUS_INSTALLINGCOMPONENTS
, ctx
->install_file
);
311 switch(ctx
->install_type
) {
313 hres
= install_inf_file(ctx
);
316 FIXME("Installing DLL, registering in temporary location\n");
317 hres
= setup_dll(ctx
);
327 RemoveDirectoryW(ctx
->tmp_dir
);
331 static void update_counter(install_ctx_t
*ctx
, HWND hwnd
)
335 if(--ctx
->counter
<= 0) {
338 KillTimer(hwnd
, ctx
->timer
);
339 LoadStringW(urlmon_instance
, IDS_AXINSTALL_INSTALL
, text
, sizeof(text
)/sizeof(WCHAR
));
341 button_hwnd
= GetDlgItem(hwnd
, ID_AXINSTALL_INSTALL_BTN
);
342 EnableWindow(button_hwnd
, TRUE
);
345 LoadStringW(urlmon_instance
, IDS_AXINSTALL_INSTALLN
, buf
, sizeof(buf
)/sizeof(WCHAR
));
346 sprintfW(text
, buf
, ctx
->counter
);
349 SetDlgItemTextW(hwnd
, ID_AXINSTALL_INSTALL_BTN
, text
);
352 static BOOL
init_warning_dialog(HWND hwnd
, install_ctx_t
*ctx
)
357 if(!SetPropW(hwnd
, ctxW
, ctx
))
360 hres
= IUri_GetDisplayUri(ctx
->uri
, &display_uri
);
364 SetDlgItemTextW(hwnd
, ID_AXINSTALL_LOCATION
, display_uri
);
365 SysFreeString(display_uri
);
367 SendDlgItemMessageW(hwnd
, ID_AXINSTALL_ICON
, STM_SETICON
,
368 (WPARAM
)LoadIconW(0, (const WCHAR
*)OIC_WARNING
), 0);
371 update_counter(ctx
, hwnd
);
372 ctx
->timer
= SetTimer(hwnd
, 1, 1000, NULL
);
376 static INT_PTR WINAPI
warning_proc(HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
379 case WM_INITDIALOG
: {
380 if(!init_warning_dialog(hwnd
, (install_ctx_t
*)lparam
))
386 case ID_AXINSTALL_INSTALL_BTN
: {
387 install_ctx_t
*ctx
= GetPropW(hwnd
, ctxW
);
398 update_counter(GetPropW(hwnd
, ctxW
), hwnd
);
405 static BOOL
install_warning(install_ctx_t
*ctx
)
407 IWindowForBindingUI
*window_iface
;
408 HWND parent_hwnd
= NULL
;
412 FIXME("no callback\n");
416 hres
= IBindStatusCallback_QueryInterface(ctx
->callback
, &IID_IWindowForBindingUI
, (void**)&window_iface
);
420 hres
= IWindowForBindingUI_GetWindow(window_iface
, &IID_ICodeInstall
, &ctx
->hwnd
);
421 IWindowForBindingUI_Release(window_iface
);
426 DialogBoxParamW(urlmon_instance
, MAKEINTRESOURCEW(ID_AXINSTALL_WARNING_DLG
), parent_hwnd
, warning_proc
, (LPARAM
)ctx
);
430 static HRESULT
install_file(install_ctx_t
*ctx
, const WCHAR
*cache_file
)
435 TRACE("%s\n", debugstr_w(cache_file
));
437 ctx
->cache_file
= cache_file
;
439 if(!install_warning(ctx
)) {
440 TRACE("Installation cancelled\n");
444 hres
= IUri_GetPath(ctx
->uri
, &path
);
445 if(SUCCEEDED(hres
)) {
446 const WCHAR
*ptr
, *ptr2
, *ext
;
448 ptr
= strrchrW(path
, '/');
454 ptr2
= strrchrW(ptr
, '\\');
458 ctx
->file_name
= ptr
;
459 ext
= strrchrW(ptr
, '.');
463 if(!strcmpiW(ext
, cab_extW
)) {
464 hres
= install_cab_file(ctx
);
466 FIXME("Unsupported extension %s\n", debugstr_w(ext
));
475 static void failure_msgbox(install_ctx_t
*ctx
, HRESULT hres
)
477 WCHAR buf
[1024], fmt
[1024];
479 LoadStringW(urlmon_instance
, IDS_AXINSTALL_FAILURE
, fmt
, sizeof(fmt
)/sizeof(WCHAR
));
480 sprintfW(buf
, fmt
, hres
);
481 MessageBoxW(ctx
->hwnd
, buf
, NULL
, MB_OK
);
484 static HRESULT
distunit_on_stop(void *ctx
, const WCHAR
*cache_file
, HRESULT hresult
, const WCHAR
*error_str
)
486 install_ctx_t
*install_ctx
= ctx
;
488 TRACE("(%p %s %08x %s)\n", ctx
, debugstr_w(cache_file
), hresult
, debugstr_w(error_str
));
490 if(hresult
== S_OK
) {
491 hresult
= install_file(install_ctx
, cache_file
);
493 failure_msgbox(ctx
, hresult
);
496 if(install_ctx
->callback
)
497 IBindStatusCallback_OnStopBinding(install_ctx
->callback
, hresult
, error_str
);
499 if(install_ctx
->release_on_stop
)
500 release_install_ctx(install_ctx
);
504 /***********************************************************************
505 * AsyncInstallDistributionUnit (URLMON.@)
507 HRESULT WINAPI
AsyncInstallDistributionUnit(const WCHAR
*szDistUnit
, const WCHAR
*szTYPE
, const WCHAR
*szExt
,
508 DWORD dwFileVersionMS
, DWORD dwFileVersionLS
, const WCHAR
*szURL
, IBindCtx
*pbc
, void *pvReserved
, DWORD flags
)
513 TRACE("(%s %s %s %x %x %s %p %p %x)\n", debugstr_w(szDistUnit
), debugstr_w(szTYPE
), debugstr_w(szExt
),
514 dwFileVersionMS
, dwFileVersionLS
, debugstr_w(szURL
), pbc
, pvReserved
, flags
);
516 if(szDistUnit
|| szTYPE
|| szExt
)
517 FIXME("Unsupported arguments\n");
519 ctx
= heap_alloc_zero(sizeof(*ctx
));
521 return E_OUTOFMEMORY
;
523 hres
= CreateUri(szURL
, 0, 0, &ctx
->uri
);
526 return E_OUTOFMEMORY
;
529 ctx
->callback
= bsc_from_bctx(pbc
);
531 hres
= download_to_cache(ctx
->uri
, distunit_on_stop
, ctx
, ctx
->callback
);
532 if(hres
== MK_S_ASYNCHRONOUS
)
533 ctx
->release_on_stop
= TRUE
;
535 release_install_ctx(ctx
);