Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
Pyston
Commits
8c8e595a
Commit
8c8e595a
authored
Oct 01, 2015
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #947 from undingen/fix_symlink
Fix registerDataSegment error when encountering symlinks
parents
b19bf906
c660f762
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
3 deletions
+13
-3
src/runtime/import.cpp
src/runtime/import.cpp
+13
-3
No files found.
src/runtime/import.cpp
View file @
8c8e595a
...
@@ -17,6 +17,7 @@
...
@@ -17,6 +17,7 @@
#include <dlfcn.h>
#include <dlfcn.h>
#include <fstream>
#include <fstream>
#include <limits.h>
#include <limits.h>
#include <link.h>
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/Path.h"
#include "llvm/Support/Path.h"
...
@@ -786,7 +787,16 @@ Box* impLoadDynamic(Box* _name, Box* _pathname, Box* _file) {
...
@@ -786,7 +787,16 @@ Box* impLoadDynamic(Box* _name, Box* _pathname, Box* _file) {
// Parses the memory map and registers all memory regions with "rwxp" permission and which contain the requested file
// Parses the memory map and registers all memory regions with "rwxp" permission and which contain the requested file
// path with the GC. In addition adds the BSS segment.
// path with the GC. In addition adds the BSS segment.
static
void
registerDataSegment
(
void
*
dl_handle
,
llvm
::
StringRef
lib_path
)
{
static
void
registerDataSegment
(
void
*
dl_handle
)
{
// get library path and resolve symlinks
link_map
*
map
=
NULL
;
dlinfo
(
dl_handle
,
RTLD_DI_LINKMAP
,
&
map
);
RELEASE_ASSERT
(
map
&&
map
->
l_name
,
"this should never be NULL"
);
char
*
converted_path
=
realpath
(
map
->
l_name
,
NULL
);
RELEASE_ASSERT
(
converted_path
,
""
);
std
::
string
lib_path
=
converted_path
;
free
(
converted_path
);
std
::
ifstream
mapmap
(
"/proc/self/maps"
);
std
::
ifstream
mapmap
(
"/proc/self/maps"
);
std
::
string
line
;
std
::
string
line
;
llvm
::
SmallVector
<
std
::
pair
<
uint64_t
,
uint64_t
>
,
4
>
mem_ranges
;
llvm
::
SmallVector
<
std
::
pair
<
uint64_t
,
uint64_t
>
,
4
>
mem_ranges
;
...
@@ -802,7 +812,7 @@ static void registerDataSegment(void* dl_handle, llvm::StringRef lib_path) {
...
@@ -802,7 +812,7 @@ static void registerDataSegment(void* dl_handle, llvm::StringRef lib_path) {
llvm
::
StringRef
permissions
=
line_split
[
1
].
trim
();
llvm
::
StringRef
permissions
=
line_split
[
1
].
trim
();
llvm
::
StringRef
pathname
=
line_split
[
5
].
trim
();
llvm
::
StringRef
pathname
=
line_split
[
5
].
trim
();
if
(
permissions
==
"rwxp"
&&
pathname
.
endswith
(
lib_path
)
)
{
if
(
permissions
==
"rwxp"
&&
pathname
==
lib_path
)
{
llvm
::
StringRef
mem_range
=
line_split
[
0
].
trim
();
llvm
::
StringRef
mem_range
=
line_split
[
0
].
trim
();
auto
mem_range_split
=
mem_range
.
split
(
'-'
);
auto
mem_range_split
=
mem_range
.
split
(
'-'
);
uint64_t
lower_addr
=
0
;
uint64_t
lower_addr
=
0
;
...
@@ -863,7 +873,7 @@ BoxedModule* importCExtension(BoxedString* full_name, const std::string& last_na
...
@@ -863,7 +873,7 @@ BoxedModule* importCExtension(BoxedString* full_name, const std::string& last_na
assert
(
init
);
assert
(
init
);
// Let the GC know about the static variables.
// Let the GC know about the static variables.
registerDataSegment
(
handle
,
path
);
registerDataSegment
(
handle
);
char
*
packagecontext
=
strdup
(
full_name
->
c_str
());
char
*
packagecontext
=
strdup
(
full_name
->
c_str
());
char
*
oldcontext
=
_Py_PackageContext
;
char
*
oldcontext
=
_Py_PackageContext
;
...
...
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