Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
81bd5a84
Commit
81bd5a84
authored
Jun 12, 2003
by
David Mosberger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ia64: Fine-tune the gate DSO support a bit.
parent
867cd55e
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
22 additions
and
22 deletions
+22
-22
arch/ia64/kernel/Makefile
arch/ia64/kernel/Makefile
+1
-1
arch/ia64/kernel/gate.lds.S
arch/ia64/kernel/gate.lds.S
+10
-14
arch/ia64/mm/init.c
arch/ia64/mm/init.c
+9
-4
arch/ia64/vmlinux.lds.S
arch/ia64/vmlinux.lds.S
+1
-1
include/asm-ia64/elf.h
include/asm-ia64/elf.h
+0
-1
include/asm-ia64/pgtable.h
include/asm-ia64/pgtable.h
+1
-1
No files found.
arch/ia64/kernel/Makefile
View file @
81bd5a84
...
...
@@ -23,7 +23,7 @@ AFLAGS_gate.lds.o += -P -C -U$(ARCH)
arch/ia64/kernel/gate.lds.s
:
%.s: %.S scripts FORCE
$(
call
if_changed_dep,as_s_S
)
$(obj)/gate.so
:
$(src)/gate.lds.s $(obj)/gate.o
$(CC)
-nostdlib
-shared
-Wl
,-soname
=
linux-gate.so.1
\
$(CC)
-nostdlib
-shared
-
s
-
Wl
,-soname
=
linux-gate.so.1
\
-o
$@
-Wl
,-T,
$^
extra-y
+=
gate.so
...
...
arch/ia64/kernel/gate.lds.S
View file @
81bd5a84
/*
*
Linker
script
for
gate
DSO
.
The
gate
pages
are
an
ELF
shared
*
object
prelinked
to
its
virtual
address
,
with
only
one
read
-
only
*
segment
and
one
execute
-
only
segment
(
both
fit
in
one
page
)
.
*
This
script
controls
its
layout
.
*
Linker
script
for
gate
DSO
.
The
gate
pages
are
an
ELF
shared
object
prelinked
to
its
*
virtual
address
,
with
only
one
read
-
only
segment
and
one
execute
-
only
segment
(
both
fit
*
in
one
page
)
.
This
script
controls
its
layout
.
*/
#include <linux/config.h>
...
...
@@ -19,20 +18,17 @@ SECTIONS
.
gnu.version
:
{
*(
.
gnu
.
version
)
}
.
gnu.
version_d
:
{
*(
.
gnu
.
version_d
)
}
.
gnu.
version_r
:
{
*(
.
gnu
.
version_r
)
}
.
rela.dyn
:
{
*(
.
rela
*)
}
.
dynamic
:
{
*(
.
dynamic
)
}
:
rodata
:
dynamic
.
data.patch.
mckinley_e9
:
{
*(
.
data
.
patch
.
mckinley_e9
)
}
:
rodata
.
data.patch.
mckinley_e9
:
{
*(
.
data
.
patch
.
mckinley_e9
)
}
.
data.patch.
fsyscall_table
:
{
*(
.
data
.
patch
.
fsyscall_table
)
}
.
data.patch.vtop
:
{
*(
.
data
.
patch
.
vtop
)
}
.
data.patch.
brl_fsys_bubble_down
:
{
*(
.
data
.
patch
.
brl_fsys_bubble_down
)
}
.
IA_64
.
unwind_info
:
{
*(
.
IA_64
.
unwind_info
*)
}
.
IA_64
.
unwind
:
{
*(
.
IA_64
.
unwind
*)
}
:
rodata
:
unwind
.
dynamic
:
{
*(
.
dynamic
)
}
:
rodata
:
dynamic
.
=
GATE_ADDR
+
PAGE_SIZE
;
.
text
:
{
*(
.
text
)
}
:
rodata
.
text
(
GATE_ADDR
+
PAGE_SIZE
)
:
{
*(
.
text
)
}
:
rodata
.
useless
:
{
/
DISCARD
/
:
{
*(.
got.plt
)
*(
.
got
)
*(.
data
.
data
.
*
.
gnu
.
linkonce
.
d
.
*)
*(.
dynbss
)
...
...
arch/ia64/mm/init.c
View file @
81bd5a84
...
...
@@ -287,12 +287,17 @@ put_kernel_page (struct page *page, unsigned long address, pgprot_t pgprot)
static
void
setup_gate
(
void
)
{
struct
page
*
page0
,
*
page1
;
extern
char
__start_gate_section
[];
/* install the read-only and privilege-promote pages in the global page table: */
put_kernel_page
(
virt_to_page
(
ia64_imva
(
__start_gate_section
)),
GATE_ADDR
,
PAGE_READONLY
);
put_kernel_page
(
virt_to_page
(
ia64_imva
(
__start_gate_section
+
PAGE_SIZE
)),
GATE_ADDR
+
PAGE_SIZE
,
PAGE_GATE
);
/*
* Install the gate pages: one read-only page containing the ELF headers etc. and
* one execute-only page, which enables privilege-promotion via "epc":
*/
page0
=
virt_to_page
(
ia64_imva
(
__start_gate_section
));
page1
=
virt_to_page
(
ia64_imva
(
__start_gate_section
+
PAGE_SIZE
));
put_kernel_page
(
page0
,
GATE_ADDR
,
PAGE_READONLY
);
put_kernel_page
(
page1
,
GATE_ADDR
+
PAGE_SIZE
,
PAGE_GATE
);
ia64_patch_gate
((
Elf64_Ehdr
*
)
__start_gate_section
);
}
...
...
arch/ia64/vmlinux.lds.S
View file @
81bd5a84
...
...
@@ -162,8 +162,8 @@ SECTIONS
*(.
data.gate
)
__stop_gate_section
=
.
;
}
.
=
ALIGN
(
PAGE_SIZE
)
; /* make sure the gate page doesn't expose kernel data */
.
=
ALIGN
(
SMP_CACHE_BYTES
)
;
.
data.
cacheline_aligned
:
AT
(
ADDR
(
.
data
.
cacheline_aligned
)
-
LOAD_OFFSET
)
{
*(
.
data
.
cacheline_aligned
)
}
...
...
include/asm-ia64/elf.h
View file @
81bd5a84
...
...
@@ -224,7 +224,6 @@ do { \
struct elf_phdr phdr = gate_phdrs[i]; \
if (phdr.p_type == PT_LOAD) { \
ofs = phdr.p_offset = offset; \
phdr.p_filesz = PAGE_SIZE;
/* just cover RO-data */
\
offset += phdr.p_filesz; \
} else \
phdr.p_offset += ofs; \
...
...
include/asm-ia64/pgtable.h
View file @
81bd5a84
...
...
@@ -489,6 +489,6 @@ typedef pte_t *pte_addr_t;
/* These tell get_user_pages() that the first gate page is accessible from user-level. */
#define FIXADDR_START GATE_ADDR
#define FIXADDR_TOP (GATE_ADDR + PAGE_SIZE)
#define FIXADDR_TOP (GATE_ADDR +
2*
PAGE_SIZE)
#endif
/* _ASM_IA64_PGTABLE_H */
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