Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
4e6dbf3b
Commit
4e6dbf3b
authored
Apr 06, 2023
by
Brendan Shanks
Committed by
Alexandre Julliard
Jul 18, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
loader: In macOS preloader, add __program_vars section.
This is needed to be a correct macOS 10.7 binary.
parent
cfa0dd9d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
4 deletions
+43
-4
preloader_mac.c
loader/preloader_mac.c
+43
-4
No files found.
loader/preloader_mac.c
View file @
4e6dbf3b
...
...
@@ -106,6 +106,39 @@ void *__stack_chk_guard = 0;
void
__stack_chk_fail_local
(
void
)
{
return
;
}
void
__stack_chk_fail
(
void
)
{
return
;
}
/* Binaries targeting 10.6 and 10.7 contain the __program_vars section, and
* dyld4 (starting in Monterey) does not like it to be missing:
* - running vmmap on a Wine process prints this warning:
* "Process exists but has not fully started -- dyld has initialized but libSystem has not"
* - because libSystem is not initialized, dlerror() always returns NULL (causing GStreamer
* to crash on init).
* - starting with macOS Sonoma, Wine crashes on launch if libSystem is not initialized.
*
* Adding __program_vars fixes those issues, and also allows more of the vars to
* be set correctly by the preloader for the loaded binary.
*
* See also:
* <https://github.com/apple-oss-distributions/Csu/blob/Csu-88/crt.c#L42>
* <https://github.com/apple-oss-distributions/dyld/blob/dyld-1042.1/common/MachOAnalyzer.cpp#L2185>
*/
int
NXArgc
=
0
;
const
char
**
NXArgv
=
NULL
;
const
char
**
environ
=
NULL
;
const
char
*
__progname
=
NULL
;
extern
void
*
__dso_handle
;
struct
ProgramVars
{
void
*
mh
;
int
*
NXArgcPtr
;
const
char
***
NXArgvPtr
;
const
char
***
environPtr
;
const
char
**
__prognamePtr
;
};
__attribute__
((
used
))
static
struct
ProgramVars
pvars
__attribute__
((
section
(
"__DATA,__program_vars"
)))
=
{
&
__dso_handle
,
&
NXArgc
,
&
NXArgv
,
&
environ
,
&
__progname
};
/*
* When 'start' is called, stack frame looks like:
*
...
...
@@ -620,15 +653,16 @@ static void fixup_stack( void *stack )
static
void
set_program_vars
(
void
*
stack
,
void
*
mod
)
{
int
*
pargc
;
char
**
argv
,
**
env
;
c
onst
c
har
**
argv
,
**
env
;
int
*
wine_NXArgc
=
pdlsym
(
mod
,
"NXArgc"
);
char
***
wine_NXArgv
=
pdlsym
(
mod
,
"NXArgv"
);
char
***
wine_environ
=
pdlsym
(
mod
,
"environ"
);
c
onst
c
har
***
wine_NXArgv
=
pdlsym
(
mod
,
"NXArgv"
);
c
onst
c
har
***
wine_environ
=
pdlsym
(
mod
,
"environ"
);
pargc
=
stack
;
argv
=
(
char
**
)
pargc
+
1
;
argv
=
(
c
onst
c
har
**
)
pargc
+
1
;
env
=
&
argv
[
*
pargc
-
1
]
+
2
;
/* set vars in the loaded binary */
if
(
wine_NXArgc
)
*
wine_NXArgc
=
*
pargc
;
else
...
...
@@ -643,6 +677,11 @@ static void set_program_vars( void *stack, void *mod )
*
wine_environ
=
env
;
else
wld_printf
(
"preloader: Warning: failed to set environ
\n
"
);
/* set vars in the __program_vars section */
NXArgc
=
*
pargc
;
NXArgv
=
argv
;
environ
=
env
;
}
void
*
wld_start
(
void
*
stack
,
int
*
is_unix_thread
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment