- 24 Sep, 2015 4 commits
-
-
Mihai Budiu authored
-
Brenden Blanco authored
Add contribution section
-
Suchakra Sharma authored
-
Suchakra Sharma authored
-
- 23 Sep, 2015 2 commits
-
-
4ast authored
Use GNUInstallDirs for LIBDIR variable
-
Brenden Blanco authored
This should be supported in older versions of cmake, but haven't explicitly tested those. Fixes: #243 Signed-off-by: Brenden Blanco <bblanco@plumgrid.com>
-
- 21 Sep, 2015 15 commits
-
-
Brenden Blanco authored
biolatency, funclatency, and bpf_log2l usage
-
Brendan Gregg authored
-
Brendan Gregg authored
-
Brendan Gregg authored
-
Brendan Gregg authored
-
Brenden Blanco authored
add bpf_log2 functions
-
Brendan Gregg authored
-
Brenden Blanco authored
killsnoop and some minor fixes
-
Brendan Gregg authored
-
Brendan Gregg authored
-
Brendan Gregg authored
-
Brendan Gregg authored
-
Brendan Gregg authored
-
Brendan Gregg authored
-
Brendan Gregg authored
-
- 18 Sep, 2015 2 commits
-
-
Brenden Blanco authored
opensnoop
-
Brendan Gregg authored
-
- 17 Sep, 2015 4 commits
-
-
4ast authored
Add a better test case for nested probe reads
-
Brenden Blanco authored
Signed-off-by: Brenden Blanco <bblanco@plumgrid.com>
-
4ast authored
Add support for static helper functions
-
Brenden Blanco authored
This adds support for static helper functions that can be reused. It is not necessary to include pt_regs in the helper functions, even though external pointers may be dereferenced. Arguments in the helpers can also be reordered. Signed-off-by: Brenden Blanco <bblanco@plumgrid.com>
-
- 16 Sep, 2015 8 commits
-
-
Brenden Blanco authored
add biosnoop to README
-
Brendan Gregg authored
-
Brenden Blanco authored
biosnoop and disk updates
-
Brendan Gregg authored
-
Brendan Gregg authored
-
Brendan Gregg authored
-
4ast authored
Fix probe reads on char[] types
-
Brenden Blanco authored
It is easy enough to wrap the type in a typeof(), otherwise the rewriter would need to do a deeper parsing of the type information to place it properly next to the variable name. Fixes: #219 Signed-off-by: Brenden Blanco <bblanco@plumgrid.com>
-
- 15 Sep, 2015 5 commits
-
-
4ast authored
Translate multiple pointer dereference into bpr_probe_read
-
Brenden Blanco authored
This commit adds support for multiple consecutive and nested pointer dereference of function arguments that should be converted to bpf_probe_read. The logic works by marking variables as needing a probe_read if they come from the register argument, and then applying this property transitively. Supported syntax: ``` int trace_entry(struct pt_regs *ctx, struct file *file) { struct vfsmount *mnt = file->f_path.mnt; struct super_block *k = mnt->mnt_sb; const char *name = file->f_path.dentry->d_name.name; ``` Not supported: probe reads from map leaves, probe reads after explicit casts. Fixes: #188 Signed-off-by: Brenden Blanco <bblanco@plumgrid.com>
-
Brenden Blanco authored
add ebpf method to retrieve bytecode
-
Rich Lane authored
-
Rich Lane authored
-