Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
c6d44be3
Commit
c6d44be3
authored
Nov 22, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create a huge array in bss to reserve the memory area we need for PE
binaries, to prevent exec shield from mapping system libraries there.
parent
33f9dcb1
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
130 additions
and
69 deletions
+130
-69
configure
configure
+58
-51
configure.ac
configure.ac
+18
-13
process.c
dlls/kernel/process.c
+2
-0
library.h
include/wine/library.h
+3
-0
port.c
libs/wine/port.c
+41
-1
Makefile.in
loader/Makefile.in
+2
-2
main.c
loader/main.c
+6
-2
No files found.
configure
View file @
c6d44be3
...
...
@@ -12360,57 +12360,7 @@ echo "${ECHO_T}$ac_cv_c_dll_zdefs" >&6
then
LDDLL
=
"
$LDDLL
,-z,defs"
fi
echo
"
$as_me
:
$LINENO
: checking whether we can relocate the executable to 0x3c000000"
>
&5
echo
$ECHO_N
"checking whether we can relocate the executable to 0x3c000000...
$ECHO_C
"
>
&6
if
test
"
${
ac_cv_ld_reloc_exec
+set
}
"
=
set
;
then
echo
$ECHO_N
"(cached)
$ECHO_C
"
>
&6
else
saved_CFLAGS
=
"
$CFLAGS
"
CFLAGS
=
"
$CFLAGS
-Wl,--section-start,.interp=0x3c000100"
if
test
"
$cross_compiling
"
=
yes
;
then
ac_cv_ld_reloc_exec
=
"no"
else
cat
>
conftest.
$ac_ext
<<
_ACEOF
#line
$LINENO
"configure"
/* confdefs.h. */
_ACEOF
cat
confdefs.h
>>
conftest.
$ac_ext
cat
>>
conftest.
$ac_ext
<<
_ACEOF
/* end confdefs.h. */
#include <unistd.h>
int main() { return (sbrk(32*1024*1024) == (void *)-1); }
_ACEOF
rm
-f
conftest
$ac_exeext
if
{
(
eval echo
"
$as_me
:
$LINENO
:
\"
$ac_link
\"
"
)
>
&5
(
eval
$ac_link
)
2>&5
ac_status
=
$?
echo
"
$as_me
:
$LINENO
:
\$
? =
$ac_status
"
>
&5
(
exit
$ac_status
)
;
}
&&
{
ac_try
=
'./conftest$ac_exeext'
{
(
eval echo
"
$as_me
:
$LINENO
:
\"
$ac_try
\"
"
)
>
&5
(
eval
$ac_try
)
2>&5
ac_status
=
$?
echo
"
$as_me
:
$LINENO
:
\$
? =
$ac_status
"
>
&5
(
exit
$ac_status
)
;
}
;
}
;
then
ac_cv_ld_reloc_exec
=
"yes"
else
echo
"
$as_me
: program exited with status
$ac_status
"
>
&5
echo
"
$as_me
: failed program was:"
>
&5
sed
's/^/| /'
conftest.
$ac_ext
>
&5
(
exit
$ac_status
)
ac_cv_ld_reloc_exec
=
"no"
fi
rm
-f
core
*
.core gmon.out bb.out conftest
$ac_exeext
conftest.
$ac_objext
conftest.
$ac_ext
fi
CFLAGS
=
"
$saved_CFLAGS
"
fi
echo
"
$as_me
:
$LINENO
: result:
$ac_cv_ld_reloc_exec
"
>
&5
echo
"
${
ECHO_T
}
$ac_cv_ld_reloc_exec
"
>
&6
if
test
"
$ac_cv_ld_reloc_exec
"
=
"yes"
then
LDEXECFLAGS
=
"-Wl,--section-start,.interp=0x3c000100"
fi
echo
"
$as_me
:
$LINENO
: checking whether the linker accepts --export-dynamic"
>
&5
echo
$ECHO_N
"checking whether the linker accepts --export-dynamic...
$ECHO_C
"
>
&6
if
test
"
${
ac_cv_c_export_dynamic
+set
}
"
=
set
;
then
...
...
@@ -12460,8 +12410,65 @@ echo "$as_me:$LINENO: result: $ac_cv_c_export_dynamic" >&5
echo
"
${
ECHO_T
}
$ac_cv_c_export_dynamic
"
>
&6
if
test
"
$ac_cv_c_export_dynamic
"
=
"yes"
then
LDEXECFLAGS
=
"
$LDEXECFLAGS
-Wl,--export-dynamic"
LDEXECFLAGS
=
"-Wl,--export-dynamic"
fi
case
$host_cpu
in
*
i[3456789]86
*
)
echo
"
$as_me
:
$LINENO
: checking whether we can relocate the executable to 0x00110000"
>
&5
echo
$ECHO_N
"checking whether we can relocate the executable to 0x00110000...
$ECHO_C
"
>
&6
if
test
"
${
ac_cv_ld_reloc_exec
+set
}
"
=
set
;
then
echo
$ECHO_N
"(cached)
$ECHO_C
"
>
&6
else
saved_CFLAGS
=
"
$CFLAGS
"
CFLAGS
=
"
$CFLAGS
-Wl,--section-start,.interp=0x00110400"
if
test
"
$cross_compiling
"
=
yes
;
then
ac_cv_ld_reloc_exec
=
"no"
else
cat
>
conftest.
$ac_ext
<<
_ACEOF
#line
$LINENO
"configure"
/* confdefs.h. */
_ACEOF
cat
confdefs.h
>>
conftest.
$ac_ext
cat
>>
conftest.
$ac_ext
<<
_ACEOF
/* end confdefs.h. */
#include <unistd.h>
int main() { return (sbrk(32*1024*1024) == (void *)-1); }
_ACEOF
rm
-f
conftest
$ac_exeext
if
{
(
eval echo
"
$as_me
:
$LINENO
:
\"
$ac_link
\"
"
)
>
&5
(
eval
$ac_link
)
2>&5
ac_status
=
$?
echo
"
$as_me
:
$LINENO
:
\$
? =
$ac_status
"
>
&5
(
exit
$ac_status
)
;
}
&&
{
ac_try
=
'./conftest$ac_exeext'
{
(
eval echo
"
$as_me
:
$LINENO
:
\"
$ac_try
\"
"
)
>
&5
(
eval
$ac_try
)
2>&5
ac_status
=
$?
echo
"
$as_me
:
$LINENO
:
\$
? =
$ac_status
"
>
&5
(
exit
$ac_status
)
;
}
;
}
;
then
ac_cv_ld_reloc_exec
=
"yes"
else
echo
"
$as_me
: program exited with status
$ac_status
"
>
&5
echo
"
$as_me
: failed program was:"
>
&5
sed
's/^/| /'
conftest.
$ac_ext
>
&5
(
exit
$ac_status
)
ac_cv_ld_reloc_exec
=
"no"
fi
rm
-f
core
*
.core gmon.out bb.out conftest
$ac_exeext
conftest.
$ac_objext
conftest.
$ac_ext
fi
CFLAGS
=
"
$saved_CFLAGS
"
fi
echo
"
$as_me
:
$LINENO
: result:
$ac_cv_ld_reloc_exec
"
>
&5
echo
"
${
ECHO_T
}
$ac_cv_ld_reloc_exec
"
>
&6
if
test
"
$ac_cv_ld_reloc_exec
"
=
"yes"
then
LDEXECFLAGS
=
"
$LDEXECFLAGS
-Wl,--section-start,.interp=0x00110400"
fi
;;
esac
else
echo
"
$as_me
:
$LINENO
: checking whether we can build a UnixWare (Solaris) dll"
>
&5
echo
$ECHO_N
"checking whether we can build a UnixWare (Solaris) dll...
$ECHO_C
"
>
&6
...
...
configure.ac
View file @
c6d44be3
...
...
@@ -882,26 +882,31 @@ case $host_os in
then
LDDLL="$LDDLL,-z,defs"
fi
AC_CACHE_CHECK([whether we can relocate the executable to 0x3c000000], ac_cv_ld_reloc_exec,
AC_CACHE_CHECK([whether the linker accepts --export-dynamic], ac_cv_c_export_dynamic,
[WINE_TRY_CFLAGS([-fPIC -Wl,--export-dynamic],
ac_cv_c_export_dynamic="yes",ac_cv_c_export_dynamic="no")])
if test "$ac_cv_c_export_dynamic" = "yes"
then
AC_SUBST(LDEXECFLAGS,["-Wl,--export-dynamic"])
fi
case $host_cpu in
*i[[3456789]]86*)
AC_CACHE_CHECK([whether we can relocate the executable to 0x00110000], ac_cv_ld_reloc_exec,
[saved_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -Wl,--section-start,.interp=0x3c0001
00"
CFLAGS="$CFLAGS -Wl,--section-start,.interp=0x001104
00"
AC_TRY_RUN([#include <unistd.h>
int main() { return (sbrk(32*1024*1024) == (void *)-1); }],
ac_cv_ld_reloc_exec="yes",
ac_cv_ld_reloc_exec="no",
ac_cv_ld_reloc_exec="no")
ac_cv_ld_reloc_exec="yes", ac_cv_ld_reloc_exec="no", ac_cv_ld_reloc_exec="no")
CFLAGS="$saved_CFLAGS"])
if test "$ac_cv_ld_reloc_exec" = "yes"
then
AC_SUBST(LDEXECFLAGS,["-Wl,--section-start,.interp=0x3c000100"])
fi
AC_CACHE_CHECK([whether the linker accepts --export-dynamic], ac_cv_c_export_dynamic,
[WINE_TRY_CFLAGS([-fPIC -Wl,--export-dynamic],
ac_cv_c_export_dynamic="yes",ac_cv_c_export_dynamic="no")])
if test "$ac_cv_c_export_dynamic" = "yes"
then
LDEXECFLAGS="$LDEXECFLAGS -Wl,--export-dynamic"
LDEXECFLAGS="$LDEXECFLAGS -Wl,--section-start,.interp=0x00110400"
fi
;;
esac
else
AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll, ac_cv_c_dll_unixware,
[WINE_TRY_CFLAGS([-fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic],
...
...
dlls/kernel/process.c
View file @
c6d44be3
...
...
@@ -879,6 +879,8 @@ void __wine_kernel_init(void)
}
found:
wine_free_pe_load_area
();
/* the main binary is loaded, we don't need this anymore */
/* build command line */
set_library_wargv
(
__wine_main_argv
);
if
(
!
build_command_line
(
__wine_main_wargv
))
goto
error
;
...
...
include/wine/library.h
View file @
c6d44be3
...
...
@@ -52,6 +52,7 @@ extern int __wine_main_argc;
extern
char
**
__wine_main_argv
;
extern
WCHAR
**
__wine_main_wargv
;
extern
char
**
__wine_main_environ
;
extern
void
wine_init
(
int
argc
,
char
*
argv
[],
char
*
error
,
int
error_size
);
/* debugging */
...
...
@@ -69,6 +70,8 @@ extern int wine_dbg_parse_options( const char *str );
extern
void
DECLSPEC_NORETURN
wine_switch_to_stack
(
void
(
*
func
)(
void
*
),
void
*
arg
,
void
*
stack
);
extern
void
*
wine_anon_mmap
(
void
*
start
,
size_t
size
,
int
prot
,
int
flags
);
extern
void
wine_set_pe_load_area
(
void
*
base
,
size_t
size
);
extern
void
wine_free_pe_load_area
(
void
);
/* LDT management */
...
...
libs/wine/port.c
View file @
c6d44be3
...
...
@@ -144,6 +144,36 @@ __ASM_GLOBAL_FUNC( wine_switch_to_stack,
#endif
static
char
*
pe_area
;
static
size_t
pe_area_size
;
/***********************************************************************
* wine_set_pe_load_area
*
* Define the reserved area to use for loading the main PE binary.
*/
void
wine_set_pe_load_area
(
void
*
base
,
size_t
size
)
{
unsigned
int
page_mask
=
getpagesize
()
-
1
;
char
*
end
=
(
char
*
)
base
+
size
;
pe_area
=
(
char
*
)(((
unsigned
long
)
base
+
page_mask
)
&
~
page_mask
);
pe_area_size
=
(
end
-
pe_area
)
&
~
page_mask
;
}
/***********************************************************************
* wine_free_pe_load_area
*
* Free the reserved area to use for loading the main PE binary.
*/
void
wine_free_pe_load_area
(
void
)
{
if
(
pe_area
)
munmap
(
pe_area
,
pe_area_size
);
pe_area
=
NULL
;
}
#if (defined(__svr4__) || defined(__NetBSD__)) && !defined(MAP_TRYFIXED)
/***********************************************************************
* try_mmap_fixed
...
...
@@ -257,6 +287,16 @@ void *wine_anon_mmap( void *start, size_t size, int prot, int flags )
flags
|=
MAP_PRIVATE
;
#endif
if
(
pe_area
&&
start
&&
(
char
*
)
start
>=
pe_area
&&
(
char
*
)
start
+
size
<=
pe_area
+
pe_area_size
)
{
wine_free_pe_load_area
();
flags
|=
MAP_FIXED
;
}
if
(
!
(
flags
&
MAP_FIXED
))
{
#ifdef MAP_TRYFIXED
/* If available, this will attempt a fixed mapping in-kernel */
flags
|=
MAP_TRYFIXED
;
...
...
@@ -264,7 +304,7 @@ void *wine_anon_mmap( void *start, size_t size, int prot, int flags )
if
(
try_mmap_fixed
(
start
,
size
,
prot
,
flags
,
fdzero
,
0
)
)
return
start
;
#endif
}
return
mmap
(
start
,
size
,
prot
,
flags
,
fdzero
,
0
);
#else
return
(
void
*
)
-
1
;
...
...
loader/Makefile.in
View file @
c6d44be3
...
...
@@ -10,8 +10,8 @@ C_SRCS = \
main.c
\
pthread.c
KTHREAD_OBJS
=
main.o kthread
.o
PTHREAD_OBJS
=
main.o pthread
.o
KTHREAD_OBJS
=
kthread.o main
.o
PTHREAD_OBJS
=
pthread.o main
.o
WINE_BINARIES
=
@WINE_BINARIES@
MAIN_BINARY
=
@MAIN_BINARY@
...
...
loader/main.c
View file @
c6d44be3
...
...
@@ -20,8 +20,7 @@
#include <stdio.h>
#include <stdlib.h>
extern
void
wine_init
(
int
argc
,
char
*
argv
[],
char
*
error
,
int
error_size
);
#include "wine/library.h"
/**********************************************************************
* main
...
...
@@ -30,6 +29,11 @@ int main( int argc, char *argv[] )
{
char
error
[
1024
];
#ifdef __i386__
static
char
pe_load
[
256
*
1024
*
1024
]
__attribute__
((
aligned
(
4096
)));
wine_set_pe_load_area
(
pe_load
,
sizeof
(
pe_load
)
);
#endif
wine_init
(
argc
,
argv
,
error
,
sizeof
(
error
)
);
fprintf
(
stderr
,
"wine: failed to initialize: %s
\n
"
,
error
);
exit
(
1
);
...
...
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