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
nexedi
linux
Commits
60c1b773
Commit
60c1b773
authored
Nov 21, 2002
by
Jeff Dike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a bunch of C files under arch/um/kernel/skas and
arch/um/kernel/tt.
parent
651542f6
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
610 additions
and
0 deletions
+610
-0
arch/um/kernel/skas/include/proc_mm.h
arch/um/kernel/skas/include/proc_mm.h
+55
-0
arch/um/kernel/tt/syscall_user.c
arch/um/kernel/tt/syscall_user.c
+90
-0
arch/um/kernel/tt/tracer.c
arch/um/kernel/tt/tracer.c
+465
-0
No files found.
arch/um/kernel/skas/include/proc_mm.h
0 → 100644
View file @
60c1b773
/*
* Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
* Licensed under the GPL
*/
#ifndef __SKAS_PROC_MM_H
#define __SKAS_PROC_MM_H
#define MM_MMAP 54
#define MM_MUNMAP 55
#define MM_MPROTECT 56
#define MM_COPY_SEGMENTS 57
struct
mm_mmap
{
unsigned
long
addr
;
unsigned
long
len
;
unsigned
long
prot
;
unsigned
long
flags
;
unsigned
long
fd
;
unsigned
long
offset
;
};
struct
mm_munmap
{
unsigned
long
addr
;
unsigned
long
len
;
};
struct
mm_mprotect
{
unsigned
long
addr
;
unsigned
long
len
;
unsigned
int
prot
;
};
struct
proc_mm_op
{
int
op
;
union
{
struct
mm_mmap
mmap
;
struct
mm_munmap
munmap
;
struct
mm_mprotect
mprotect
;
int
copy_segments
;
}
u
;
};
#endif
/*
* Overrides for Emacs so that we follow Linus's tabbing style.
* Emacs will notice this stuff at the end of the file and automatically
* adjust the settings for this buffer only. This must remain at the end
* of the file.
* ---------------------------------------------------------------------------
* Local variables:
* c-file-style: "linux"
* End:
*/
arch/um/kernel/tt/syscall_user.c
0 → 100644
View file @
60c1b773
/*
* Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
* Licensed under the GPL
*/
#include <unistd.h>
#include <signal.h>
#include <errno.h>
#include <sys/ptrace.h>
#include <asm/unistd.h>
#include "sysdep/ptrace.h"
#include "sigcontext.h"
#include "ptrace_user.h"
#include "task.h"
#include "user_util.h"
#include "kern_util.h"
#include "syscall_user.h"
#include "tt.h"
/* XXX Bogus */
#define ERESTARTSYS 512
#define ERESTARTNOINTR 513
#define ERESTARTNOHAND 514
void
syscall_handler_tt
(
int
sig
,
struct
uml_pt_regs
*
regs
)
{
void
*
sc
;
long
result
;
int
index
,
syscall
;
syscall
=
regs
->
syscall
;
sc
=
regs
->
mode
.
tt
;
sc_to_regs
(
regs
,
sc
,
syscall
);
SC_START_SYSCALL
(
sc
);
index
=
record_syscall_start
(
syscall
);
syscall_trace
();
result
=
execute_syscall
(
regs
);
/* regs->sc may have changed while the system call ran (there may
* have been an interrupt or segfault), so it needs to be refreshed.
*/
regs
->
mode
.
tt
=
sc
;
SC_SET_SYSCALL_RETURN
(
sc
,
result
);
if
((
result
==
-
ERESTARTNOHAND
)
||
(
result
==
-
ERESTARTSYS
)
||
(
result
==
-
ERESTARTNOINTR
))
do_signal
(
result
);
syscall_trace
();
record_syscall_end
(
index
,
result
);
}
int
do_syscall
(
void
*
task
,
int
pid
)
{
unsigned
long
proc_regs
[
FRAME_SIZE
];
struct
uml_pt_regs
*
regs
;
int
syscall
;
if
(
ptrace_getregs
(
pid
,
proc_regs
)
<
0
)
tracer_panic
(
"Couldn't read registers"
);
syscall
=
PT_SYSCALL_NR
(
proc_regs
);
regs
=
TASK_REGS
(
task
);
UPT_SYSCALL_NR
(
regs
)
=
syscall
;
if
(
syscall
<
1
)
return
(
0
);
if
((
syscall
!=
__NR_sigreturn
)
&&
((
unsigned
long
*
)
PT_IP
(
proc_regs
)
>=
&
_stext
)
&&
((
unsigned
long
*
)
PT_IP
(
proc_regs
)
<=
&
_etext
))
tracer_panic
(
"I'm tracing myself and I can't get out"
);
if
(
ptrace
(
PTRACE_POKEUSER
,
pid
,
PT_SYSCALL_NR_OFFSET
,
__NR_getpid
)
<
0
)
tracer_panic
(
"do_syscall : Nullifying syscall failed, "
"errno = %d"
,
errno
);
return
(
1
);
}
/*
* Overrides for Emacs so that we follow Linus's tabbing style.
* Emacs will notice this stuff at the end of the file and automatically
* adjust the settings for this buffer only. This must remain at the end
* of the file.
* ---------------------------------------------------------------------------
* Local variables:
* c-file-style: "linux"
* End:
*/
arch/um/kernel/tt/tracer.c
0 → 100644
View file @
60c1b773
This diff is collapsed.
Click to expand it.
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