Code Monkey home page Code Monkey logo

strace.ebpf's Issues

cmake: errors when trying to make

mramotow@mramotow:~/home/mramotow/strace.ebpf/build (master)$ make
Scanning dependencies of target check_license_executable
[  2%] Building C object CMakeFiles/check_license_executable.dir/utils/check_license/check-license.c.o
[  4%] Linking C executable CMakeFiles/check_license_executable
[  4%] Built target check_license_executable
Scanning dependencies of target test_syscalls
[  7%] Building C object test/CMakeFiles/test_syscalls.dir/test_syscalls.c.o
[  9%] Linking C executable test_syscalls
[  9%] Built target test_syscalls
[  9%] Built target syscalls_64
Scanning dependencies of target ebpf
[ 11%] Building C object src/ebpf/CMakeFiles/ebpf.dir/ebpf_file_set.c.o
[ 14%] Linking C static library ../nondebug/libebpf.a
[ 64%] Built target ebpf
Scanning dependencies of target strace.ebpf
[ 66%] Building C object src/CMakeFiles/strace.ebpf.dir/strace.ebpf.c.o
[ 69%] Building C object src/CMakeFiles/strace.ebpf.dir/txt.c.o
[ 71%] Building C object src/CMakeFiles/strace.ebpf.dir/cl_parser.c.o
[ 73%] Building C object src/CMakeFiles/strace.ebpf.dir/bpf_ctx.c.o
[ 76%] Building C object src/CMakeFiles/strace.ebpf.dir/utils.c.o
[ 78%] Building C object src/CMakeFiles/strace.ebpf.dir/attach_probes.c.o
[ 80%] Building C object src/CMakeFiles/strace.ebpf.dir/ebpf_syscalls.c.o
/home/mramotow/strace.ebpf/src/ebpf_syscalls.c:490:15: error: use of undeclared identifier '__NR_pkey_mprotect'
        EBPF_SYSCALL(__NR_pkey_mprotect, SyS_pkey_mprotect, 6),
                     ^
/home/mramotow/strace.ebpf/src/ebpf_syscalls.c:491:15: error: use of undeclared identifier '__NR_pkey_alloc'
        EBPF_SYSCALL(__NR_pkey_alloc, SyS_pkey_alloc, 6),
                     ^
/home/mramotow/strace.ebpf/src/ebpf_syscalls.c:492:15: error: use of undeclared identifier '__NR_pkey_free'
        EBPF_SYSCALL(__NR_pkey_free, SyS_pkey_free, 6),
                     ^
3 errors generated.
src/CMakeFiles/strace.ebpf.dir/build.make:218: recipe for target 'src/CMakeFiles/strace.ebpf.dir/ebpf_syscalls.c.o' failed
make[2]: *** [src/CMakeFiles/strace.ebpf.dir/ebpf_syscalls.c.o] Error 1
CMakeFiles/Makefile2:415: recipe for target 'src/CMakeFiles/strace.ebpf.dir/all' failed
make[1]: *** [src/CMakeFiles/strace.ebpf.dir/all] Error 2
Makefile:138: recipe for target 'all' failed
make: *** [all] Error 2

compilation: strace.ebpf do not compile under gcc-4.8.5

strace.ebpf do not compile under gcc-4.8.5

/home/mramotow/repos/pmemfile/strace.ebpf/src/libstrace/strace_bpf.c: In function ‘attach_callback_to_perf_output’:
/home/mramotow/repos/pmemfile/strace.ebpf/src/libstrace/strace_bpf.c:139:2: error: ‘for’ loop initial declarations are only allowed in C99 mode
for (int cpu = 0; cpu < cpu_qty; cpu++) {
^
/home/mramotow/repos/pmemfile/strace.ebpf/src/libstrace/strace_bpf.c:139:2: note: use option -std=c99 or -std=gnu99 to compile your code
/home/mramotow/repos/pmemfile/strace.ebpf/src/libstrace/strace_bpf.c: In function ‘detach_all’:
/home/mramotow/repos/pmemfile/strace.ebpf/src/libstrace/strace_bpf.c:191:2: error: ‘for’ loop initial declarations are only allowed in C99 mode
for (unsigned i = 0; i < b->pr_arr_qty; i++) {
^
src/libstrace/CMakeFiles/strace.dir/build.make:62: recipe for target 'src/libstrace/CMakeFiles/strace.dir/strace_bpf.c.o' failed
make[2]: *** [src/libstrace/CMakeFiles/strace.dir/strace_bpf.c.o] Error 1
CMakeFiles/Makefile2:547: recipe for target 'src/libstrace/CMakeFiles/strace.dir/all' failed
make[1]: *** [src/libstrace/CMakeFiles/strace.dir/all] Error 2
Makefile:138: recipe for target 'all' failed
make: *** [all] Error 2

make: warning: too many arguments for format [-Wformat-extra-args]

Found on 3b3b8d9

/home/mramotow/repos/pmemfile/strace.ebpf/src/utils.c: In function ‘check_bpf_jit_status’:
/home/mramotow/repos/pmemfile/strace.ebpf/src/utils.c:241:17: warning: too many arguments for format [-Wformat-extra-args]
fprintf(file, "ERROR: cannot read status of "
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

compilation: strace.epbf gives warning when compiled with gcc 6.2.0

Strace.epbf gives warning when compiled with gcc 6.2.0

/home/mramotow/repos/pmemfile/strace.ebpf/test/test_syscalls.c: In function ‘test_unsupported_syscalls’:
/home/mramotow/repos/pmemfile/strace.ebpf/test/test_syscalls.c:126:2: warning: ignoring return value of ‘chroot’, declared with attribute warn_unused_result [-Wunused-result]
chroot(NON_EXIST_PATH_1);
^~~~~~~~~~~~~~~~~~~~~~~~
/home/mramotow/repos/pmemfile/strace.ebpf/test/test_syscalls.c: In function ‘test_basic_syscalls’:
/home/mramotow/repos/pmemfile/strace.ebpf/test/test_syscalls.c:94:2: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
write(fd, buffer, BUF_LEN);
^~~~~~~~~~~~~~~~~~~~~~~~~~
/home/mramotow/repos/pmemfile/strace.ebpf/test/test_syscalls.c:96:2: warning: ignoring return value of ‘read’, declared with attribute warn_unused_result [-Wunused-result]
read(fd, buffer, BUF_LEN);
^~~~~~~~~~~~~~~~~~~~~~~~~
/home/mramotow/repos/pmemfile/strace.ebpf/test/test_syscalls.c:113:2: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
write(0x101, buffer, 1);
^~~~~~~~~~~~~~~~~~~~~~~
/home/mramotow/repos/pmemfile/strace.ebpf/test/test_syscalls.c:114:2: warning: ignoring return value of ‘read’, declared with attribute warn_unused_result [-Wunused-result]
read (0x102, buffer, 2);
^~~~~~~~~~~~~~~~~~~~~~~

/home/mramotow/repos/pmemfile/strace.ebpf/test/test_syscalls.c: In function ‘test_unsupported_syscalls’:
/home/mramotow/repos/pmemfile/strace.ebpf/test/test_syscalls.c:126:2: warning: ignoring return value of ‘chroot’, declared with attribute warn_unused_result [-Wunused-result]
chroot(NON_EXIST_PATH_1);
^~~~~~~~~~~~~~~~~~~~~~~~
/home/mramotow/repos/pmemfile/strace.ebpf/test/test_syscalls.c: In function ‘test_basic_syscalls’:
/home/mramotow/repos/pmemfile/strace.ebpf/test/test_syscalls.c:94:2: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
write(fd, buffer, BUF_LEN);
^~~~~~~~~~~~~~~~~~~~~~~~~~
/home/mramotow/repos/pmemfile/strace.ebpf/test/test_syscalls.c:96:2: warning: ignoring return value of ‘read’, declared with attribute warn_unused_result [-Wunused-result]
read(fd, buffer, BUF_LEN);
^~~~~~~~~~~~~~~~~~~~~~~~~
/home/mramotow/repos/pmemfile/strace.ebpf/test/test_syscalls.c:113:2: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
write(0x101, buffer, 1);
^~~~~~~~~~~~~~~~~~~~~~~
/home/mramotow/repos/pmemfile/strace.ebpf/test/test_syscalls.c:114:2: warning: ignoring return value of ‘read’, declared with attribute warn_unused_result [-Wunused-result]
read (0x102, buffer, 2);
^~~~~~~~~~~~~~~~~~~~~~~

build: repository does not build

Found on revision: d80a218 with gcc 5.4 on kernel 4.8.0-34 and 4.9.4-rc4. On kernel 4.9.4 it is building.

/home/mramotow/repos/pmemfile/strace.ebpf/src/bpf_ctx.c: In function ‘attach_callback_to_perf_output’:
/home/mramotow/repos/pmemfile/strace.ebpf/src/bpf_ctx.c:141:41: warning: passing argument 3 of ‘bpf_open_perf_buffer’ makes pointer from integer without a cast [-Wint-conversion]
bpf_open_perf_buffer(callback, NULL, -1, cpu,
^
In file included from /home/mramotow/repos/pmemfile/strace.ebpf/src/bpf_ctx.c:46:0:
/usr/include/bcc/libbpf.h:72:8: note: expected ‘void *’ but argument is of type ‘int’
void * bpf_open_perf_buffer(perf_reader_raw_cb raw_cb,
^
/home/mramotow/repos/pmemfile/strace.ebpf/src/bpf_ctx.c:141:4: error: too few arguments to function ‘bpf_open_perf_buffer’
bpf_open_perf_buffer(callback, NULL, -1, cpu,
^
In file included from /home/mramotow/repos/pmemfile/strace.ebpf/src/bpf_ctx.c:46:0:
/usr/include/bcc/libbpf.h:72:8: note: declared here
void * bpf_open_perf_buffer(perf_reader_raw_cb raw_cb,
^
src/CMakeFiles/strace.ebpf.dir/build.make:146: recipe for target 'src/CMakeFiles/strace.ebpf.dir/bpf_ctx.c.o' failed
make[2]: *** [src/CMakeFiles/strace.ebpf.dir/bpf_ctx.c.o] Error 1
CMakeFiles/Makefile2:314: recipe for target 'src/CMakeFiles/strace.ebpf.dir/all' failed
make[1]: *** [src/CMakeFiles/strace.ebpf.dir/all] Error 2
Makefile:138: recipe for target 'all' failed
make: *** [all] Error 2

cmake: make install works but do nothing

make install
[ 4%] Built target check_license_executable
[ 9%] Built target test_syscalls
[ 25%] Built target strace
[ 79%] Built target ebpf
[ 95%] Built target strace.ebpf
[100%] Built target file_sc_bench
Install the project...
-- Install configuration: ""
make uninstall
make: *** No rule to make target 'uninstall'. Stop.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.