Skip to content
This repository has been archived by the owner on Jan 19, 2023. It is now read-only.

RTXUX/warp-bpf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cloudflare Warp BPF Filter

Deprecation

Deprecated: It turns out that nft support payload statement which can be used to alter packet content. It's much easier to use, so this tool is deprecated.

Introduction

A simple & stupid tool that mangles warp packets to emulate official Cloudflare Warp client.

It uses 4-tuple (Remote Address, Local Port, Remote Port, UDP) to match packets.

Limitations

  • Only ethernet interfaces are supported
  • IPv6 Option Headers are not supported
  • Only support at most 1 level VLAN header

Build

Dependencies

  • libbpf
  • clang

Build

  • Just cd into this directory and type
make

Usage

Setup

  1. Attach BPF programs

    • warp_bpf.sh attach <devname>
  2. Add tuple and routing id to BPF map

    • warp_bpf_cli add <remote_addr> <local_port> <remote_port> <routing id delimited with spaces>
    • IPv4 address show be presented in IPv6-compact format: ::a.b.c.d
  3. Enjoy!

Teardown

  1. Detach BPF programs

    • warp_bpf.sh detach <devname>
  2. Unpin BPF map so that it can be destroyed

    • warp_bpf.sh teardown

Notes

  1. I assume your bpf filesystem is mounted at /sys/fs/bpf

About

A simple & stupid TC BPF filter that mangles warp packets to emulate official Cloudflare Warp client

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published