Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bcc
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
bcc
Commits
6262f5d9
Commit
6262f5d9
authored
Feb 19, 2016
by
mcaleavya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed two bpf_hash args_pid/sig
parent
053ce87e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
15 deletions
+6
-15
tools/killsnoop.py
tools/killsnoop.py
+6
-15
No files found.
tools/killsnoop.py
View file @
6262f5d9
...
@@ -45,6 +45,8 @@ bpf_text = """
...
@@ -45,6 +45,8 @@ bpf_text = """
struct val_t {
struct val_t {
u64 pid;
u64 pid;
u64 ts;
u64 ts;
int sig;
int tpid;
char comm[TASK_COMM_LEN];
char comm[TASK_COMM_LEN];
};
};
...
@@ -58,8 +60,6 @@ struct data_t {
...
@@ -58,8 +60,6 @@ struct data_t {
char comm[TASK_COMM_LEN];
char comm[TASK_COMM_LEN];
};
};
BPF_HASH(args_pid, u32, int);
BPF_HASH(args_sig, u32, int);
BPF_HASH(infotmp, u32, struct val_t);
BPF_HASH(infotmp, u32, struct val_t);
BPF_PERF_OUTPUT(events);
BPF_PERF_OUTPUT(events);
...
@@ -72,10 +72,10 @@ int kprobe__sys_kill(struct pt_regs *ctx, int tpid, int sig)
...
@@ -72,10 +72,10 @@ int kprobe__sys_kill(struct pt_regs *ctx, int tpid, int sig)
if (bpf_get_current_comm(&val.comm, sizeof(val.comm)) == 0) {
if (bpf_get_current_comm(&val.comm, sizeof(val.comm)) == 0) {
val.pid = bpf_get_current_pid_tgid();
val.pid = bpf_get_current_pid_tgid();
val.ts = bpf_ktime_get_ns();
val.ts = bpf_ktime_get_ns();
val.tpid = tpid;
val.sig = sig;
infotmp.update(&pid, &val);
infotmp.update(&pid, &val);
}
}
args_pid.update(&pid, &tpid);
args_sig.update(&pid, &sig);
return 0;
return 0;
};
};
...
@@ -84,16 +84,9 @@ int kretprobe__sys_kill(struct pt_regs *ctx)
...
@@ -84,16 +84,9 @@ int kretprobe__sys_kill(struct pt_regs *ctx)
{
{
struct data_t data = {};
struct data_t data = {};
struct val_t *valp;
struct val_t *valp;
int *tpidp, *sigp;
u32 pid = bpf_get_current_pid_tgid();
u32 pid = bpf_get_current_pid_tgid();
u64 tsp = bpf_ktime_get_ns();
u64 tsp = bpf_ktime_get_ns();
tpidp = args_pid.lookup(&pid);
sigp = args_sig.lookup(&pid);
if (tpidp == 0 || sigp == 0) {
return 0; // missed entry
}
valp = infotmp.lookup(&pid);
valp = infotmp.lookup(&pid);
if (valp == 0) {
if (valp == 0) {
// missed entry
// missed entry
...
@@ -104,14 +97,12 @@ int kretprobe__sys_kill(struct pt_regs *ctx)
...
@@ -104,14 +97,12 @@ int kretprobe__sys_kill(struct pt_regs *ctx)
data.pid = pid;
data.pid = pid;
data.delta = tsp - valp->ts;
data.delta = tsp - valp->ts;
data.ts = tsp / 1000;
data.ts = tsp / 1000;
data.tpid =
*tpidp
;
data.tpid =
valp->tpid
;
data.ret = ctx->ax;
data.ret = ctx->ax;
data.sig =
*sigp
;
data.sig =
valp->sig
;
events.perf_submit(ctx, &data, sizeof(data));
events.perf_submit(ctx, &data, sizeof(data));
infotmp.delete(&pid);
infotmp.delete(&pid);
args_pid.delete(&pid);
args_sig.delete(&pid);
return 0;
return 0;
}
}
...
...
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