1

Add RPM support

This commit is contained in:
Evan Pratten 2023-07-17 18:47:02 -04:00
parent b7973dbf0d
commit 1122e1c800
5 changed files with 49 additions and 26 deletions

32
.rpm/protomask.spec Normal file
View 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}/*

View File

@ -5,7 +5,7 @@ authors = ["Evan Pratten <ewpratten@gmail.com>"]
edition = "2021"
description = "A user space NAT64 implementation"
readme = "README.md"
homepage = "https://protomask.ewpratten.com"
homepage = "https://github.com/ewpratten/protomask"
documentation = "https://docs.rs/protomask"
repository = "https://github.com/ewpratten/protomask"
license = "GPL-3.0"
@ -33,3 +33,12 @@ futures = "0.3.28"
[[bin]]
name = "protomask"
path = "src/main.rs"
[package.metadata.rpm]
package = "protomask"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
protomask = { path = "/usr/bin/protomask" }

View File

@ -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

View File

@ -93,11 +93,13 @@ impl Nat64Interface {
}
/// Get the interface mode
#[allow(dead_code)]
pub fn mode(&self) -> Mode {
self.interface.mode()
}
/// Get the interface name
/// Get the interface nam
#[allow(dead_code)]
pub fn name(&self) -> &str {
self.interface.name()
}

View File

@ -53,6 +53,7 @@ impl IpPacket<'_> {
}
/// Returns the packet header
#[allow(dead_code)]
pub fn get_header(&self) -> &[u8] {
match self {
IpPacket::V4(packet) => packet.packet()[..20].as_ref(),
@ -61,6 +62,7 @@ impl IpPacket<'_> {
}
/// Returns the packet payload
#[allow(dead_code)]
pub fn get_payload(&self) -> &[u8] {
match self {
IpPacket::V4(packet) => packet.payload(),
@ -77,6 +79,7 @@ impl IpPacket<'_> {
}
/// Returns the packet length
#[allow(dead_code)]
pub fn len(&self) -> usize {
match self {
IpPacket::V4(packet) => packet.packet().len(),
@ -93,6 +96,7 @@ impl IpPacket<'_> {
}
/// Get the TTL
#[allow(dead_code)]
pub fn get_ttl(&self) -> u8 {
match self {
IpPacket::V4(packet) => packet.get_ttl(),