Add RPM support
This commit is contained in:
parent
b7973dbf0d
commit
1122e1c800
32
.rpm/protomask.spec
Normal file
32
.rpm/protomask.spec
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
%define __spec_install_post %{nil}
|
||||||
|
%define __os_install_post %{_dbpath}/brp-compress
|
||||||
|
%define debug_package %{nil}
|
||||||
|
|
||||||
|
Name: protomask
|
||||||
|
Summary: A user space NAT64 implementation
|
||||||
|
Version: @@VERSION@@
|
||||||
|
Release: @@RELEASE@@%{?dist}
|
||||||
|
License: GPL-3.0
|
||||||
|
Group: Applications/System
|
||||||
|
Source0: %{name}-%{version}.tar.gz
|
||||||
|
URL: https://github.com/ewpratten/protomask
|
||||||
|
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%install
|
||||||
|
rm -rf %{buildroot}
|
||||||
|
mkdir -p %{buildroot}
|
||||||
|
cp -a * %{buildroot}
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{_bindir}/*
|
11
Cargo.toml
11
Cargo.toml
@ -5,7 +5,7 @@ authors = ["Evan Pratten <ewpratten@gmail.com>"]
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "A user space NAT64 implementation"
|
description = "A user space NAT64 implementation"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
homepage = "https://protomask.ewpratten.com"
|
homepage = "https://github.com/ewpratten/protomask"
|
||||||
documentation = "https://docs.rs/protomask"
|
documentation = "https://docs.rs/protomask"
|
||||||
repository = "https://github.com/ewpratten/protomask"
|
repository = "https://github.com/ewpratten/protomask"
|
||||||
license = "GPL-3.0"
|
license = "GPL-3.0"
|
||||||
@ -33,3 +33,12 @@ futures = "0.3.28"
|
|||||||
[[bin]]
|
[[bin]]
|
||||||
name = "protomask"
|
name = "protomask"
|
||||||
path = "src/main.rs"
|
path = "src/main.rs"
|
||||||
|
|
||||||
|
[package.metadata.rpm]
|
||||||
|
package = "protomask"
|
||||||
|
|
||||||
|
[package.metadata.rpm.cargo]
|
||||||
|
buildflags = ["--release"]
|
||||||
|
|
||||||
|
[package.metadata.rpm.targets]
|
||||||
|
protomask = { path = "/usr/bin/protomask" }
|
||||||
|
24
debug.sh
24
debug.sh
@ -1,24 +0,0 @@
|
|||||||
#! /bin/bash
|
|
||||||
# A little script to isolate and run protomask for testing
|
|
||||||
set -ex
|
|
||||||
|
|
||||||
# Set up network namespace
|
|
||||||
ip netns del protomask || true
|
|
||||||
ip netns add protomask
|
|
||||||
ip netns exec protomask ip link set lo up
|
|
||||||
ip netns exec protomask ip link add test1 type dummy
|
|
||||||
ip netns exec protomask ip link set test1 up
|
|
||||||
ip netns exec protomask ip addr add 2001:db8:1::2 dev test1
|
|
||||||
ip netns exec protomask ip link add test2 type dummy
|
|
||||||
ip netns exec protomask ip link set test2 up
|
|
||||||
ip netns exec protomask ip addr add 172.16.10.2 dev test2
|
|
||||||
|
|
||||||
# Turn off the firewall for the test interfaces
|
|
||||||
ip netns exec protomask firewall-cmd --zone=trusted --add-interface=nat64i0
|
|
||||||
ip netns exec protomask firewall-cmd --zone=trusted --add-interface=test1
|
|
||||||
ip netns exec protomask firewall-cmd --zone=trusted --add-interface=test2
|
|
||||||
|
|
||||||
# Run protomask
|
|
||||||
ip netns exec protomask ./target/x86_64-unknown-linux-musl/debug/protomask protomask.toml -v
|
|
||||||
|
|
||||||
|
|
@ -93,11 +93,13 @@ impl Nat64Interface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Get the interface mode
|
/// Get the interface mode
|
||||||
|
#[allow(dead_code)]
|
||||||
pub fn mode(&self) -> Mode {
|
pub fn mode(&self) -> Mode {
|
||||||
self.interface.mode()
|
self.interface.mode()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get the interface name
|
/// Get the interface nam
|
||||||
|
#[allow(dead_code)]
|
||||||
pub fn name(&self) -> &str {
|
pub fn name(&self) -> &str {
|
||||||
self.interface.name()
|
self.interface.name()
|
||||||
}
|
}
|
||||||
|
@ -53,6 +53,7 @@ impl IpPacket<'_> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Returns the packet header
|
/// Returns the packet header
|
||||||
|
#[allow(dead_code)]
|
||||||
pub fn get_header(&self) -> &[u8] {
|
pub fn get_header(&self) -> &[u8] {
|
||||||
match self {
|
match self {
|
||||||
IpPacket::V4(packet) => packet.packet()[..20].as_ref(),
|
IpPacket::V4(packet) => packet.packet()[..20].as_ref(),
|
||||||
@ -61,6 +62,7 @@ impl IpPacket<'_> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Returns the packet payload
|
/// Returns the packet payload
|
||||||
|
#[allow(dead_code)]
|
||||||
pub fn get_payload(&self) -> &[u8] {
|
pub fn get_payload(&self) -> &[u8] {
|
||||||
match self {
|
match self {
|
||||||
IpPacket::V4(packet) => packet.payload(),
|
IpPacket::V4(packet) => packet.payload(),
|
||||||
@ -77,6 +79,7 @@ impl IpPacket<'_> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Returns the packet length
|
/// Returns the packet length
|
||||||
|
#[allow(dead_code)]
|
||||||
pub fn len(&self) -> usize {
|
pub fn len(&self) -> usize {
|
||||||
match self {
|
match self {
|
||||||
IpPacket::V4(packet) => packet.packet().len(),
|
IpPacket::V4(packet) => packet.packet().len(),
|
||||||
@ -93,6 +96,7 @@ impl IpPacket<'_> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Get the TTL
|
/// Get the TTL
|
||||||
|
#[allow(dead_code)]
|
||||||
pub fn get_ttl(&self) -> u8 {
|
pub fn get_ttl(&self) -> u8 {
|
||||||
match self {
|
match self {
|
||||||
IpPacket::V4(packet) => packet.get_ttl(),
|
IpPacket::V4(packet) => packet.get_ttl(),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user