Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gabriel Ivăncescu
wine
Commits
d9d700f3
Commit
d9d700f3
authored
2 years ago
by
Hans Leidekker
Committed by
Alexandre Julliard
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
msi: Perform late initialization of the assembly caches.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=51345
parent
2c450fd6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/msi/assembly.c
+22
-20
22 additions, 20 deletions
dlls/msi/assembly.c
dlls/msi/msipriv.h
+0
-1
0 additions, 1 deletion
dlls/msi/msipriv.h
dlls/msi/package.c
+0
-7
0 additions, 7 deletions
dlls/msi/package.c
with
22 additions
and
28 deletions
dlls/msi/assembly.c
+
22
−
20
View file @
d9d700f3
...
...
@@ -30,55 +30,52 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
msi
);
static
BOOL
load_fusion_dlls
(
MSIPACKAGE
*
package
)
static
void
load_fusion_dlls
(
MSIPACKAGE
*
package
)
{
HRESULT
(
WINAPI
*
pLoadLibraryShim
)(
const
WCHAR
*
,
const
WCHAR
*
,
void
*
,
HMODULE
*
);
WCHAR
path
[
MAX_PATH
];
DWORD
len
=
GetSystemDirectoryW
(
path
,
MAX_PATH
);
lstrcpyW
(
path
+
len
,
L"
\\
mscoree.dll"
);
if
(
package
->
hmscoree
||
!
(
package
->
hmscoree
=
LoadLibraryW
(
path
)))
return
TRUE
;
if
(
!
package
->
hmscoree
&&
!
(
package
->
hmscoree
=
LoadLibraryW
(
path
)))
return
;
if
(
!
(
pLoadLibraryShim
=
(
void
*
)
GetProcAddress
(
package
->
hmscoree
,
"LoadLibraryShim"
)))
{
FreeLibrary
(
package
->
hmscoree
);
package
->
hmscoree
=
NULL
;
return
TRUE
;
return
;
}
pLoadLibraryShim
(
L"fusion.dll"
,
L"v1.0.3705"
,
NULL
,
&
package
->
hfusion10
);
pLoadLibraryShim
(
L"fusion.dll"
,
L"v1.1.4322"
,
NULL
,
&
package
->
hfusion11
);
pLoadLibraryShim
(
L"fusion.dll"
,
L"v2.0.50727"
,
NULL
,
&
package
->
hfusion20
);
pLoadLibraryShim
(
L"fusion.dll"
,
L"v4.0.30319"
,
NULL
,
&
package
->
hfusion40
);
return
TRUE
;
if
(
!
package
->
hfusion10
)
pLoadLibraryShim
(
L"fusion.dll"
,
L"v1.0.3705"
,
NULL
,
&
package
->
hfusion10
);
if
(
!
package
->
hfusion11
)
pLoadLibraryShim
(
L"fusion.dll"
,
L"v1.1.4322"
,
NULL
,
&
package
->
hfusion11
);
if
(
!
package
->
hfusion20
)
pLoadLibraryShim
(
L"fusion.dll"
,
L"v2.0.50727"
,
NULL
,
&
package
->
hfusion20
);
if
(
!
package
->
hfusion40
)
pLoadLibraryShim
(
L"fusion.dll"
,
L"v4.0.30319"
,
NULL
,
&
package
->
hfusion40
);
}
BOOL
msi_
init_assembly_caches
(
MSIPACKAGE
*
package
)
static
BOOL
init_assembly_caches
(
MSIPACKAGE
*
package
)
{
HRESULT
(
WINAPI
*
pCreateAssemblyCache
)(
IAssemblyCache
**
,
DWORD
);
if
(
package
->
cache_sxs
)
return
TRUE
;
if
(
CreateAssemblyCache
(
&
package
->
cache_sxs
,
0
)
!=
S_OK
)
return
FALSE
;
if
(
!
package
->
cache_sxs
&&
CreateAssemblyCache
(
&
package
->
cache_sxs
,
0
)
!=
S_OK
)
return
FALSE
;
if
(
!
load_fusion_dlls
(
package
)
)
return
FALSE
;
load_fusion_dlls
(
package
);
package
->
pGetFileVersion
=
(
void
*
)
GetProcAddress
(
package
->
hmscoree
,
"GetFileVersion"
);
/* missing from v1.0.3705 */
if
(
package
->
hfusion10
)
if
(
package
->
hfusion10
&&
!
package
->
cache_net
[
CLR_VERSION_V10
]
)
{
pCreateAssemblyCache
=
(
void
*
)
GetProcAddress
(
package
->
hfusion10
,
"CreateAssemblyCache"
);
pCreateAssemblyCache
(
&
package
->
cache_net
[
CLR_VERSION_V10
],
0
);
}
if
(
package
->
hfusion11
)
if
(
package
->
hfusion11
&&
!
package
->
cache_net
[
CLR_VERSION_V11
]
)
{
pCreateAssemblyCache
=
(
void
*
)
GetProcAddress
(
package
->
hfusion11
,
"CreateAssemblyCache"
);
pCreateAssemblyCache
(
&
package
->
cache_net
[
CLR_VERSION_V11
],
0
);
}
if
(
package
->
hfusion20
)
if
(
package
->
hfusion20
&&
!
package
->
cache_net
[
CLR_VERSION_V20
]
)
{
pCreateAssemblyCache
=
(
void
*
)
GetProcAddress
(
package
->
hfusion20
,
"CreateAssemblyCache"
);
pCreateAssemblyCache
(
&
package
->
cache_net
[
CLR_VERSION_V20
],
0
);
}
if
(
package
->
hfusion40
)
if
(
package
->
hfusion40
&&
!
package
->
cache_net
[
CLR_VERSION_V40
]
)
{
pCreateAssemblyCache
=
(
void
*
)
GetProcAddress
(
package
->
hfusion40
,
"CreateAssemblyCache"
);
pCreateAssemblyCache
(
&
package
->
cache_net
[
CLR_VERSION_V40
],
0
);
...
...
@@ -223,9 +220,9 @@ WCHAR *msi_get_assembly_path( MSIPACKAGE *package, const WCHAR *displayname )
{
HRESULT
hr
;
ASSEMBLY_INFO
info
;
IAssemblyCache
*
cache
=
package
->
cache_net
[
CLR_VERSION_V40
]
;
IAssemblyCache
*
cache
;
if
(
!
cache
)
return
NULL
;
if
(
!
init_assembly_caches
(
package
)
||
!
(
cache
=
package
->
cache_net
[
CLR_VERSION_V40
])
)
return
NULL
;
memset
(
&
info
,
0
,
sizeof
(
info
)
);
info
.
cbAssemblyInfo
=
sizeof
(
info
);
...
...
@@ -252,7 +249,8 @@ IAssemblyEnum *msi_create_assembly_enum( MSIPACKAGE *package, const WCHAR *displ
WCHAR
*
str
;
DWORD
len
=
0
;
if
(
!
package
->
pCreateAssemblyNameObject
||
!
package
->
pCreateAssemblyEnum
)
return
NULL
;
if
(
!
init_assembly_caches
(
package
)
||
!
package
->
pCreateAssemblyNameObject
||
!
package
->
pCreateAssemblyEnum
)
return
NULL
;
hr
=
package
->
pCreateAssemblyNameObject
(
&
name
,
displayname
,
CANOF_PARSE_DISPLAY_NAME
,
NULL
);
if
(
FAILED
(
hr
))
return
NULL
;
...
...
@@ -363,6 +361,8 @@ UINT msi_install_assembly( MSIPACKAGE *package, MSICOMPONENT *comp )
MSIASSEMBLY
*
assembly
=
comp
->
assembly
;
MSIFEATURE
*
feature
=
NULL
;
if
(
!
init_assembly_caches
(
package
))
return
ERROR_FUNCTION_FAILED
;
if
(
comp
->
assembly
->
feature
)
feature
=
msi_get_loaded_feature
(
package
,
comp
->
assembly
->
feature
);
...
...
@@ -406,6 +406,8 @@ UINT msi_uninstall_assembly( MSIPACKAGE *package, MSICOMPONENT *comp )
MSIASSEMBLY
*
assembly
=
comp
->
assembly
;
MSIFEATURE
*
feature
=
NULL
;
if
(
!
init_assembly_caches
(
package
))
return
ERROR_FUNCTION_FAILED
;
if
(
comp
->
assembly
->
feature
)
feature
=
msi_get_loaded_feature
(
package
,
comp
->
assembly
->
feature
);
...
...
This diff is collapsed.
Click to expand it.
dlls/msi/msipriv.h
+
0
−
1
View file @
d9d700f3
...
...
@@ -1052,7 +1052,6 @@ extern UINT msi_set_sourcedir_props(MSIPACKAGE *package, BOOL replace) DECLSPEC_
extern
MSIASSEMBLY
*
msi_load_assembly
(
MSIPACKAGE
*
,
MSICOMPONENT
*
)
DECLSPEC_HIDDEN
;
extern
UINT
msi_install_assembly
(
MSIPACKAGE
*
,
MSICOMPONENT
*
)
DECLSPEC_HIDDEN
;
extern
UINT
msi_uninstall_assembly
(
MSIPACKAGE
*
,
MSICOMPONENT
*
)
DECLSPEC_HIDDEN
;
extern
BOOL
msi_init_assembly_caches
(
MSIPACKAGE
*
)
DECLSPEC_HIDDEN
;
extern
void
msi_destroy_assembly_caches
(
MSIPACKAGE
*
)
DECLSPEC_HIDDEN
;
extern
BOOL
msi_is_global_assembly
(
MSICOMPONENT
*
)
DECLSPEC_HIDDEN
;
extern
IAssemblyEnum
*
msi_create_assembly_enum
(
MSIPACKAGE
*
,
const
WCHAR
*
)
DECLSPEC_HIDDEN
;
...
...
This diff is collapsed.
Click to expand it.
dlls/msi/package.c
+
0
−
7
View file @
d9d700f3
...
...
@@ -1502,13 +1502,6 @@ UINT MSI_OpenPackageW(LPCWSTR szPackage, DWORD dwOptions, MSIPACKAGE **pPackage)
package
->
log_file
=
CreateFileW
(
gszLogFile
,
GENERIC_WRITE
,
FILE_SHARE_WRITE
,
NULL
,
OPEN_EXISTING
,
FILE_ATTRIBUTE_NORMAL
,
NULL
);
if
(
!
msi_init_assembly_caches
(
package
))
{
ERR
(
"can't initialize assembly caches
\n
"
);
msiobj_release
(
&
package
->
hdr
);
return
ERROR_FUNCTION_FAILED
;
}
/* FIXME: when should these messages be sent? */
data_row
=
MSI_CreateRecord
(
3
);
if
(
!
data_row
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment