Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1449036
| From | Alexei Starovoitov <alexei.starovoitov@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH net-next v5 2/2] samples/bpf: Add test/example of using bpf_probe_write_user bpf helper |
| Date | 2016-07-24 03:20 +0200 |
| Message-ID | <rYgfg-1ri-11@gated-at.bofh.it> (permalink) |
| References | <rYfMd-12O-13@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Sat, Jul 23, 2016 at 05:44:11PM -0700, Sargun Dhillon wrote:
> This example shows using a kprobe to act as a dnat mechanism to divert
> traffic for arbitrary endpoints. It rewrite the arguments to a syscall
> while they're still in userspace, and before the syscall has a chance
> to copy the argument into kernel space.
>
> Although this is an example, it also acts as a test because the mapped
> address is 255.255.255.255:555 -> real address, and that's not a legal
> address to connect to. If the helper is broken, the example will fail.
nice. makes sense.
> Signed-off-by: Sargun Dhillon <sargun@sargun.me>
...
> +/* Copyright (c) 2013-2015 PLUMgrid, http://plumgrid.com
hmm, not sure what to think about this line.
plumgrid got a new employee? ;)
> + if (load_bpf_file(filename)) {
> + printf("%s", bpf_log_buf);
> + return 1;
> + }
> +
> + /* Is the server's getsockname = the socket getpeername */
> + assert(memcmp(&serv_addr, &tmp_addr, sizeof(struct sockaddr_in)) == 0);
thanks. so the $?==0 will indicate success, right?
After respin feel free to add my ack.
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH net-next v5 2/2] samples/bpf: Add test/example of using bpf_probe_write_user bpf helper Sargun Dhillon <sargun@sargun.me> - 2016-07-24 02:50 +0200 Re: [PATCH net-next v5 2/2] samples/bpf: Add test/example of using bpf_probe_write_user bpf helper Alexei Starovoitov <alexei.starovoitov@gmail.com> - 2016-07-24 03:20 +0200
csiph-web