ausimian
I just pushed a library called BPF that converts binary pattern matching expressions into (classic) BPF (Berkeley Packet Filter) programs that you can use with SO_ATTACHFILTER or libpcap. There’s also an interpreter that allows you to test your programs against binaries.
BPF programs are essentially predicates on packets that run in the kernel and are usually used to filter traffic efficiently for programs like tcpdump etc, They are described using a Turing-incomplete instruction set.
I intend to add some integration tests using Tundra shortly.
Features
- Elixir syntax - Write filters using binary pattern matching and guards
- Multi-clause support - Multiple patterns with fallthrough semantics
- Guard expressions - Comparisons, logical operators, bitwise operations, arithmetic
- Packet length filtering - Use
byte_size(packet)to filter by packet size- SSA-based compiler - Optimized code generation with register allocation
Trending in Announcing
Hey everyone!
Req is an HTTP client for Elixir that I’ve been working on for quite some time. There is already a lot of HTTP clients out...
New
Samly can be used to enable SAML 2.0 Single Sign On in a Plug/Phoenix application.
This library uses Erlang esaml to provide
plug enabl...
New
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries.
offset-based pagination with...
New
The repo is at GitHub - cyberchitta/openai_ex: Community maintained Elixir library for OpenAI API · GitHub.
Docs are at OpenaiEx User Gu...
New
The Chelekom project is a library of Phoenix and LiveView components generated via Mix tasks to fit developer needs seamlessly.
One of i...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi all!
I want to present a small library which provides a mix task for generating an Entity-Relationship Diagram for Ecto schemas.
You...
New
Other Trending Topics
I am seeing a lot of aplications of Argumentum ad Vericundiam in software discussions. They do link some piece of writing and point us to...
New
Hey folks,
I just published a post about Hologram’s funding and where the project goes next - the short version:
Curiosum as Main Spons...
New
Fly’s CEO posted this recently - Turn And Face The Strange · The Fly Blog
It says that Fly is going all-in on sprites, which is a worry ...
New
Today we’re releasing Oban for Python. Not an Oban client in Python. Not a pythonx wrapper embedded in Elixir. Nope, it’s a fully operati...
New
We’re evaluating API mocking tools for OpenAPI-based projects and would love to hear what other teams are using.
We’re particularly inte...
New
Is there a word for the ~> symbol used in Version strings?
Do you also just call it a Squiggle Arrow™ ?!
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
Asd
Very cool! Do you have any example setup for how to call libpcap with it?
ausimian
Not currently.
If you specifically want libpcap integration (i.e. take a dependency on libpcap.so/dylib at runtime). You could write a NIF that takes the interface and the assembled bytes and does something like:
If i was doing this, i’d use
pcap_get_selectable_fdand then integrate it with enif_select_read to avoid any blocking issues and play nicely with the scheduler (or stick the pcap loop on a thread, and mark it as a dirty nif, but i prefer to not manage threads in my NIFs)If you’re (only) on Linux you can skip most of this and set it all up through the erlang :socket module directly using raw sockets at the link or ip layer depending on your use case. Unfortunately, you still need a (tiny) NIF to handle setting the
SO_ATTACH_FILTERoptions as the C struct it takes is not describable in Erlang (it contains pointers)On the elixir side:
On the C side:
You can then read the sock on the elixir side.
(None of the above code is tested, I’m winging it)
Asd
Gotcha, so it generates a
struct sock_filter, I see, thanks. I will try to play with it then. Again, looks very interestingausimian
I just did it anyway. I haven’t published a package for it yet, but I probably will.
https://github.com/ausimian/peacap
ausimian
I published it. I’ve tested it on macos and linux, but i haven’t stressed it.
Asd
D:
That’s very nice. I can finally play with covert channels in Elixir. I think this library deserves a separate topic!