mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-29 10:01:25 +00:00
[PATCH] uml: move libc-dependent skas memory mapping code
The serial UML OS-abstraction layer patch (um/kernel/skas dir). This moves all systemcalls from skas/mem_user.c file under os-Linux dir and join skas/mem_user.c and skas/mem.c files. Signed-off-by: Gennady Sharapov <gennady.v.sharapov@intel.com> Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
4abfbf4034
commit
f45d9fc9d8
5 changed files with 113 additions and 108 deletions
|
@ -11,6 +11,7 @@
|
||||||
#include "../os/include/file.h"
|
#include "../os/include/file.h"
|
||||||
#include "sysdep/ptrace.h"
|
#include "sysdep/ptrace.h"
|
||||||
#include "kern_util.h"
|
#include "kern_util.h"
|
||||||
|
#include "skas/mm_id.h"
|
||||||
|
|
||||||
#define OS_TYPE_FILE 1
|
#define OS_TYPE_FILE 1
|
||||||
#define OS_TYPE_DIR 2
|
#define OS_TYPE_DIR 2
|
||||||
|
@ -255,4 +256,20 @@ extern void user_time_init(void);
|
||||||
extern void uml_idle_timer(void);
|
extern void uml_idle_timer(void);
|
||||||
extern unsigned long long os_nsecs(void);
|
extern unsigned long long os_nsecs(void);
|
||||||
|
|
||||||
|
/* skas/mem.c */
|
||||||
|
extern long run_syscall_stub(struct mm_id * mm_idp,
|
||||||
|
int syscall, unsigned long *args, long expected,
|
||||||
|
void **addr, int done);
|
||||||
|
extern long syscall_stub_data(struct mm_id * mm_idp,
|
||||||
|
unsigned long *data, int data_count,
|
||||||
|
void **addr, void **stub_addr);
|
||||||
|
extern int map(struct mm_id * mm_idp, unsigned long virt,
|
||||||
|
unsigned long len, int r, int w, int x, int phys_fd,
|
||||||
|
unsigned long long offset, int done, void **data);
|
||||||
|
extern int unmap(struct mm_id * mm_idp, void *addr, unsigned long len,
|
||||||
|
int done, void **data);
|
||||||
|
extern int protect(struct mm_id * mm_idp, unsigned long addr,
|
||||||
|
unsigned long len, int r, int w, int x, int done,
|
||||||
|
void **data);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -24,14 +24,6 @@ extern void userspace(union uml_pt_regs *regs);
|
||||||
extern void new_thread_proc(void *stack, void (*handler)(int sig));
|
extern void new_thread_proc(void *stack, void (*handler)(int sig));
|
||||||
extern void new_thread_handler(int sig);
|
extern void new_thread_handler(int sig);
|
||||||
extern void handle_syscall(union uml_pt_regs *regs);
|
extern void handle_syscall(union uml_pt_regs *regs);
|
||||||
extern int map(struct mm_id * mm_idp, unsigned long virt,
|
|
||||||
unsigned long len, int r, int w, int x, int phys_fd,
|
|
||||||
unsigned long long offset, int done, void **data);
|
|
||||||
extern int unmap(struct mm_id * mm_idp, void *addr, unsigned long len,
|
|
||||||
int done, void **data);
|
|
||||||
extern int protect(struct mm_id * mm_idp, unsigned long addr,
|
|
||||||
unsigned long len, int r, int w, int x, int done,
|
|
||||||
void **data);
|
|
||||||
extern void user_signal(int sig, union uml_pt_regs *regs, int pid);
|
extern void user_signal(int sig, union uml_pt_regs *regs, int pid);
|
||||||
extern int new_mm(unsigned long stack);
|
extern int new_mm(unsigned long stack);
|
||||||
extern int start_userspace(unsigned long stub_stack);
|
extern int start_userspace(unsigned long stub_stack);
|
||||||
|
@ -39,11 +31,5 @@ extern int copy_context_skas0(unsigned long stack, int pid);
|
||||||
extern void get_skas_faultinfo(int pid, struct faultinfo * fi);
|
extern void get_skas_faultinfo(int pid, struct faultinfo * fi);
|
||||||
extern long execute_syscall_skas(void *r);
|
extern long execute_syscall_skas(void *r);
|
||||||
extern unsigned long current_stub_stack(void);
|
extern unsigned long current_stub_stack(void);
|
||||||
extern long run_syscall_stub(struct mm_id * mm_idp,
|
|
||||||
int syscall, unsigned long *args, long expected,
|
|
||||||
void **addr, int done);
|
|
||||||
extern long syscall_stub_data(struct mm_id * mm_idp,
|
|
||||||
unsigned long *data, int data_count,
|
|
||||||
void **addr, void **stub_addr);
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
# Licensed under the GPL
|
# Licensed under the GPL
|
||||||
#
|
#
|
||||||
|
|
||||||
obj-y := clone.o exec_kern.o mem.o mem_user.o mmu.o process.o process_kern.o \
|
obj-y := clone.o exec_kern.o mem.o mmu.o process.o process_kern.o \
|
||||||
syscall.o tlb.o uaccess.o
|
syscall.o tlb.o uaccess.o
|
||||||
|
|
||||||
USER_OBJS := process.o clone.o
|
USER_OBJS := process.o clone.o
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
# Licensed under the GPL
|
# Licensed under the GPL
|
||||||
#
|
#
|
||||||
|
|
||||||
obj-y := trap.o
|
obj-y := mem.o trap.o
|
||||||
|
|
||||||
USER_OBJS := trap.o
|
USER_OBJS := mem.o trap.o
|
||||||
|
|
||||||
include arch/um/scripts/Makefile.rules
|
include arch/um/scripts/Makefile.rules
|
||||||
|
|
|
@ -45,13 +45,14 @@ int single_count = 0;
|
||||||
int multi_count = 0;
|
int multi_count = 0;
|
||||||
int multi_op_count = 0;
|
int multi_op_count = 0;
|
||||||
|
|
||||||
static long do_syscall_stub(struct mm_id *mm_idp, void **addr)
|
static inline long do_syscall_stub(struct mm_id * mm_idp, void **addr)
|
||||||
{
|
{
|
||||||
unsigned long regs[MAX_REG_NR];
|
unsigned long regs[MAX_REG_NR];
|
||||||
|
int n;
|
||||||
|
long ret, offset;
|
||||||
unsigned long * data;
|
unsigned long * data;
|
||||||
unsigned long * syscall;
|
unsigned long * syscall;
|
||||||
long ret, offset;
|
int pid = mm_idp->u.pid;
|
||||||
int n, pid = mm_idp->u.pid;
|
|
||||||
|
|
||||||
if(proc_mm)
|
if(proc_mm)
|
||||||
#warning Need to look up userspace_pid by cpu
|
#warning Need to look up userspace_pid by cpu
|
||||||
|
@ -63,6 +64,7 @@ static long do_syscall_stub(struct mm_id *mm_idp, void **addr)
|
||||||
regs[REGS_IP_INDEX] = UML_CONFIG_STUB_CODE +
|
regs[REGS_IP_INDEX] = UML_CONFIG_STUB_CODE +
|
||||||
((unsigned long) &batch_syscall_stub -
|
((unsigned long) &batch_syscall_stub -
|
||||||
(unsigned long) &__syscall_stub_start);
|
(unsigned long) &__syscall_stub_start);
|
||||||
|
|
||||||
n = ptrace_setregs(pid, regs);
|
n = ptrace_setregs(pid, regs);
|
||||||
if(n < 0)
|
if(n < 0)
|
||||||
panic("do_syscall_stub : PTRACE_SETREGS failed, errno = %d\n",
|
panic("do_syscall_stub : PTRACE_SETREGS failed, errno = %d\n",
|
||||||
|
@ -80,6 +82,8 @@ static long do_syscall_stub(struct mm_id *mm_idp, void **addr)
|
||||||
if (offset) {
|
if (offset) {
|
||||||
data = (unsigned long *)(mm_idp->stack +
|
data = (unsigned long *)(mm_idp->stack +
|
||||||
offset - UML_CONFIG_STUB_DATA);
|
offset - UML_CONFIG_STUB_DATA);
|
||||||
|
printk("do_syscall_stub : ret = %d, offset = %d, "
|
||||||
|
"data = 0x%x\n", ret, offset, data);
|
||||||
syscall = (unsigned long *)((unsigned long)data + data[0]);
|
syscall = (unsigned long *)((unsigned long)data + data[0]);
|
||||||
printk("do_syscall_stub: syscall %ld failed, return value = "
|
printk("do_syscall_stub: syscall %ld failed, return value = "
|
||||||
"0x%lx, expected return value = 0x%lx\n",
|
"0x%lx, expected return value = 0x%lx\n",
|
||||||
|
@ -235,8 +239,6 @@ int unmap(struct mm_id * mm_idp, void *addr, unsigned long len, int done,
|
||||||
|
|
||||||
ret = run_syscall_stub(mm_idp, __NR_munmap, args, 0,
|
ret = run_syscall_stub(mm_idp, __NR_munmap, args, 0,
|
||||||
data, done);
|
data, done);
|
||||||
if(ret < 0)
|
|
||||||
printk("munmap stub failed, errno = %d\n", ret);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -250,9 +252,9 @@ int protect(struct mm_id * mm_idp, unsigned long addr, unsigned long len,
|
||||||
|
|
||||||
prot = (r ? PROT_READ : 0) | (w ? PROT_WRITE : 0) |
|
prot = (r ? PROT_READ : 0) | (w ? PROT_WRITE : 0) |
|
||||||
(x ? PROT_EXEC : 0);
|
(x ? PROT_EXEC : 0);
|
||||||
|
|
||||||
if(proc_mm){
|
if(proc_mm){
|
||||||
int fd = mm_idp->u.mm_fd;
|
int fd = mm_idp->u.mm_fd;
|
||||||
|
|
||||||
protect = ((struct proc_mm_op) { .op = MM_MPROTECT,
|
protect = ((struct proc_mm_op) { .op = MM_MPROTECT,
|
||||||
.u =
|
.u =
|
||||||
{ .mprotect =
|
{ .mprotect =
|
Loading…
Add table
Add a link
Reference in a new issue