honey-potion

🍯 Honey Potion - Writing eBPF with Elixir 🍯

Hex Version Hex Docs Total Download License Last Updated

🐝 About

Honey Potion is a framework that brings the power of eBPF to Elixir, allowing users to write Elixir code that is transformed into eBPF bytecode.

In this alpha version, Honey Potion translates Elixir code into a subset of C that leverages libbpf. The generated C code is then compiled using clang to produce the eBPF bytecode, which can be loaded into the kernel.

Honey Potion Logo


πŸ“¦ Dependencies

Honey Potion requires the following dependencies, listed with their Ubuntu package names (equivalents exist for other distributions):

ℹ️ Note: You can manually compile clang, llc, and bpftool, as long as they are available in your $PATH.


πŸŽ₯ Video Guide

Prefer a video tutorial? Check out the Honey Potion YouTube playlist with step-by-step guides.

YouTube Thumbnail


πŸš€ Installation

Add honey to your project’s dependencies in mix.exs:

def deps do
  [
    {:honey, git: "https://github.com/lac-dcc/honey-potion/", submodules: true}
  ]
end

πŸ“ Usage

When you use Honey in your module, it will be translated to C the next time you compile your project.

defmodule Minimal do
  use Honey, license: "Dual BSD/GPL"
  # ...
end

This generates the following directories:

To run your program, navigate to the bin/ directory and execute the binary with appropriate privileges.

πŸ”§ Command-line Options

🎯 The main/1 Function

Every module using Honey must define a main/1 function that serves as the entry point for the eBPF program.

defmodule Example.Minimal do
  use Honey, license: "Dual BSD/GPL"

  @sec "tracepoint/syscalls/sys_enter_kill"
  def main(ctx) do
    # ...
  end
end

For detailed documentation and examples, see:

Or watch the YouTube tutorial.


⚠️ Runtime Exceptions

As Elixir is a dynamically typed language, we simulate runtime exceptions when translating programs to eBPF.

In this Alpha version, if an exception occurs, it will be printed to the debug pipe, and the program will exit with status 0.


🚧 Current Limitations

Honey Potion is still in Alpha, and many features are still being developed. Some known limitations include:

We are actively working to improve Honey Potion. Stay tuned!


🀝 Contributing

Contributions are welcome! To avoid redundant work, please reach out before submitting major changes.

Feedback and suggestions are highly appreciated! You can:


πŸ“œ License

Honey Potion is maintained by the Compilers Laboratory at the Federal University of Minas Gerais (UFMG), Brazil.

This program is free software under the terms of the GNU General Public License (GPLv3).

For details, see the full license: GNU GPL v3.