lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Tue, 28 Apr 2015 09:45:08 +0200
From:	Daniel Borkmann <daniel@...earbox.net>
To:	Stephen Hemminger <stephen@...workplumber.org>
CC:	hannes@...essinduktion.org, ast@...mgrid.com,
	netdev@...r.kernel.org
Subject: Re: [PATCH iproute2 -next v2] tc: built-in eBPF exec proxy

On 04/28/2015 01:41 AM, Stephen Hemminger wrote:
...
> This will go in for 4.1 version of iproute2.

Ok, thanks!

Btw, I noticed that we still need a header rebase for the 'master'
branch.

Due to the merge window, eBPF support for tracing came in as well
meaning currently, the kernel thinks we intend to attach a kprobe
program from tc side:

iproute2 version:

   enum bpf_prog_type {
     BPF_PROG_TYPE_UNSPEC,
     BPF_PROG_TYPE_SOCKET_FILTER,
     BPF_PROG_TYPE_SCHED_CLS,
     BPF_PROG_TYPE_SCHED_ACT,
   };

kernel version (include/uapi/linux/bpf.h):

   enum bpf_prog_type {
     BPF_PROG_TYPE_UNSPEC,
     BPF_PROG_TYPE_SOCKET_FILTER,
     BPF_PROG_TYPE_KPROBE,
     BPF_PROG_TYPE_SCHED_CLS,
     BPF_PROG_TYPE_SCHED_ACT,
   };

Afaik, you have a script for doing that, otherwise I can also send
you a patch.

Thanks,
Daniel
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ