diff --git a/.github/workflows/cd-docs.yml b/.github/workflows/cd-docs.yml
index 2f1f9248616..9b6e6facc56 100644
--- a/.github/workflows/cd-docs.yml
+++ b/.github/workflows/cd-docs.yml
@@ -2,15 +2,14 @@ name: cd-docs
on:
workflow_dispatch:
- push:
- paths:
- - 'documentation/docs/**'
jobs:
build:
- runs-on: custom-linux
+ runs-on: ubuntu-20.04-16-core
steps:
- uses: actions/checkout@v3
+ - name: Install Dependencies (Linux)
+ run: sudo apt-get update && sudo apt-get install -y build-essential curl wget libssl-dev libudev-dev squashfs-tools protobuf-compiler
- name: Install rsync
run: sudo apt-get install rsync
- uses: rlespinasse/github-slug-action@v3.x
@@ -26,14 +25,11 @@ jobs:
with:
command: build
args: --workspace --release
- - name: Install mdbook
- run: (test -x $HOME/.cargo/bin/mdbook || cargo install --vers "^0.4.33" mdbook)
- - name: Install mdbook plugins
- run: |
- cargo install --vers "=0.2.2" mdbook-variables && cargo install \
- --vers "^1.8.0" mdbook-admonish && cargo install --vers \
- "^0.1.2" mdbook-last-changed && cargo install --vers "^0.1.2" mdbook-theme \
- && cargo install --vers "^0.7.7" mdbook-linkcheck
+ - name: Install mdbook and plugins
+ run: cd documentation && ./install_mdbook_deps.sh
+ - name: Remove existing Nym config directory (`~/.nym/`)
+ run: cd documentation && ./remove_existing_config.sh
+ continue-on-error: false
- name: Build all projects in documentation/ & move to ~/dist/docs/
run: cd documentation && ./build_all_to_dist.sh
continue-on-error: false
@@ -52,6 +48,7 @@ jobs:
- name: Install Vercel CLI
run: npm install --global vercel@latest
+ continue-on-error: false
- name: Pull Vercel Environment Information (preview)
if: github.ref != 'refs/heads/master'
@@ -61,15 +58,18 @@ jobs:
if: github.ref == 'refs/heads/master'
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
working-directory: dist/docs
+ continue-on-error: false
- name: Build Project Artifacts (preview)
if: github.ref != 'refs/heads/master'
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
working-directory: dist/docs
+ continue-on-error: false
- name: Build Project Artifacts (production)
if: github.ref == 'refs/heads/master'
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
working-directory: dist/docs
+ continue-on-error: false
- name: Deploy Project Artifacts to Vercel (preview)
if: github.ref != 'refs/heads/master'
@@ -79,6 +79,7 @@ jobs:
if: github.ref == 'refs/heads/master'
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
working-directory: dist/docs
+ continue-on-error: false
- name: Matrix - Node Install
run: npm install
diff --git a/.github/workflows/ci-docs.yml b/.github/workflows/ci-docs.yml
index 3bcf0a26792..7e67a9f4326 100644
--- a/.github/workflows/ci-docs.yml
+++ b/.github/workflows/ci-docs.yml
@@ -9,9 +9,11 @@ on:
jobs:
build:
- runs-on: custom-linux
+ runs-on: ubuntu-20.04-16-core
steps:
- uses: actions/checkout@v3
+ - name: Install Dependencies (Linux)
+ run: sudo apt-get update && sudo apt-get install -y build-essential curl wget libssl-dev libudev-dev squashfs-tools protobuf-compiler
- name: Install rsync
run: sudo apt-get install rsync
- uses: rlespinasse/github-slug-action@v3.x
@@ -27,22 +29,15 @@ jobs:
with:
command: build
args: --workspace --release
- - name: Install mdbook
- run: (test -x $HOME/.cargo/bin/mdbook || cargo install --vers "^0.4.35" mdbook)
- - name: Install mdbook plugins
- run: |
- cargo install --vers "=0.2.2" mdbook-variables && cargo install \
- --vers "^1.8.0" mdbook-admonish --force && cargo install --vers \
- "^0.1.2" mdbook-last-changed && cargo install --vers "^0.1.2" mdbook-theme \
- && cargo install --vers "^0.7.7" mdbook-linkcheck \
- # && cd documentation \
- # && mdbook-admonish install dev-portal \
- # && mdbook-admonish install docs \
- # && mdbook-admonish install operators
-
+ - name: Install mdbook and plugins
+ run: cd documentation && ./install_mdbook_deps.sh
+ - name: Remove existing Nym config directory (`~/.nym/`)
+ run: cd documentation && ./remove_existing_config.sh
+ continue-on-error: false
- name: Build all projects in documentation/ & move to ~/dist/docs/
- run: cd documentation && ./build_all_to_dist.sh
+ run: cd documentation && ./build_all_to_dist.sh
continue-on-error: false
+
- name: Deploy branch to CI www
continue-on-error: true
uses: easingthemes/ssh-deploy@main
@@ -54,6 +49,7 @@ jobs:
REMOTE_USER: ${{ secrets.CI_WWW_REMOTE_USER }}
TARGET: ${{ secrets.CI_WWW_REMOTE_TARGET }}/docs-${{ env.GITHUB_REF_SLUG }}
EXCLUDE: "/node_modules/"
+
- name: Matrix - Node Install
run: npm install
working-directory: .github/workflows/support-files
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bc5d422ecd8..f5a720221c8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,28 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https://
## [Unreleased]
+## [2023.5-rolo] (2023-11-28)
+
+- Gateway won't open websocket listener until embedded Network Requester becomes available ([#4166])
+- Feature/gateway described nr ([#4147])
+- Bugfix/prerelease versionbump ([#4145])
+- returning 'nil' for non-existing origin as opposed to an empty string ([#4135])
+- using performance^20 when calculating active set selection weight ([#4126])
+- Change default http API timeout from 3s to 10s ([#4117])
+
+[#4166]: https://github.com/nymtech/nym/issues/4166
+[#4147]: https://github.com/nymtech/nym/pull/4147
+[#4145]: https://github.com/nymtech/nym/pull/4145
+[#4135]: https://github.com/nymtech/nym/pull/4135
+[#4126]: https://github.com/nymtech/nym/pull/4126
+[#4117]: https://github.com/nymtech/nym/pull/4117
+
+## [2023.nyxd-upgrade] (2023-11-22)
+
+- Chore/nyxd 043 upgrade ([#3968])
+
+[#3968]: https://github.com/nymtech/nym/pull/3968
+
## [2023.4-galaxy] (2023-11-07)
- DRY up client cli ([#4077])
diff --git a/Cargo.lock b/Cargo.lock
index 2f406bb985b..0b8497f9a0c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -628,17 +628,6 @@ dependencies = [
"event-listener",
]
-[[package]]
-name = "async-recursion"
-version = "1.0.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.38",
-]
-
[[package]]
name = "async-stream"
version = "0.3.5"
@@ -1030,29 +1019,6 @@ version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "845141a4fade3f790628b7daaaa298a25b204fb28907eb54febe5142db6ce653"
-[[package]]
-name = "boringtun"
-version = "0.6.0"
-source = "git+https://github.com/cloudflare/boringtun?rev=e1d6360d6ab4529fc942a078e4c54df107abe2ba#e1d6360d6ab4529fc942a078e4c54df107abe2ba"
-dependencies = [
- "aead 0.5.2",
- "base64 0.13.1",
- "blake2 0.10.6",
- "chacha20poly1305 0.10.1",
- "hex",
- "hmac 0.12.1",
- "ip_network",
- "ip_network_table",
- "libc",
- "nix 0.25.1",
- "parking_lot 0.12.1",
- "rand_core 0.6.4",
- "ring 0.16.20",
- "tracing",
- "untrusted 0.9.0",
- "x25519-dalek 2.0.0",
-]
-
[[package]]
name = "brotli"
version = "3.4.0"
@@ -1554,8 +1520,8 @@ version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2895653b4d9f1538a83970077cb01dfc77a4810524e51a110944688e916b18e"
dependencies = [
- "prost",
- "prost-types",
+ "prost 0.11.9",
+ "prost-types 0.11.9",
"tonic",
"tracing-core",
]
@@ -1572,7 +1538,7 @@ dependencies = [
"futures",
"hdrhistogram",
"humantime 2.1.0",
- "prost-types",
+ "prost-types 0.11.9",
"serde",
"serde_json",
"thread_local",
@@ -1661,30 +1627,30 @@ dependencies = [
[[package]]
name = "cosmos-sdk-proto"
-version = "0.19.0"
+version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "73c9d2043a9e617b0d602fbc0a0ecd621568edbf3a9774890a6d562389bd8e1c"
+checksum = "32560304ab4c365791fd307282f76637213d8083c1a98490c35159cd67852237"
dependencies = [
- "prost",
- "prost-types",
+ "prost 0.12.1",
+ "prost-types 0.12.1",
"tendermint-proto",
]
[[package]]
name = "cosmrs"
-version = "0.14.0"
+version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "af13955d6f356272e6def9ff5e2450a7650df536d8934f47052a20c76513d2f6"
+checksum = "47126f5364df9387b9d8559dcef62e99010e1d4098f39eb3f7ee4b5c254e40ea"
dependencies = [
"bip32",
"cosmos-sdk-proto",
"ecdsa 0.16.8",
"eyre",
- "getrandom 0.2.10",
"k256",
"rand_core 0.6.4",
"serde",
"serde_json",
+ "signature 2.1.0",
"subtle-encoding",
"tendermint",
"tendermint-rpc",
@@ -2009,15 +1975,6 @@ dependencies = [
"subtle 2.4.1",
]
-[[package]]
-name = "ct-logs"
-version = "0.8.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c1a816186fa68d9e426e3cb4ae4dff1fcd8e4a2c34b781bf7a822574a0d0aac8"
-dependencies = [
- "sct 0.6.1",
-]
-
[[package]]
name = "ctor"
version = "0.1.26"
@@ -2346,6 +2303,25 @@ dependencies = [
"syn 1.0.109",
]
+[[package]]
+name = "defguard_wireguard_rs"
+version = "0.3.0"
+source = "git+https://github.com/neacsu/wireguard-rs.git?rev=c2cd0c1119f699f4bc43f5e6ffd6fc242caa42ed#c2cd0c1119f699f4bc43f5e6ffd6fc242caa42ed"
+dependencies = [
+ "base64 0.21.4",
+ "libc",
+ "log",
+ "netlink-packet-core 0.7.0",
+ "netlink-packet-generic",
+ "netlink-packet-route 0.17.1",
+ "netlink-packet-utils",
+ "netlink-packet-wireguard",
+ "netlink-sys",
+ "nix 0.27.1",
+ "serde",
+ "thiserror",
+]
+
[[package]]
name = "der"
version = "0.6.1"
@@ -2938,7 +2914,7 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
[[package]]
name = "explorer-api"
-version = "1.1.31"
+version = "1.1.32"
dependencies = [
"chrono",
"clap 4.4.7",
@@ -3696,30 +3672,6 @@ dependencies = [
"num-traits",
]
-[[package]]
-name = "headers"
-version = "0.3.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270"
-dependencies = [
- "base64 0.21.4",
- "bytes",
- "headers-core",
- "http",
- "httpdate",
- "mime",
- "sha1",
-]
-
-[[package]]
-name = "headers-core"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
-dependencies = [
- "http",
-]
-
[[package]]
name = "heck"
version = "0.3.3"
@@ -3957,41 +3909,18 @@ dependencies = [
"want",
]
-[[package]]
-name = "hyper-proxy"
-version = "0.9.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ca815a891b24fdfb243fa3239c86154392b0953ee584aa1a2a1f66d20cbe75cc"
-dependencies = [
- "bytes",
- "futures",
- "headers",
- "http",
- "hyper",
- "hyper-rustls",
- "rustls-native-certs",
- "tokio",
- "tokio-rustls 0.22.0",
- "tower-service",
- "webpki 0.21.4",
-]
-
[[package]]
name = "hyper-rustls"
-version = "0.22.1"
+version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5f9f7a97316d44c0af9b0301e65010573a853a9fc97046d7331d7f6bc0fd5a64"
+checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97"
dependencies = [
- "ct-logs",
"futures-util",
+ "http",
"hyper",
- "log",
- "rustls 0.19.1",
- "rustls-native-certs",
+ "rustls 0.21.7",
"tokio",
- "tokio-rustls 0.22.0",
- "webpki 0.21.4",
- "webpki-roots 0.21.1",
+ "tokio-rustls 0.24.1",
]
[[package]]
@@ -4248,22 +4177,6 @@ version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa2f047c0a98b2f299aa5d6d7088443570faae494e9ae1305e48be000c9e0eb1"
-[[package]]
-name = "ip_network_table"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4099b7cfc5c5e2fe8c5edf3f6f7adf7a714c9cc697534f63a5a5da30397cb2c0"
-dependencies = [
- "ip_network",
- "ip_network_table-deps-treebitmap",
-]
-
-[[package]]
-name = "ip_network_table-deps-treebitmap"
-version = "0.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8e537132deb99c0eb4b752f0346b6a836200eaaa3516dd7e5514b63930a09e5d"
-
[[package]]
name = "ipconfig"
version = "0.3.2"
@@ -4658,7 +4571,7 @@ dependencies = [
"once_cell",
"parking_lot 0.12.1",
"pin-project",
- "prost",
+ "prost 0.11.9",
"prost-build",
"rand 0.8.5",
"rw-stream-sink 0.3.0 (git+https://github.com/ChainSafe/rust-libp2p.git?rev=e3440d25681df380c9f0f8cfdcfd5ecc0a4f2fb6)",
@@ -4744,7 +4657,7 @@ dependencies = [
"libp2p-swarm 0.42.0",
"log",
"prometheus-client",
- "prost",
+ "prost 0.11.9",
"prost-build",
"prost-codec",
"rand 0.8.5",
@@ -4802,7 +4715,7 @@ dependencies = [
"libp2p-swarm 0.42.0",
"log",
"lru 0.9.0",
- "prost",
+ "prost 0.11.9",
"prost-build",
"prost-codec",
"smallvec",
@@ -4952,7 +4865,7 @@ dependencies = [
"libp2p-core 0.39.0",
"log",
"once_cell",
- "prost",
+ "prost 0.11.9",
"prost-build",
"rand 0.8.5",
"sha2 0.10.8",
@@ -5204,7 +5117,7 @@ dependencies = [
"libp2p-noise 0.42.0",
"log",
"multihash",
- "prost",
+ "prost 0.11.9",
"prost-build",
"prost-codec",
"rand 0.8.5",
@@ -5750,6 +5663,29 @@ dependencies = [
"netlink-packet-utils",
]
+[[package]]
+name = "netlink-packet-core"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "72724faf704479d67b388da142b186f916188505e7e0b26719019c525882eda4"
+dependencies = [
+ "anyhow",
+ "byteorder",
+ "netlink-packet-utils",
+]
+
+[[package]]
+name = "netlink-packet-generic"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1cd7eb8ad331c84c6b8cb7f685b448133e5ad82e1ffd5acafac374af4a5a308b"
+dependencies = [
+ "anyhow",
+ "byteorder",
+ "netlink-packet-core 0.7.0",
+ "netlink-packet-utils",
+]
+
[[package]]
name = "netlink-packet-route"
version = "0.12.0"
@@ -5760,7 +5696,21 @@ dependencies = [
"bitflags 1.3.2",
"byteorder",
"libc",
- "netlink-packet-core",
+ "netlink-packet-core 0.4.2",
+ "netlink-packet-utils",
+]
+
+[[package]]
+name = "netlink-packet-route"
+version = "0.17.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "053998cea5a306971f88580d0829e90f270f940befd7cf928da179d4187a5a66"
+dependencies = [
+ "anyhow",
+ "bitflags 1.3.2",
+ "byteorder",
+ "libc",
+ "netlink-packet-core 0.7.0",
"netlink-packet-utils",
]
@@ -5776,6 +5726,20 @@ dependencies = [
"thiserror",
]
+[[package]]
+name = "netlink-packet-wireguard"
+version = "0.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "60b25b050ff1f6a1e23c6777b72db22790fe5b6b5ccfd3858672587a79876c8f"
+dependencies = [
+ "anyhow",
+ "byteorder",
+ "libc",
+ "log",
+ "netlink-packet-generic",
+ "netlink-packet-utils",
+]
+
[[package]]
name = "netlink-proto"
version = "0.10.0"
@@ -5785,7 +5749,7 @@ dependencies = [
"bytes",
"futures",
"log",
- "netlink-packet-core",
+ "netlink-packet-core 0.4.2",
"netlink-sys",
"thiserror",
"tokio",
@@ -5816,18 +5780,6 @@ dependencies = [
"memoffset 0.6.5",
]
-[[package]]
-name = "nix"
-version = "0.25.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4"
-dependencies = [
- "autocfg 1.1.0",
- "bitflags 1.3.2",
- "cfg-if",
- "libc",
-]
-
[[package]]
name = "nix"
version = "0.27.1"
@@ -5837,6 +5789,7 @@ dependencies = [
"bitflags 2.4.1",
"cfg-if",
"libc",
+ "memoffset 0.9.0",
]
[[package]]
@@ -5961,7 +5914,7 @@ dependencies = [
[[package]]
name = "nym-api"
-version = "1.1.32"
+version = "1.1.34"
dependencies = [
"actix-web",
"anyhow",
@@ -6111,7 +6064,7 @@ dependencies = [
[[package]]
name = "nym-cli"
-version = "1.1.31"
+version = "1.1.33"
dependencies = [
"anyhow",
"base64 0.13.1",
@@ -6184,7 +6137,7 @@ dependencies = [
[[package]]
name = "nym-client"
-version = "1.1.31"
+version = "1.1.32"
dependencies = [
"clap 4.4.7",
"dirs 4.0.0",
@@ -6528,7 +6481,7 @@ dependencies = [
[[package]]
name = "nym-gateway"
-version = "1.1.31"
+version = "1.1.32"
dependencies = [
"anyhow",
"async-trait",
@@ -6538,6 +6491,7 @@ dependencies = [
"clap 4.4.7",
"colored",
"dashmap",
+ "defguard_wireguard_rs",
"dirs 4.0.0",
"dotenvy",
"futures",
@@ -6664,7 +6618,9 @@ dependencies = [
"bincode",
"bytes",
"nym-sphinx",
+ "rand 0.8.5",
"serde",
+ "thiserror",
]
[[package]]
@@ -6689,12 +6645,14 @@ dependencies = [
"nym-tun",
"nym-wireguard",
"nym-wireguard-types",
+ "rand 0.8.5",
"reqwest",
"serde",
"serde_json",
"tap",
"thiserror",
"tokio",
+ "tokio-tun",
"url",
]
@@ -6733,7 +6691,7 @@ dependencies = [
[[package]]
name = "nym-mixnode"
-version = "1.1.33"
+version = "1.1.34"
dependencies = [
"anyhow",
"axum",
@@ -6853,7 +6811,7 @@ dependencies = [
[[package]]
name = "nym-network-requester"
-version = "1.1.31"
+version = "1.1.32"
dependencies = [
"anyhow",
"async-file-watcher",
@@ -6901,7 +6859,7 @@ dependencies = [
[[package]]
name = "nym-network-statistics"
-version = "1.1.31"
+version = "1.1.32"
dependencies = [
"dirs 4.0.0",
"log",
@@ -7146,7 +7104,7 @@ dependencies = [
[[package]]
name = "nym-socks5-client"
-version = "1.1.31"
+version = "1.1.32"
dependencies = [
"clap 4.4.7",
"lazy_static",
@@ -7525,6 +7483,7 @@ version = "0.1.0"
dependencies = [
"async-trait",
"base64 0.13.1",
+ "bip32",
"bip39",
"colored",
"cosmrs",
@@ -7555,7 +7514,7 @@ dependencies = [
"nym-service-provider-directory-common",
"nym-vesting-contract-common",
"openssl",
- "prost",
+ "prost 0.12.1",
"reqwest",
"serde",
"serde_json",
@@ -7606,27 +7565,15 @@ dependencies = [
name = "nym-wireguard"
version = "0.1.0"
dependencies = [
- "async-recursion",
"base64 0.21.4",
- "bincode",
- "boringtun",
- "bytes",
- "dashmap",
- "etherparse",
- "futures",
+ "defguard_wireguard_rs",
"ip_network",
- "ip_network_table",
"log",
- "nym-sphinx",
+ "nym-network-defaults",
"nym-task",
- "nym-tun",
"nym-wireguard-types",
- "rand 0.8.5",
- "serde",
- "tap",
- "thiserror",
"tokio",
- "tokio-tun",
+ "x25519-dalek 2.0.0",
]
[[package]]
@@ -7634,12 +7581,8 @@ name = "nym-wireguard-types"
version = "0.1.0"
dependencies = [
"base64 0.21.4",
- "boringtun",
- "bytes",
"dashmap",
"hmac 0.12.1",
- "ip_network",
- "ip_network_table",
"log",
"nym-crypto",
"rand 0.7.3",
@@ -7647,7 +7590,6 @@ dependencies = [
"serde_json",
"sha2 0.10.8",
"thiserror",
- "tokio",
"utoipa",
"x25519-dalek 2.0.0",
]
@@ -8431,7 +8373,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
dependencies = [
"bytes",
- "prost-derive",
+ "prost-derive 0.11.9",
+]
+
+[[package]]
+name = "prost"
+version = "0.12.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f4fdd22f3b9c31b53c060df4a0613a1c7f062d4115a2b984dd15b1858f7e340d"
+dependencies = [
+ "bytes",
+ "prost-derive 0.12.1",
]
[[package]]
@@ -8448,8 +8400,8 @@ dependencies = [
"multimap",
"petgraph",
"prettyplease",
- "prost",
- "prost-types",
+ "prost 0.11.9",
+ "prost-types 0.11.9",
"regex",
"syn 1.0.109",
"tempfile",
@@ -8463,7 +8415,7 @@ source = "git+https://github.com/ChainSafe/rust-libp2p.git?rev=e3440d25681df380c
dependencies = [
"asynchronous-codec",
"bytes",
- "prost",
+ "prost 0.11.9",
"thiserror",
"unsigned-varint",
]
@@ -8481,13 +8433,35 @@ dependencies = [
"syn 1.0.109",
]
+[[package]]
+name = "prost-derive"
+version = "0.12.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "265baba7fabd416cf5078179f7d2cbeca4ce7a9041111900675ea7c4cb8a4c32"
+dependencies = [
+ "anyhow",
+ "itertools 0.11.0",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.38",
+]
+
[[package]]
name = "prost-types"
version = "0.11.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13"
dependencies = [
- "prost",
+ "prost 0.11.9",
+]
+
+[[package]]
+name = "prost-types"
+version = "0.12.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e081b29f63d83a4bc75cfc9f3fe424f9156cf92d8a4f0c9407cce9a1b67327cf"
+dependencies = [
+ "prost 0.12.1",
]
[[package]]
@@ -8999,6 +8973,7 @@ dependencies = [
"http",
"http-body",
"hyper",
+ "hyper-rustls",
"hyper-tls",
"ipnet",
"js-sys",
@@ -9008,12 +8983,16 @@ dependencies = [
"once_cell",
"percent-encoding",
"pin-project-lite 0.2.13",
+ "rustls 0.21.7",
+ "rustls-native-certs",
+ "rustls-pemfile",
"serde",
"serde_json",
"serde_urlencoded",
"system-configuration",
"tokio",
"tokio-native-tls",
+ "tokio-rustls 0.24.1",
"tokio-socks",
"tower-service",
"url",
@@ -9237,7 +9216,7 @@ checksum = "322c53fd76a18698f1c27381d58091de3a043d356aa5bd0d510608b565f469a0"
dependencies = [
"futures",
"log",
- "netlink-packet-route",
+ "netlink-packet-route 0.12.0",
"netlink-proto",
"nix 0.24.3",
"thiserror",
@@ -9413,12 +9392,12 @@ dependencies = [
[[package]]
name = "rustls-native-certs"
-version = "0.5.0"
+version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5a07b7c1885bd8ed3831c289b7870b13ef46fe0e856d288c30d9cc17d75a2092"
+checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
dependencies = [
"openssl-probe",
- "rustls 0.19.1",
+ "rustls-pemfile",
"schannel",
"security-framework",
]
@@ -10619,9 +10598,9 @@ dependencies = [
[[package]]
name = "tendermint"
-version = "0.32.2"
+version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3f0a7d05cf78524782337f8edd55cbc578d159a16ad4affe2135c92f7dbac7f0"
+checksum = "bc2294fa667c8b548ee27a9ba59115472d0a09c2ba255771092a7f1dcf03a789"
dependencies = [
"bytes",
"digest 0.10.7",
@@ -10632,8 +10611,8 @@ dependencies = [
"k256",
"num-traits",
"once_cell",
- "prost",
- "prost-types",
+ "prost 0.12.1",
+ "prost-types 0.12.1",
"ripemd",
"serde",
"serde_bytes",
@@ -10650,9 +10629,9 @@ dependencies = [
[[package]]
name = "tendermint-config"
-version = "0.32.2"
+version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "71a72dbbea6dde12045d261f2c70c0de039125675e8a026c8d5ad34522756372"
+checksum = "5a25dbe8b953e80f3d61789fbdb83bf9ad6c0ef16df5ca6546f49912542cc137"
dependencies = [
"flex-error",
"serde",
@@ -10664,16 +10643,16 @@ dependencies = [
[[package]]
name = "tendermint-proto"
-version = "0.32.2"
+version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c0cec054567d16d85e8c3f6a3139963d1a66d9d3051ed545d31562550e9bcc3d"
+checksum = "2cc728a4f9e891d71adf66af6ecaece146f9c7a11312288a3107b3e1d6979aaf"
dependencies = [
"bytes",
"flex-error",
"num-derive",
"num-traits",
- "prost",
- "prost-types",
+ "prost 0.12.1",
+ "prost-types 0.12.1",
"serde",
"serde_bytes",
"subtle-encoding",
@@ -10682,21 +10661,18 @@ dependencies = [
[[package]]
name = "tendermint-rpc"
-version = "0.32.2"
+version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d119d83a130537fc4a98c3c9eb6899ebe857fea4860400a61675bfb5f0b35129"
+checksum = "dfbf0a4753b46a190f367337e0163d0b552a2674a6bac54e74f9f2cdcde2969b"
dependencies = [
"async-trait",
"bytes",
"flex-error",
"futures",
"getrandom 0.2.10",
- "http",
- "hyper",
- "hyper-proxy",
- "hyper-rustls",
"peg",
"pin-project",
+ "reqwest",
"semver 1.0.20",
"serde",
"serde_bytes",
@@ -10920,6 +10896,16 @@ dependencies = [
"webpki 0.22.4",
]
+[[package]]
+name = "tokio-rustls"
+version = "0.24.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
+dependencies = [
+ "rustls 0.21.7",
+ "tokio",
+]
+
[[package]]
name = "tokio-socks"
version = "0.5.1"
@@ -10959,9 +10945,9 @@ dependencies = [
[[package]]
name = "tokio-tun"
-version = "0.9.1"
+version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c4a67d1405a577ba1f4cd61f46608f1db2cadbb6a9549c3fc2eed7f1195393c9"
+checksum = "bf2efaf33e86779a3a68b1f1d6e9e13a346c1c75ee3cab7a4293235c463b2668"
dependencies = [
"libc",
"nix 0.27.1",
@@ -11111,7 +11097,7 @@ dependencies = [
"hyper-timeout",
"percent-encoding",
"pin-project",
- "prost",
+ "prost 0.11.9",
"tokio",
"tokio-stream",
"tower",
diff --git a/Cargo.toml b/Cargo.toml
index a7f53657117..a8443fc8162 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -139,24 +139,8 @@ async-trait = "0.1.68"
axum = "0.6.20"
base64 = "0.21.4"
bip39 = { version = "2.0.0", features = ["zeroize"] }
-boringtun = { git = "https://github.com/cloudflare/boringtun", rev = "e1d6360d6ab4529fc942a078e4c54df107abe2ba" }
clap = "4.4.7"
cfg-if = "1.0.0"
-cosmwasm-derive = "=1.3.0"
-cosmwasm-schema = "=1.3.0"
-cosmwasm-std = "=1.3.0"
-# use 0.5.0 as that's the version used by cosmwasm-std 1.3.0
-# (and ideally we don't want to pull the same dependency twice)
-serde-json-wasm = "=0.5.0"
-cosmwasm-storage = "=1.3.0"
-cosmrs = "=0.14.0"
-# same version as used by cosmrs
-cw-utils = "=1.0.1"
-cw-storage-plus = "=1.1.0"
-cw2 = { version = "=1.1.0" }
-cw3 = { version = "=1.1.0" }
-cw4 = { version = "=1.1.0" }
-cw-controllers = { version = "=1.1.0" }
dashmap = "5.5.3"
dotenvy = "0.15.6"
futures = "0.3.28"
@@ -174,7 +158,6 @@ schemars = "0.8.1"
serde = "1.0.152"
serde_json = "1.0.91"
tap = "1.0.1"
-tendermint-rpc = "0.32" # same version as used by cosmrs
thiserror = "1.0.48"
tokio = "1.24.1"
tokio-tungstenite = "0.20.1"
@@ -186,6 +169,28 @@ utoipa-swagger-ui = "3.1.5"
url = "2.4"
zeroize = "1.6.0"
+# cosmwasm-related
+cosmwasm-derive = "=1.3.0"
+cosmwasm-schema = "=1.3.0"
+cosmwasm-std = "=1.3.0"
+# use 0.5.0 as that's the version used by cosmwasm-std 1.3.0
+# (and ideally we don't want to pull the same dependency twice)
+serde-json-wasm = "=0.5.0"
+cosmwasm-storage = "=1.3.0"
+# same version as used by cosmwasm
+cw-utils = "=1.0.1"
+cw-storage-plus = "=1.1.0"
+cw2 = { version = "=1.1.0" }
+cw3 = { version = "=1.1.0" }
+cw4 = { version = "=1.1.0" }
+cw-controllers = { version = "=1.1.0" }
+
+# cosmrs-related
+bip32 = "0.5.1"
+cosmrs = "=0.15.0"
+tendermint-rpc = "0.34" # same version as used by cosmrs
+prost = "0.12"
+
# wasm-related dependencies
gloo-utils = "0.1.7"
js-sys = "0.3.63"
diff --git a/LICENSES/CC-BY-NC-SA-4.0.txt b/LICENSES/CC-BY-NC-SA-4.0.txt
new file mode 100644
index 00000000000..8e418ce3854
--- /dev/null
+++ b/LICENSES/CC-BY-NC-SA-4.0.txt
@@ -0,0 +1,439 @@
+Attribution-NonCommercial-ShareAlike 4.0 International
+
+=======================================================================
+
+Creative Commons Corporation ("Creative Commons") is not a law firm and
+does not provide legal services or legal advice. Distribution of
+Creative Commons public licenses does not create a lawyer-client or
+other relationship. Creative Commons makes its licenses and related
+information available on an "as-is" basis. Creative Commons gives no
+warranties regarding its licenses, any material licensed under their
+terms and conditions, or any related information. Creative Commons
+disclaims all liability for damages resulting from their use to the
+fullest extent possible.
+
+Using Creative Commons Public Licenses
+
+Creative Commons public licenses provide a standard set of terms and
+conditions that creators and other rights holders may use to share
+original works of authorship and other material subject to copyright
+and certain other rights specified in the public license below. The
+following considerations are for informational purposes only, are not
+exhaustive, and do not form part of our licenses.
+
+ Considerations for licensors: Our public licenses are
+ intended for use by those authorized to give the public
+ permission to use material in ways otherwise restricted by
+ copyright and certain other rights. Our licenses are
+ irrevocable. Licensors should read and understand the terms
+ and conditions of the license they choose before applying it.
+ Licensors should also secure all rights necessary before
+ applying our licenses so that the public can reuse the
+ material as expected. Licensors should clearly mark any
+ material not subject to the license. This includes other CC-
+ licensed material, or material used under an exception or
+ limitation to copyright. More considerations for licensors:
+ wiki.creativecommons.org/Considerations_for_licensors
+
+ Considerations for the public: By using one of our public
+ licenses, a licensor grants the public permission to use the
+ licensed material under specified terms and conditions. If
+ the licensor's permission is not necessary for any reason--for
+ example, because of any applicable exception or limitation to
+ copyright--then that use is not regulated by the license. Our
+ licenses grant only permissions under copyright and certain
+ other rights that a licensor has authority to grant. Use of
+ the licensed material may still be restricted for other
+ reasons, including because others have copyright or other
+ rights in the material. A licensor may make special requests,
+ such as asking that all changes be marked or described.
+ Although not required by our licenses, you are encouraged to
+ respect those requests where reasonable. More considerations
+ for the public:
+ wiki.creativecommons.org/Considerations_for_licensees
+
+=======================================================================
+
+Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
+Public License
+
+By exercising the Licensed Rights (defined below), You accept and agree
+to be bound by the terms and conditions of this Creative Commons
+Attribution-NonCommercial-ShareAlike 4.0 International Public License
+("Public License"). To the extent this Public License may be
+interpreted as a contract, You are granted the Licensed Rights in
+consideration of Your acceptance of these terms and conditions, and the
+Licensor grants You such rights in consideration of benefits the
+Licensor receives from making the Licensed Material available under
+these terms and conditions.
+
+
+Section 1 -- Definitions.
+
+ a. Adapted Material means material subject to Copyright and Similar
+ Rights that is derived from or based upon the Licensed Material
+ and in which the Licensed Material is translated, altered,
+ arranged, transformed, or otherwise modified in a manner requiring
+ permission under the Copyright and Similar Rights held by the
+ Licensor. For purposes of this Public License, where the Licensed
+ Material is a musical work, performance, or sound recording,
+ Adapted Material is always produced where the Licensed Material is
+ synched in timed relation with a moving image.
+
+ b. Adapter's License means the license You apply to Your Copyright
+ and Similar Rights in Your contributions to Adapted Material in
+ accordance with the terms and conditions of this Public License.
+
+ c. BY-NC-SA Compatible License means a license listed at
+ creativecommons.org/compatiblelicenses, approved by Creative
+ Commons as essentially the equivalent of this Public License.
+
+ d. Copyright and Similar Rights means copyright and/or similar rights
+ closely related to copyright including, without limitation,
+ performance, broadcast, sound recording, and Sui Generis Database
+ Rights, without regard to how the rights are labeled or
+ categorized. For purposes of this Public License, the rights
+ specified in Section 2(b)(1)-(2) are not Copyright and Similar
+ Rights.
+
+ e. Effective Technological Measures means those measures that, in the
+ absence of proper authority, may not be circumvented under laws
+ fulfilling obligations under Article 11 of the WIPO Copyright
+ Treaty adopted on December 20, 1996, and/or similar international
+ agreements.
+
+ f. Exceptions and Limitations means fair use, fair dealing, and/or
+ any other exception or limitation to Copyright and Similar Rights
+ that applies to Your use of the Licensed Material.
+
+ g. License Elements means the license attributes listed in the name
+ of a Creative Commons Public License. The License Elements of this
+ Public License are Attribution, NonCommercial, and ShareAlike.
+
+ h. Licensed Material means the artistic or literary work, database,
+ or other material to which the Licensor applied this Public
+ License.
+
+ i. Licensed Rights means the rights granted to You subject to the
+ terms and conditions of this Public License, which are limited to
+ all Copyright and Similar Rights that apply to Your use of the
+ Licensed Material and that the Licensor has authority to license.
+
+ j. Licensor means the individual(s) or entity(ies) granting rights
+ under this Public License.
+
+ k. NonCommercial means not primarily intended for or directed towards
+ commercial advantage or monetary compensation. For purposes of
+ this Public License, the exchange of the Licensed Material for
+ other material subject to Copyright and Similar Rights by digital
+ file-sharing or similar means is NonCommercial provided there is
+ no payment of monetary compensation in connection with the
+ exchange.
+
+ l. Share means to provide material to the public by any means or
+ process that requires permission under the Licensed Rights, such
+ as reproduction, public display, public performance, distribution,
+ dissemination, communication, or importation, and to make material
+ available to the public including in ways that members of the
+ public may access the material from a place and at a time
+ individually chosen by them.
+
+ m. Sui Generis Database Rights means rights other than copyright
+ resulting from Directive 96/9/EC of the European Parliament and of
+ the Council of 11 March 1996 on the legal protection of databases,
+ as amended and/or succeeded, as well as other essentially
+ equivalent rights anywhere in the world.
+
+ n. You means the individual or entity exercising the Licensed Rights
+ under this Public License. Your has a corresponding meaning.
+
+
+Section 2 -- Scope.
+
+ a. License grant.
+
+ 1. Subject to the terms and conditions of this Public License,
+ the Licensor hereby grants You a worldwide, royalty-free,
+ non-sublicensable, non-exclusive, irrevocable license to
+ exercise the Licensed Rights in the Licensed Material to:
+
+ a. reproduce and Share the Licensed Material, in whole or
+ in part, for NonCommercial purposes only; and
+
+ b. produce, reproduce, and Share Adapted Material for
+ NonCommercial purposes only.
+
+ 2. Exceptions and Limitations. For the avoidance of doubt, where
+ Exceptions and Limitations apply to Your use, this Public
+ License does not apply, and You do not need to comply with
+ its terms and conditions.
+
+ 3. Term. The term of this Public License is specified in Section
+ 6(a).
+
+ 4. Media and formats; technical modifications allowed. The
+ Licensor authorizes You to exercise the Licensed Rights in
+ all media and formats whether now known or hereafter created,
+ and to make technical modifications necessary to do so. The
+ Licensor waives and/or agrees not to assert any right or
+ authority to forbid You from making technical modifications
+ necessary to exercise the Licensed Rights, including
+ technical modifications necessary to circumvent Effective
+ Technological Measures. For purposes of this Public License,
+ simply making modifications authorized by this Section 2(a)
+ (4) never produces Adapted Material.
+
+ 5. Downstream recipients.
+
+ a. Offer from the Licensor -- Licensed Material. Every
+ recipient of the Licensed Material automatically
+ receives an offer from the Licensor to exercise the
+ Licensed Rights under the terms and conditions of this
+ Public License.
+
+ b. Additional offer from the Licensor -- Adapted Material.
+ Every recipient of Adapted Material from You
+ automatically receives an offer from the Licensor to
+ exercise the Licensed Rights in the Adapted Material
+ under the conditions of the Adapter's License You apply.
+
+ c. No downstream restrictions. You may not offer or impose
+ any additional or different terms or conditions on, or
+ apply any Effective Technological Measures to, the
+ Licensed Material if doing so restricts exercise of the
+ Licensed Rights by any recipient of the Licensed
+ Material.
+
+ 6. No endorsement. Nothing in this Public License constitutes or
+ may be construed as permission to assert or imply that You
+ are, or that Your use of the Licensed Material is, connected
+ with, or sponsored, endorsed, or granted official status by,
+ the Licensor or others designated to receive attribution as
+ provided in Section 3(a)(1)(A)(i).
+
+ b. Other rights.
+
+ 1. Moral rights, such as the right of integrity, are not
+ licensed under this Public License, nor are publicity,
+ privacy, and/or other similar personality rights; however, to
+ the extent possible, the Licensor waives and/or agrees not to
+ assert any such rights held by the Licensor to the limited
+ extent necessary to allow You to exercise the Licensed
+ Rights, but not otherwise.
+
+ 2. Patent and trademark rights are not licensed under this
+ Public License.
+
+ 3. To the extent possible, the Licensor waives any right to
+ collect royalties from You for the exercise of the Licensed
+ Rights, whether directly or through a collecting society
+ under any voluntary or waivable statutory or compulsory
+ licensing scheme. In all other cases the Licensor expressly
+ reserves any right to collect such royalties, including when
+ the Licensed Material is used other than for NonCommercial
+ purposes.
+
+
+Section 3 -- License Conditions.
+
+Your exercise of the Licensed Rights is expressly made subject to the
+following conditions.
+
+ a. Attribution.
+
+ 1. If You Share the Licensed Material (including in modified
+ form), You must:
+
+ a. retain the following if it is supplied by the Licensor
+ with the Licensed Material:
+
+ i. identification of the creator(s) of the Licensed
+ Material and any others designated to receive
+ attribution, in any reasonable manner requested by
+ the Licensor (including by pseudonym if
+ designated);
+
+ ii. a copyright notice;
+
+ iii. a notice that refers to this Public License;
+
+ iv. a notice that refers to the disclaimer of
+ warranties;
+
+ v. a URI or hyperlink to the Licensed Material to the
+ extent reasonably practicable;
+
+ b. indicate if You modified the Licensed Material and
+ retain an indication of any previous modifications; and
+
+ c. indicate the Licensed Material is licensed under this
+ Public License, and include the text of, or the URI or
+ hyperlink to, this Public License.
+
+ 2. You may satisfy the conditions in Section 3(a)(1) in any
+ reasonable manner based on the medium, means, and context in
+ which You Share the Licensed Material. For example, it may be
+ reasonable to satisfy the conditions by providing a URI or
+ hyperlink to a resource that includes the required
+ information.
+ 3. If requested by the Licensor, You must remove any of the
+ information required by Section 3(a)(1)(A) to the extent
+ reasonably practicable.
+
+ b. ShareAlike.
+
+ In addition to the conditions in Section 3(a), if You Share
+ Adapted Material You produce, the following conditions also apply.
+
+ 1. The Adapter's License You apply must be a Creative Commons
+ license with the same License Elements, this version or
+ later, or a BY-NC-SA Compatible License.
+
+ 2. You must include the text of, or the URI or hyperlink to, the
+ Adapter's License You apply. You may satisfy this condition
+ in any reasonable manner based on the medium, means, and
+ context in which You Share Adapted Material.
+
+ 3. You may not offer or impose any additional or different terms
+ or conditions on, or apply any Effective Technological
+ Measures to, Adapted Material that restrict exercise of the
+ rights granted under the Adapter's License You apply.
+
+
+Section 4 -- Sui Generis Database Rights.
+
+Where the Licensed Rights include Sui Generis Database Rights that
+apply to Your use of the Licensed Material:
+
+ a. for the avoidance of doubt, Section 2(a)(1) grants You the right
+ to extract, reuse, reproduce, and Share all or a substantial
+ portion of the contents of the database for NonCommercial purposes
+ only;
+
+ b. if You include all or a substantial portion of the database
+ contents in a database in which You have Sui Generis Database
+ Rights, then the database in which You have Sui Generis Database
+ Rights (but not its individual contents) is Adapted Material,
+ including for purposes of Section 3(b); and
+
+ c. You must comply with the conditions in Section 3(a) if You Share
+ all or a substantial portion of the contents of the database.
+
+For the avoidance of doubt, this Section 4 supplements and does not
+replace Your obligations under this Public License where the Licensed
+Rights include other Copyright and Similar Rights.
+
+
+Section 5 -- Disclaimer of Warranties and Limitation of Liability.
+
+ a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
+ EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
+ AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
+ ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
+ IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
+ WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
+ PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
+ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
+ KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
+ ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
+
+ b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
+ TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
+ NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
+ INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
+ COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
+ USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
+ ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
+ DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
+ IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
+
+ c. The disclaimer of warranties and limitation of liability provided
+ above shall be interpreted in a manner that, to the extent
+ possible, most closely approximates an absolute disclaimer and
+ waiver of all liability.
+
+
+Section 6 -- Term and Termination.
+
+ a. This Public License applies for the term of the Copyright and
+ Similar Rights licensed here. However, if You fail to comply with
+ this Public License, then Your rights under this Public License
+ terminate automatically.
+
+ b. Where Your right to use the Licensed Material has terminated under
+ Section 6(a), it reinstates:
+
+ 1. automatically as of the date the violation is cured, provided
+ it is cured within 30 days of Your discovery of the
+ violation; or
+
+ 2. upon express reinstatement by the Licensor.
+
+ For the avoidance of doubt, this Section 6(b) does not affect any
+ right the Licensor may have to seek remedies for Your violations
+ of this Public License.
+
+ c. For the avoidance of doubt, the Licensor may also offer the
+ Licensed Material under separate terms or conditions or stop
+ distributing the Licensed Material at any time; however, doing so
+ will not terminate this Public License.
+
+ d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
+ License.
+
+
+Section 7 -- Other Terms and Conditions.
+
+ a. The Licensor shall not be bound by any additional or different
+ terms or conditions communicated by You unless expressly agreed.
+
+ b. Any arrangements, understandings, or agreements regarding the
+ Licensed Material not stated herein are separate from and
+ independent of the terms and conditions of this Public License.
+
+
+Section 8 -- Interpretation.
+
+ a. For the avoidance of doubt, this Public License does not, and
+ shall not be interpreted to, reduce, limit, restrict, or impose
+ conditions on any use of the Licensed Material that could lawfully
+ be made without permission under this Public License.
+
+ b. To the extent possible, if any provision of this Public License is
+ deemed unenforceable, it shall be automatically reformed to the
+ minimum extent necessary to make it enforceable. If the provision
+ cannot be reformed, it shall be severed from this Public License
+ without affecting the enforceability of the remaining terms and
+ conditions.
+
+ c. No term or condition of this Public License will be waived and no
+ failure to comply consented to unless expressly agreed to by the
+ Licensor.
+
+ d. Nothing in this Public License constitutes or may be interpreted
+ as a limitation upon, or waiver of, any privileges and immunities
+ that apply to the Licensor or You, including from the legal
+ processes of any jurisdiction or authority.
+
+=======================================================================
+
+Creative Commons is not a party to its public
+licenses. Notwithstanding, Creative Commons may elect to apply one of
+its public licenses to material it publishes and in those instances
+will be considered the “Licensor.†The text of the Creative Commons
+public licenses is dedicated to the public domain under the CC0 Public
+Domain Dedication. Except for the limited purpose of indicating that
+material is shared under a Creative Commons public license or as
+otherwise permitted by the Creative Commons policies published at
+creativecommons.org/policies, Creative Commons does not authorize the
+use of the trademark "Creative Commons" or any other trademark or logo
+of Creative Commons without its prior written consent including,
+without limitation, in connection with any unauthorized modifications
+to any of its public licenses or any other arrangements,
+understandings, or agreements concerning use of licensed material. For
+the avoidance of doubt, this paragraph does not form part of the
+public licenses.
+
+Creative Commons may be contacted at creativecommons.org.
+
+
diff --git a/LICENSES/gpl-3.0 b/LICENSES/gpl-3.0
new file mode 100644
index 00000000000..d4f30f00ab1
--- /dev/null
+++ b/LICENSES/gpl-3.0
@@ -0,0 +1,675 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means tocopy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ Copyright (C)
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+.
+
+ The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+.
+
diff --git a/clients/native/Cargo.toml b/clients/native/Cargo.toml
index eaec06aa210..03827720bad 100644
--- a/clients/native/Cargo.toml
+++ b/clients/native/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "nym-client"
-version = "1.1.31"
+version = "1.1.32"
authors = ["Dave Hrycyszyn ", "Jędrzej Stuczyński "]
description = "Implementation of the Nym Client"
edition = "2021"
diff --git a/clients/socks5/Cargo.toml b/clients/socks5/Cargo.toml
index 3dc2b411ce6..3bd0cde7925 100644
--- a/clients/socks5/Cargo.toml
+++ b/clients/socks5/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "nym-socks5-client"
-version = "1.1.31"
+version = "1.1.32"
authors = ["Dave Hrycyszyn "]
description = "A SOCKS5 localhost proxy that converts incoming messages to Sphinx and sends them to a Nym address"
edition = "2021"
diff --git a/common/client-core/src/client/base_client/storage/gateway_details.rs b/common/client-core/src/client/base_client/storage/gateway_details.rs
index fe04aee5c34..d9eaddfa873 100644
--- a/common/client-core/src/client/base_client/storage/gateway_details.rs
+++ b/common/client-core/src/client/base_client/storage/gateway_details.rs
@@ -77,7 +77,7 @@ pub struct PersistedGatewayConfig {
key_hash: Vec,
/// Actual gateway details being persisted.
- pub(crate) details: GatewayEndpointConfig,
+ pub details: GatewayEndpointConfig,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
diff --git a/common/client-libs/validator-client/Cargo.toml b/common/client-libs/validator-client/Cargo.toml
index e16345f446d..808bacaad6b 100644
--- a/common/client-libs/validator-client/Cargo.toml
+++ b/common/client-libs/validator-client/Cargo.toml
@@ -45,13 +45,17 @@ cosmrs = { workspace = true, features = ["bip32", "cosmwasm"] }
# import it just for the `Client` trait
tendermint-rpc = { workspace = true }
+# this is an extremely nasty import. we're explicitly bringing in bip32 so that via the magic (or curse, pick your poison)
+# of cargo's feature unification we'd get `bip32/std` meaning we'd get `std::error::Error` for the re-exported (via cosmrs) bip32::Error type
+bip32 = { workspace = true, default-features = false, features = ["std"] }
+
eyre = { version = "0.6" }
cw-utils = { workspace = true }
cw2 = { workspace = true }
cw3 = { workspace = true }
cw4 = { workspace = true }
cw-controllers = { workspace = true }
-prost = { version = "0.11", default-features = false }
+prost = { workspace = true, default-features = false }
flate2 = { version = "1.0.20" }
sha2 = { version = "0.9.5" }
itertools = { version = "0.10" }
diff --git a/common/client-libs/validator-client/src/nyxd/cosmwasm_client/helpers.rs b/common/client-libs/validator-client/src/nyxd/cosmwasm_client/helpers.rs
index b639b223e31..1718ab2f026 100644
--- a/common/client-libs/validator-client/src/nyxd/cosmwasm_client/helpers.rs
+++ b/common/client-libs/validator-client/src/nyxd/cosmwasm_client/helpers.rs
@@ -20,12 +20,12 @@ impl CheckResponse for broadcast::tx_commit::Response {
});
}
- if self.deliver_tx.code.is_err() {
+ if self.tx_result.code.is_err() {
return Err(NyxdError::BroadcastTxErrorDeliverTx {
hash: self.hash,
height: Some(self.height),
- code: self.deliver_tx.code.value(),
- raw_log: self.deliver_tx.log,
+ code: self.tx_result.code.value(),
+ raw_log: self.tx_result.log,
});
}
diff --git a/common/client-libs/validator-client/src/nyxd/fee/mod.rs b/common/client-libs/validator-client/src/nyxd/fee/mod.rs
index ee30d1ffe5a..f062dfdb493 100644
--- a/common/client-libs/validator-client/src/nyxd/fee/mod.rs
+++ b/common/client-libs/validator-client/src/nyxd/fee/mod.rs
@@ -11,7 +11,7 @@ pub mod gas_price;
pub type GasAdjustment = f32;
-pub const DEFAULT_SIMULATED_GAS_MULTIPLIER: GasAdjustment = 1.3;
+pub const DEFAULT_SIMULATED_GAS_MULTIPLIER: GasAdjustment = 1.5;
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AutoFeeGrant {
diff --git a/common/client-libs/validator-client/src/nyxd/mod.rs b/common/client-libs/validator-client/src/nyxd/mod.rs
index e7d66500529..c9c27370e26 100644
--- a/common/client-libs/validator-client/src/nyxd/mod.rs
+++ b/common/client-libs/validator-client/src/nyxd/mod.rs
@@ -34,7 +34,9 @@ pub use crate::nyxd::fee::Fee;
pub use crate::rpc::TendermintRpcClient;
pub use coin::Coin;
pub use cosmrs::bank::MsgSend;
-pub use cosmrs::tendermint::abci::{response::DeliverTx, Event, EventAttribute};
+pub use cosmrs::tendermint::abci::{
+ response::DeliverTx, types::ExecTxResult, Event, EventAttribute,
+};
pub use cosmrs::tendermint::block::Height;
pub use cosmrs::tendermint::hash::{self, Algorithm, Hash};
pub use cosmrs::tendermint::validator::Info as TendermintValidatorInfo;
diff --git a/common/client-libs/validator-client/src/rpc/mod.rs b/common/client-libs/validator-client/src/rpc/mod.rs
index fd3f7991ba2..78f5476b48c 100644
--- a/common/client-libs/validator-client/src/rpc/mod.rs
+++ b/common/client-libs/validator-client/src/rpc/mod.rs
@@ -28,7 +28,7 @@ where
U: TryInto,
{
HttpRpcClient::builder(url.try_into()?)
- .compat_mode(CompatMode::V0_34)
+ .compat_mode(CompatMode::V0_37)
.build()
}
diff --git a/common/client-libs/validator-client/src/rpc/reqwest.rs b/common/client-libs/validator-client/src/rpc/reqwest.rs
index ffad7dd815d..973fb633768 100644
--- a/common/client-libs/validator-client/src/rpc/reqwest.rs
+++ b/common/client-libs/validator-client/src/rpc/reqwest.rs
@@ -36,7 +36,8 @@ pub struct ReqwestRpcClient {
impl ReqwestRpcClient {
pub fn new(url: Url) -> Self {
ReqwestRpcClient {
- compat: CompatMode::V0_34,
+ // after updating to nyxd 0.42 and thus updating to cometbft, the compat mode changed
+ compat: CompatMode::V0_37,
inner: reqwest::Client::new(),
url,
}
diff --git a/common/cosmwasm-smart-contracts/contracts-common/src/types.rs b/common/cosmwasm-smart-contracts/contracts-common/src/types.rs
index 4dca6b173bd..218bd6ca505 100644
--- a/common/cosmwasm-smart-contracts/contracts-common/src/types.rs
+++ b/common/cosmwasm-smart-contracts/contracts-common/src/types.rs
@@ -3,6 +3,7 @@
use cosmwasm_schema::cw_serde;
use cosmwasm_std::Decimal;
+use cosmwasm_std::OverflowError;
use cosmwasm_std::Uint128;
use serde::de::Error;
use serde::{Deserialize, Deserializer};
@@ -71,6 +72,10 @@ impl Percent {
// we know the cast from u128 to u8 is a safe one since the internal value must be within 0 - 1 range
truncate_decimal(hundred * self.0).u128() as u8
}
+
+ pub fn checked_pow(&self, exp: u32) -> Result {
+ self.0.checked_pow(exp).map(Percent)
+ }
}
impl Display for Percent {
diff --git a/common/dkg/benches/benchmarks.rs b/common/dkg/benches/benchmarks.rs
index 483c6d20e99..2951a57a7c9 100644
--- a/common/dkg/benches/benchmarks.rs
+++ b/common/dkg/benches/benchmarks.rs
@@ -366,11 +366,7 @@ pub fn creating_proof_of_chunking_for_100_parties(c: &mut Criterion) {
.map(|&node_index| polynomial.evaluate_at(&Scalar::from(node_index)).into())
.collect::>();
- let remote_share_key_pairs = shares
- .iter()
- .zip(receivers.values())
- .map(|(share, key)| (share, key))
- .collect::>();
+ let remote_share_key_pairs = shares.iter().zip(receivers.values()).collect::>();
let ordered_public_keys = receivers.values().copied().collect::>();
let (ciphertexts, hazmat) = encrypt_shares(&remote_share_key_pairs, ¶ms, &mut rng);
@@ -400,11 +396,7 @@ pub fn verifying_proof_of_chunking_for_100_parties(c: &mut Criterion) {
.map(|&node_index| polynomial.evaluate_at(&Scalar::from(node_index)).into())
.collect::>();
- let remote_share_key_pairs = shares
- .iter()
- .zip(receivers.values())
- .map(|(share, key)| (share, key))
- .collect::>();
+ let remote_share_key_pairs = shares.iter().zip(receivers.values()).collect::>();
let ordered_public_keys = receivers.values().copied().collect::>();
let (ciphertexts, hazmat) = encrypt_shares(&remote_share_key_pairs, ¶ms, &mut rng);
@@ -436,11 +428,7 @@ pub fn creating_proof_of_secret_sharing_for_100_parties(c: &mut Criterion) {
.map(|&node_index| polynomial.evaluate_at(&Scalar::from(node_index)).into())
.collect::>();
- let remote_share_key_pairs = shares
- .iter()
- .zip(receivers.values())
- .map(|(share, key)| (share, key))
- .collect::>();
+ let remote_share_key_pairs = shares.iter().zip(receivers.values()).collect::>();
let (ciphertexts, hazmat) = encrypt_shares(&remote_share_key_pairs, ¶ms, &mut rng);
@@ -478,11 +466,7 @@ pub fn verifying_proof_of_secret_sharing_for_100_parties(c: &mut Criterion) {
.map(|&node_index| polynomial.evaluate_at(&Scalar::from(node_index)).into())
.collect::>();
- let remote_share_key_pairs = shares
- .iter()
- .zip(receivers.values())
- .map(|(share, key)| (share, key))
- .collect::>();
+ let remote_share_key_pairs = shares.iter().zip(receivers.values()).collect::>();
let (ciphertexts, hazmat) = encrypt_shares(&remote_share_key_pairs, ¶ms, &mut rng);
@@ -545,11 +529,7 @@ pub fn share_encryption_100(c: &mut Criterion) {
.map(|&node_index| polynomial.evaluate_at(&Scalar::from(node_index)).into())
.collect::>();
- let remote_share_key_pairs = shares
- .iter()
- .zip(receivers.values())
- .map(|(share, key)| (share, key))
- .collect::>();
+ let remote_share_key_pairs = shares.iter().zip(receivers.values()).collect::>();
c.bench_function("100 shares encryption", |b| {
b.iter(|| black_box(encrypt_shares(&remote_share_key_pairs, ¶ms, &mut rng)))
diff --git a/common/ip-packet-requests/Cargo.toml b/common/ip-packet-requests/Cargo.toml
index d77f0f93962..2a92715f822 100644
--- a/common/ip-packet-requests/Cargo.toml
+++ b/common/ip-packet-requests/Cargo.toml
@@ -14,4 +14,6 @@ license.workspace = true
bincode = "1.3.3"
bytes = "1.5.0"
nym-sphinx = { path = "../nymsphinx" }
+rand = "0.8.5"
serde = { workspace = true, features = ["derive"] }
+thiserror = { workspace = true }
diff --git a/common/ip-packet-requests/src/lib.rs b/common/ip-packet-requests/src/lib.rs
index ef7672bf170..290deec697b 100644
--- a/common/ip-packet-requests/src/lib.rs
+++ b/common/ip-packet-requests/src/lib.rs
@@ -1,35 +1,308 @@
-#[derive(serde::Serialize, serde::Deserialize)]
-pub struct TaggedIpPacket {
- pub packet: bytes::Bytes,
- pub return_address: nym_sphinx::addressing::clients::Recipient,
- pub return_mix_hops: Option,
- // pub return_mix_delays: Option,
-}
-
-impl TaggedIpPacket {
- pub fn new(
- packet: bytes::Bytes,
- return_address: nym_sphinx::addressing::clients::Recipient,
- return_mix_hops: Option,
- ) -> Self {
- TaggedIpPacket {
- packet,
- return_address,
- return_mix_hops,
+use std::net::IpAddr;
+
+use nym_sphinx::addressing::clients::Recipient;
+use serde::{Deserialize, Serialize};
+
+pub const CURRENT_VERSION: u8 = 1;
+
+fn generate_random() -> u64 {
+ use rand::RngCore;
+ let mut rng = rand::rngs::OsRng;
+ rng.next_u64()
+}
+
+#[derive(Clone, Debug, Serialize, Deserialize)]
+pub struct IpPacketRequest {
+ pub version: u8,
+ pub data: IpPacketRequestData,
+}
+
+impl IpPacketRequest {
+ pub fn new_static_connect_request(
+ ip: IpAddr,
+ reply_to: Recipient,
+ reply_to_hops: Option,
+ reply_to_avg_mix_delays: Option,
+ ) -> (Self, u64) {
+ let request_id = generate_random();
+ (
+ Self {
+ version: CURRENT_VERSION,
+ data: IpPacketRequestData::StaticConnect(StaticConnectRequest {
+ request_id,
+ ip,
+ reply_to,
+ reply_to_hops,
+ reply_to_avg_mix_delays,
+ }),
+ },
+ request_id,
+ )
+ }
+
+ pub fn new_dynamic_connect_request(
+ reply_to: Recipient,
+ reply_to_hops: Option,
+ reply_to_avg_mix_delays: Option,
+ ) -> (Self, u64) {
+ let request_id = generate_random();
+ (
+ Self {
+ version: CURRENT_VERSION,
+ data: IpPacketRequestData::DynamicConnect(DynamicConnectRequest {
+ request_id,
+ reply_to,
+ reply_to_hops,
+ reply_to_avg_mix_delays,
+ }),
+ },
+ request_id,
+ )
+ }
+
+ pub fn new_ip_packet(ip_packet: bytes::Bytes) -> Self {
+ Self {
+ version: CURRENT_VERSION,
+ data: IpPacketRequestData::Data(DataRequest { ip_packet }),
+ }
+ }
+
+ pub fn id(&self) -> Option {
+ match &self.data {
+ IpPacketRequestData::StaticConnect(request) => Some(request.request_id),
+ IpPacketRequestData::DynamicConnect(request) => Some(request.request_id),
+ IpPacketRequestData::Data(_) => None,
}
}
+ pub fn recipient(&self) -> Option<&Recipient> {
+ match &self.data {
+ IpPacketRequestData::StaticConnect(request) => Some(&request.reply_to),
+ IpPacketRequestData::DynamicConnect(request) => Some(&request.reply_to),
+ IpPacketRequestData::Data(_) => None,
+ }
+ }
+
+ pub fn to_bytes(&self) -> Result, bincode::Error> {
+ use bincode::Options;
+ make_bincode_serializer().serialize(self)
+ }
+
pub fn from_reconstructed_message(
message: &nym_sphinx::receiver::ReconstructedMessage,
) -> Result {
use bincode::Options;
make_bincode_serializer().deserialize(&message.message)
}
+}
+
+#[allow(clippy::large_enum_variant)]
+#[derive(Clone, Debug, Serialize, Deserialize, PartialEq)]
+pub enum IpPacketRequestData {
+ StaticConnect(StaticConnectRequest),
+ DynamicConnect(DynamicConnectRequest),
+ Data(DataRequest),
+}
+
+#[derive(Clone, Debug, Serialize, Deserialize, PartialEq)]
+pub struct StaticConnectRequest {
+ pub request_id: u64,
+ pub ip: IpAddr,
+ pub reply_to: Recipient,
+ pub reply_to_hops: Option,
+ pub reply_to_avg_mix_delays: Option,
+}
+
+#[derive(Clone, Debug, Serialize, Deserialize, PartialEq)]
+pub struct DynamicConnectRequest {
+ pub request_id: u64,
+ pub reply_to: Recipient,
+ pub reply_to_hops: Option,
+ pub reply_to_avg_mix_delays: Option,
+}
+
+#[derive(Clone, Debug, Serialize, Deserialize, PartialEq)]
+pub struct DataRequest {
+ pub ip_packet: bytes::Bytes,
+}
+
+// ---
+
+#[derive(Clone, Debug, Serialize, Deserialize)]
+pub struct IpPacketResponse {
+ pub version: u8,
+ pub data: IpPacketResponseData,
+}
+
+impl IpPacketResponse {
+ pub fn new_static_connect_success(request_id: u64, reply_to: Recipient) -> Self {
+ Self {
+ version: CURRENT_VERSION,
+ data: IpPacketResponseData::StaticConnect(StaticConnectResponse {
+ request_id,
+ reply_to,
+ reply: StaticConnectResponseReply::Success,
+ }),
+ }
+ }
+
+ pub fn new_static_connect_failure(
+ request_id: u64,
+ reply_to: Recipient,
+ reason: StaticConnectFailureReason,
+ ) -> Self {
+ Self {
+ version: CURRENT_VERSION,
+ data: IpPacketResponseData::StaticConnect(StaticConnectResponse {
+ request_id,
+ reply_to,
+ reply: StaticConnectResponseReply::Failure(reason),
+ }),
+ }
+ }
+
+ pub fn new_dynamic_connect_success(request_id: u64, reply_to: Recipient, ip: IpAddr) -> Self {
+ Self {
+ version: CURRENT_VERSION,
+ data: IpPacketResponseData::DynamicConnect(DynamicConnectResponse {
+ request_id,
+ reply_to,
+ reply: DynamicConnectResponseReply::Success(DynamicConnectSuccess { ip }),
+ }),
+ }
+ }
+
+ pub fn new_dynamic_connect_failure(
+ request_id: u64,
+ reply_to: Recipient,
+ reason: DynamicConnectFailureReason,
+ ) -> Self {
+ Self {
+ version: CURRENT_VERSION,
+ data: IpPacketResponseData::DynamicConnect(DynamicConnectResponse {
+ request_id,
+ reply_to,
+ reply: DynamicConnectResponseReply::Failure(reason),
+ }),
+ }
+ }
+
+ pub fn new_ip_packet(ip_packet: bytes::Bytes) -> Self {
+ Self {
+ version: CURRENT_VERSION,
+ data: IpPacketResponseData::Data(DataResponse { ip_packet }),
+ }
+ }
+
+ pub fn id(&self) -> Option {
+ match &self.data {
+ IpPacketResponseData::StaticConnect(response) => Some(response.request_id),
+ IpPacketResponseData::DynamicConnect(response) => Some(response.request_id),
+ IpPacketResponseData::Data(_) => None,
+ }
+ }
+
+ pub fn recipient(&self) -> Option<&Recipient> {
+ match &self.data {
+ IpPacketResponseData::StaticConnect(response) => Some(&response.reply_to),
+ IpPacketResponseData::DynamicConnect(response) => Some(&response.reply_to),
+ IpPacketResponseData::Data(_) => None,
+ }
+ }
pub fn to_bytes(&self) -> Result, bincode::Error> {
use bincode::Options;
make_bincode_serializer().serialize(self)
}
+
+ pub fn from_reconstructed_message(
+ message: &nym_sphinx::receiver::ReconstructedMessage,
+ ) -> Result {
+ use bincode::Options;
+ make_bincode_serializer().deserialize(&message.message)
+ }
+}
+
+#[allow(clippy::large_enum_variant)]
+#[derive(Clone, Debug, Serialize, Deserialize)]
+pub enum IpPacketResponseData {
+ StaticConnect(StaticConnectResponse),
+ DynamicConnect(DynamicConnectResponse),
+ Data(DataResponse),
+}
+
+#[derive(Clone, Debug, Serialize, Deserialize)]
+pub struct StaticConnectResponse {
+ pub request_id: u64,
+ pub reply_to: Recipient,
+ pub reply: StaticConnectResponseReply,
+}
+
+#[derive(Clone, Debug, Serialize, Deserialize)]
+pub enum StaticConnectResponseReply {
+ Success,
+ Failure(StaticConnectFailureReason),
+}
+
+impl StaticConnectResponseReply {
+ pub fn is_success(&self) -> bool {
+ match self {
+ StaticConnectResponseReply::Success => true,
+ StaticConnectResponseReply::Failure(_) => false,
+ }
+ }
+}
+
+#[derive(Clone, Debug, Serialize, Deserialize, thiserror::Error)]
+pub enum StaticConnectFailureReason {
+ #[error("requested ip address is already in use")]
+ RequestedIpAlreadyInUse,
+ #[error("requested nym-address is already in use")]
+ RequestedNymAddressAlreadyInUse,
+ #[error("{0}")]
+ Other(String),
+}
+
+#[derive(Clone, Debug, Serialize, Deserialize)]
+pub struct DynamicConnectResponse {
+ pub request_id: u64,
+ pub reply_to: Recipient,
+ pub reply: DynamicConnectResponseReply,
+}
+
+#[derive(Clone, Debug, Serialize, Deserialize)]
+pub enum DynamicConnectResponseReply {
+ Success(DynamicConnectSuccess),
+ Failure(DynamicConnectFailureReason),
+}
+
+impl DynamicConnectResponseReply {
+ pub fn is_success(&self) -> bool {
+ match self {
+ DynamicConnectResponseReply::Success(_) => true,
+ DynamicConnectResponseReply::Failure(_) => false,
+ }
+ }
+}
+
+#[derive(Clone, Debug, Serialize, Deserialize)]
+pub struct DynamicConnectSuccess {
+ pub ip: IpAddr,
+}
+
+#[derive(Clone, Debug, Serialize, Deserialize, thiserror::Error)]
+pub enum DynamicConnectFailureReason {
+ #[error("requested nym-address is already in use")]
+ RequestedNymAddressAlreadyInUse,
+ #[error("no available ip address")]
+ NoAvailableIp,
+ #[error("{0}")]
+ Other(String),
+}
+
+#[derive(Clone, Debug, Serialize, Deserialize)]
+pub struct DataResponse {
+ pub ip_packet: bytes::Bytes,
}
fn make_bincode_serializer() -> impl bincode::Options {
@@ -38,3 +311,63 @@ fn make_bincode_serializer() -> impl bincode::Options {
.with_big_endian()
.with_varint_encoding()
}
+
+#[cfg(test)]
+mod tests {
+ use super::*;
+
+ #[test]
+ fn check_size_of_request() {
+ let connect = IpPacketRequest {
+ version: 4,
+ data: IpPacketRequestData::StaticConnect(
+ StaticConnectRequest {
+ request_id: 123,
+ ip: IpAddr::from([10, 0, 0, 1]),
+ reply_to: Recipient::try_from_base58_string("D1rrpsysCGCYXy9saP8y3kmNpGtJZUXN9SvFoUcqAsM9.9Ssso1ea5NfkbMASdiseDSjTN1fSWda5SgEVjdSN4CvV@GJqd3ZxpXWSNxTfx7B1pPtswpetH4LnJdFeLeuY5KUuN").unwrap(),
+ reply_to_hops: None,
+ reply_to_avg_mix_delays: None,
+ },
+ )
+ };
+ assert_eq!(connect.to_bytes().unwrap().len(), 107);
+ }
+
+ #[test]
+ fn check_size_of_data() {
+ let data = IpPacketRequest {
+ version: 4,
+ data: IpPacketRequestData::Data(DataRequest {
+ ip_packet: bytes::Bytes::from(vec![1u8; 32]),
+ }),
+ };
+ assert_eq!(data.to_bytes().unwrap().len(), 35);
+ }
+
+ #[test]
+ fn serialize_and_deserialize_data_request() {
+ let data = IpPacketRequest {
+ version: 4,
+ data: IpPacketRequestData::Data(DataRequest {
+ ip_packet: bytes::Bytes::from(vec![1, 2, 4, 2, 5]),
+ }),
+ };
+
+ let serialized = data.to_bytes().unwrap();
+ let deserialized = IpPacketRequest::from_reconstructed_message(
+ &nym_sphinx::receiver::ReconstructedMessage {
+ message: serialized,
+ sender_tag: None,
+ },
+ )
+ .unwrap();
+
+ assert_eq!(deserialized.version, 4);
+ assert_eq!(
+ deserialized.data,
+ IpPacketRequestData::Data(DataRequest {
+ ip_packet: bytes::Bytes::from(vec![1, 2, 4, 2, 5]),
+ })
+ );
+ }
+}
diff --git a/common/network-defaults/src/lib.rs b/common/network-defaults/src/lib.rs
index b45b5483e9d..bcf02d1f028 100644
--- a/common/network-defaults/src/lib.rs
+++ b/common/network-defaults/src/lib.rs
@@ -476,3 +476,11 @@ pub const DEFAULT_NYM_NODE_HTTP_PORT: u16 = 8080;
pub const TOTAL_SUPPLY: u128 = 1_000_000_000_000_000;
pub const DEFAULT_PROFIT_MARGIN: u8 = 10;
+
+// WIREGUARD
+pub const WG_PORT: u16 = 51822;
+
+// The interface used to route traffic
+pub const WG_TUN_BASE_NAME: &str = "nymwg";
+pub const WG_TUN_DEVICE_ADDRESS: &str = "10.1.0.1";
+pub const WG_TUN_DEVICE_NETMASK: &str = "255.255.255.0";
diff --git a/common/nymcoconut/benches/benchmarks.rs b/common/nymcoconut/benches/benchmarks.rs
index 74149c15c96..6627b437e14 100644
--- a/common/nymcoconut/benches/benchmarks.rs
+++ b/common/nymcoconut/benches/benchmarks.rs
@@ -6,9 +6,10 @@ use criterion::{criterion_group, criterion_main, Criterion};
use ff::Field;
use group::{Curve, Group};
use nym_coconut::{
- aggregate_signature_shares, aggregate_verification_keys, blind_sign, elgamal_keygen,
- prepare_blind_sign, prove_bandwidth_credential, setup, ttp_keygen, verify_credential,
- Attribute, BlindedSignature, Parameters, Signature, SignatureShare, VerificationKey,
+ aggregate_signature_shares, aggregate_verification_keys, blind_sign, prepare_blind_sign,
+ prove_bandwidth_credential, setup, ttp_keygen, verify_credential,
+ verify_partial_blind_signature, Attribute, BlindedSignature, Parameters, Signature,
+ SignatureShare, VerificationKey,
};
use rand::seq::SliceRandom;
use std::ops::Neg;
@@ -175,8 +176,6 @@ fn bench_coconut(c: &mut Criterion) {
let binding_number = params.random_scalar();
let private_attributes = vec![serial_number, binding_number];
- let _elgamal_keypair = elgamal_keygen(¶ms);
-
// The prepare blind sign is performed by the user
let (pedersen_commitments_openings, blind_sign_request) =
prepare_blind_sign(¶ms, &private_attributes, &public_attributes).unwrap();
@@ -242,6 +241,29 @@ fn bench_coconut(c: &mut Criterion) {
.map(|keypair| keypair.verification_key())
.collect();
+ // verify a random partial blind signature
+ let rand_idx = 1;
+ let random_blind_signature = blinded_signatures.get(rand_idx).unwrap();
+ let partial_verification_key = verification_keys.get(rand_idx).unwrap();
+
+ group.bench_function(
+ &format!(
+ "verify_partial_blind_signature_{}_private_attributes_{}_public_attributes",
+ case.num_private_attrs, case.num_public_attrs
+ ),
+ |b| {
+ b.iter(|| {
+ verify_partial_blind_signature(
+ ¶ms,
+ &blind_sign_request,
+ &public_attributes,
+ random_blind_signature,
+ partial_verification_key,
+ )
+ })
+ },
+ );
+
// Lets bench worse case, ie aggregating all
let indices: Vec = (1..=case.num_authorities).collect();
// aggregate verification keys
diff --git a/common/nymcoconut/src/lib.rs b/common/nymcoconut/src/lib.rs
index a98b546fc11..821b1b3b29a 100644
--- a/common/nymcoconut/src/lib.rs
+++ b/common/nymcoconut/src/lib.rs
@@ -14,6 +14,7 @@ pub use scheme::aggregation::aggregate_signature_shares;
pub use scheme::aggregation::aggregate_verification_keys;
pub use scheme::issuance::blind_sign;
pub use scheme::issuance::prepare_blind_sign;
+pub use scheme::issuance::verify_partial_blind_signature;
pub use scheme::issuance::BlindSignRequest;
pub use scheme::keygen::ttp_keygen;
pub use scheme::keygen::KeyPair;
diff --git a/common/nymcoconut/src/scheme/issuance.rs b/common/nymcoconut/src/scheme/issuance.rs
index 710fc41df95..1109dfe8909 100644
--- a/common/nymcoconut/src/scheme/issuance.rs
+++ b/common/nymcoconut/src/scheme/issuance.rs
@@ -3,12 +3,14 @@
use std::convert::TryFrom;
use std::convert::TryInto;
+use std::ops::Neg;
-use bls12_381::{G1Affine, G1Projective, Scalar};
-use group::{Curve, GroupEncoding};
+use bls12_381::{multi_miller_loop, G1Affine, G1Projective, G2Prepared, Scalar};
+use group::{Curve, Group, GroupEncoding};
use crate::error::{CoconutError, Result};
use crate::proofs::ProofCmCs;
+use crate::scheme::keygen::VerificationKey;
use crate::scheme::setup::Parameters;
use crate::scheme::BlindedSignature;
use crate::scheme::SecretKey;
@@ -318,6 +320,97 @@ pub fn blind_sign(
Ok(BlindedSignature(h, sig))
}
+/// Verifies a partial blind signature using the provided parameters and validator's verification key.
+///
+/// # Arguments
+///
+/// * `params` - A reference to the cryptographic parameters.
+/// * `blind_sign_request` - A reference to the blind signature request signed by the client.
+/// * `public_attributes` - A reference to the public attributes included in the client's request.
+/// * `blind_sig` - A reference to the issued partial blinded signature to be verified.
+/// * `partial_verification_key` - A reference to the validator's partial verification key.
+///
+/// # Returns
+///
+/// A boolean indicating whether the partial blind signature is valid (`true`) or not (`false`).
+///
+/// # Remarks
+///
+/// This function verifies the correctness and validity of a partial blind signature using
+/// the provided cryptographic parameters, blind signature request, blinded signature,
+/// and partial verification key.
+/// It calculates pairings based on the provided values and checks whether the partial blind signature
+/// is consistent with the verification key and commitments in the blind signature request.
+/// The function returns `true` if the partial blind signature is valid, and `false` otherwise.
+pub fn verify_partial_blind_signature(
+ params: &Parameters,
+ blind_sign_request: &BlindSignRequest,
+ public_attributes: &[Attribute],
+ blind_sig: &BlindedSignature,
+ partial_verification_key: &VerificationKey,
+) -> bool {
+ let num_private_attributes = blind_sign_request.private_attributes_commitments.len();
+ if num_private_attributes + public_attributes.len() > partial_verification_key.beta_g2.len() {
+ return false;
+ }
+
+ // TODO: we're losing some memory here due to extra allocation,
+ // but worst-case scenario (given SANE amount of attributes), it's just few kb at most
+ let c_neg = blind_sig.1.to_affine().neg();
+ let g2_prep = params.prepared_miller_g2();
+
+ let mut terms = vec![
+ // (c^{-1}, g2)
+ (c_neg, g2_prep.clone()),
+ // (s, alpha)
+ (
+ blind_sig.0.to_affine(),
+ G2Prepared::from(partial_verification_key.alpha.to_affine()),
+ ),
+ ];
+
+ // for each private attribute, add (cm_i, beta_i) to the miller terms
+ for (private_attr_commit, beta_g2) in blind_sign_request
+ .private_attributes_commitments
+ .iter()
+ .zip(&partial_verification_key.beta_g2)
+ {
+ // (cm_i, beta_i)
+ terms.push((
+ private_attr_commit.to_affine(),
+ G2Prepared::from(beta_g2.to_affine()),
+ ))
+ }
+
+ // for each public attribute, add (s^pub_j, beta_{priv + j}) to the miller terms
+ for (pub_attr, beta_g2) in public_attributes.iter().zip(
+ partial_verification_key
+ .beta_g2
+ .iter()
+ .skip(num_private_attributes),
+ ) {
+ // (s^pub_j, beta_j)
+ terms.push((
+ (blind_sig.0 * pub_attr).to_affine(),
+ G2Prepared::from(beta_g2.to_affine()),
+ ))
+ }
+
+ // get the references to all the terms to get the arguments the miller loop expects
+ #[allow(clippy::map_identity)]
+ let terms_refs = terms.iter().map(|(g1, g2)| (g1, g2)).collect::>();
+
+ // since checking whether e(a, b) == e(c, d)
+ // is equivalent to checking e(a, b) • e(c, d)^{-1} == id
+ // and thus to e(a, b) • e(c^{-1}, d) == id
+ //
+ // compute e(c^1, g2) • e(s, alpha) • e(cm_0, beta_0) • e(cm_i, beta_i) • (s^pub_0, beta_{i+1}) (s^pub_j, beta_{i + j})
+ multi_miller_loop(&terms_refs)
+ .final_exponentiation()
+ .is_identity()
+ .into()
+}
+
#[cfg(test)]
pub fn sign(
params: &mut Parameters,
@@ -354,6 +447,7 @@ pub fn sign(
#[cfg(test)]
mod tests {
use super::*;
+ use crate::scheme::keygen::keygen;
#[test]
fn blind_sign_request_bytes_roundtrip() {
@@ -385,4 +479,81 @@ mod tests {
lambda
);
}
+
+ #[test]
+ fn successful_verify_partial_blind_signature() {
+ let params = Parameters::new(4).unwrap();
+ let private_attributes = params.n_random_scalars(2);
+ let public_attributes = params.n_random_scalars(2);
+
+ let (_commitments_openings, request) =
+ prepare_blind_sign(¶ms, &private_attributes, &public_attributes).unwrap();
+
+ let validator_keypair = keygen(¶ms);
+ let blind_sig = blind_sign(
+ ¶ms,
+ &validator_keypair.secret_key(),
+ &request,
+ &public_attributes,
+ )
+ .unwrap();
+
+ assert!(verify_partial_blind_signature(
+ ¶ms,
+ &request,
+ &public_attributes,
+ &blind_sig,
+ &validator_keypair.verification_key()
+ ));
+ }
+
+ #[test]
+ fn successful_verify_partial_blind_signature_no_public_attributes() {
+ let params = Parameters::new(4).unwrap();
+ let private_attributes = params.n_random_scalars(2);
+
+ let (_commitments_openings, request) =
+ prepare_blind_sign(¶ms, &private_attributes, &[]).unwrap();
+
+ let validator_keypair = keygen(¶ms);
+ let blind_sig =
+ blind_sign(¶ms, &validator_keypair.secret_key(), &request, &[]).unwrap();
+
+ assert!(verify_partial_blind_signature(
+ ¶ms,
+ &request,
+ &[],
+ &blind_sig,
+ &validator_keypair.verification_key()
+ ));
+ }
+
+ #[test]
+ fn fail_verify_partial_blind_signature_with_wrong_key() {
+ let params = Parameters::new(4).unwrap();
+ let private_attributes = params.n_random_scalars(2);
+ let public_attributes = params.n_random_scalars(2);
+
+ let (_commitments_openings, request) =
+ prepare_blind_sign(¶ms, &private_attributes, &public_attributes).unwrap();
+
+ let validator_keypair = keygen(¶ms);
+ let validator2_keypair = keygen(¶ms);
+ let blind_sig = blind_sign(
+ ¶ms,
+ &validator_keypair.secret_key(),
+ &request,
+ &public_attributes,
+ )
+ .unwrap();
+
+ // this assertion should fail, as we try to verify with a wrong validator key
+ assert!(!verify_partial_blind_signature(
+ ¶ms,
+ &request,
+ &public_attributes,
+ &blind_sig,
+ &validator2_keypair.verification_key()
+ ),);
+ }
}
diff --git a/common/tun/Cargo.toml b/common/tun/Cargo.toml
index 07df2a4bed5..2cde7db2803 100644
--- a/common/tun/Cargo.toml
+++ b/common/tun/Cargo.toml
@@ -18,7 +18,4 @@ log.workspace = true
nym-wireguard-types = { path = "../wireguard-types", optional = true }
[target.'cfg(target_os = "linux")'.dependencies]
-tokio-tun = "0.9.0"
-
-[features]
-wireguard = ["nym-wireguard-types"]
+tokio-tun = "0.11.2"
diff --git a/common/tun/src/linux/tun_device.rs b/common/tun/src/linux/tun_device.rs
index 84a62a1220c..20f514f4a93 100644
--- a/common/tun/src/linux/tun_device.rs
+++ b/common/tun/src/linux/tun_device.rs
@@ -15,14 +15,6 @@ use crate::tun_task_channel::{
TunTaskResponseSendError, TunTaskResponseTx, TunTaskRx, TunTaskTx,
};
-#[cfg(feature = "wireguard")]
-use nym_wireguard_types::tun_common::{
- active_peers::{PeerEventSenderError, PeersByIp},
- event::Event,
-};
-
-#[cfg(feature = "wireguard")]
-const MUTEX_LOCK_TIMEOUT_MS: u64 = 200;
const TUN_WRITE_TIMEOUT_MS: u64 = 1000;
#[derive(thiserror::Error, Debug)]
@@ -33,13 +25,6 @@ pub enum TunDeviceError {
#[error("error writing to tun device: {source}")]
TunWriteError { source: std::io::Error },
- #[cfg(feature = "wireguard")]
- #[error("failed forwarding packet to peer: {source}")]
- ForwardToPeerFailed {
- #[from]
- source: PeerEventSenderError,
- },
-
#[error("failed to forward responding packet with tag: {source}")]
ForwardNatResponseFailed {
#[from]
@@ -92,13 +77,12 @@ pub struct TunDevice {
}
pub enum RoutingMode {
- // The routing table, as how wireguard does it
- #[cfg(feature = "wireguard")]
- AllowedIps(AllowedIpsInner),
-
// This is an alternative to the routing table, where we just match outgoing source IP with
// incoming destination IP.
Nat(NatInner),
+
+ // Just forward without checking anything
+ Passthrough,
}
impl RoutingMode {
@@ -108,26 +92,8 @@ impl RoutingMode {
})
}
- #[cfg(feature = "wireguard")]
- pub fn new_allowed_ips(peers_by_ip: std::sync::Arc>) -> Self {
- RoutingMode::AllowedIps(AllowedIpsInner { peers_by_ip })
- }
-}
-
-#[cfg(feature = "wireguard")]
-pub struct AllowedIpsInner {
- peers_by_ip: std::sync::Arc>,
-}
-
-#[cfg(feature = "wireguard")]
-impl AllowedIpsInner {
- async fn lock(&self) -> Result, TunDeviceError> {
- timeout(
- Duration::from_millis(MUTEX_LOCK_TIMEOUT_MS),
- self.peers_by_ip.as_ref().lock(),
- )
- .await
- .map_err(|_| TunDeviceError::FailedToLockPeer)
+ pub fn new_passthrough() -> Self {
+ RoutingMode::Passthrough
}
}
@@ -146,15 +112,7 @@ impl TunDevice {
routing_mode: RoutingMode,
config: TunDeviceConfig,
) -> (Self, TunTaskTx, TunTaskResponseRx) {
- let TunDeviceConfig {
- base_name,
- ip,
- netmask,
- } = config;
- let name = format!("{base_name}%d");
-
- let tun = setup_tokio_tun_device(&name, ip, netmask);
- log::info!("Created TUN device: {}", tun.name());
+ let tun = Self::new_device_only(config);
// Channels to communicate with the other tasks
let (tun_task_tx, tun_task_rx) = tun_task_channel();
@@ -170,6 +128,19 @@ impl TunDevice {
(tun_device, tun_task_tx, tun_task_response_rx)
}
+ pub fn new_device_only(config: TunDeviceConfig) -> tokio_tun::Tun {
+ let TunDeviceConfig {
+ base_name,
+ ip,
+ netmask,
+ } = config;
+ let name = format!("{base_name}%d");
+
+ let tun = setup_tokio_tun_device(&name, ip, netmask);
+ log::info!("Created TUN device: {}", tun.name());
+ tun
+ }
+
// Send outbound packets out on the wild internet
async fn handle_tun_write(&mut self, data: TunTaskPayload) -> Result<(), TunDeviceError> {
let (tag, packet) = data;
@@ -180,7 +151,6 @@ impl TunDevice {
);
// TODO: expire old entries
- #[allow(irrefutable_let_patterns)]
if let RoutingMode::Nat(nat_table) = &mut self.routing_mode {
nat_table.nat_table.insert(src_addr, tag);
}
@@ -198,26 +168,13 @@ impl TunDevice {
async fn handle_tun_read(&self, packet: &[u8]) -> Result<(), TunDeviceError> {
let ParsedAddresses { src_addr, dst_addr } = parse_src_dst_address(packet)?;
log::debug!(
- "iface: read Packet({src_addr} -> {dst_addr}, {} bytes)",
+ "iface: read Packet({dst_addr} <- {src_addr}, {} bytes)",
packet.len(),
);
// Route packet to the correct peer.
match self.routing_mode {
- // This is how wireguard does it, by consulting the AllowedIPs table.
- #[cfg(feature = "wireguard")]
- RoutingMode::AllowedIps(ref peers_by_ip) => {
- let peers = peers_by_ip.lock().await?;
- if let Some(peer_tx) = peers.longest_match(dst_addr).map(|(_, tx)| tx) {
- log::debug!("Forward packet to wg tunnel");
- return peer_tx
- .send(Event::Ip(packet.to_vec().into()))
- .await
- .map_err(|err| err.into());
- }
- }
-
// But we can also do it by consulting the NAT table.
RoutingMode::Nat(ref nat_table) => {
if let Some(tag) = nat_table.nat_table.get(&dst_addr) {
@@ -228,6 +185,15 @@ impl TunDevice {
.map_err(|err| err.into());
}
}
+
+ RoutingMode::Passthrough => {
+ // TODO: skip the parsing at the top of the function
+ log::debug!("Forward packet without checking anything");
+ return self
+ .tun_task_response_tx
+ .try_send((0, packet.to_vec()))
+ .map_err(|err| err.into());
+ }
}
log::info!("No peer found, packet dropped");
@@ -255,7 +221,7 @@ impl TunDevice {
// Writing to the TUN device
Some(data) = self.tun_task_rx.recv() => {
if let Err(err) = self.handle_tun_write(data).await {
- log::error!("ifcae: handle_tun_write failed: {err}");
+ log::error!("iface: handle_tun_write failed: {err}");
}
}
}
diff --git a/common/wireguard-types/Cargo.toml b/common/wireguard-types/Cargo.toml
index e8825688cf0..07d440ad6ba 100644
--- a/common/wireguard-types/Cargo.toml
+++ b/common/wireguard-types/Cargo.toml
@@ -12,14 +12,10 @@ license.workspace = true
[dependencies]
base64 = { workspace = true }
-bytes = "1.5.0"
dashmap = { workspace = true }
-ip_network = "0.4.1"
-ip_network_table = "0.2.0"
log = { workspace = true }
serde = { workspace = true, features = ["derive"] }
thiserror = { workspace = true }
-tokio = { workspace = true, features = ["sync", "time"] }
nym-crypto = { path = "../crypto", features = ["asymmetric"] }
@@ -33,13 +29,7 @@ sha2 = { version = "0.10.8", optional = true }
utoipa = { workspace = true, optional = true }
serde_json = { workspace = true, optional = true }
-# target-specific dependencies
-[target."cfg(not(target_arch = \"wasm32\"))".dependencies.boringtun]
-workspace = true
-
-[target."cfg(target_arch = \"wasm32\")".dependencies.x25519-dalek]
-version = "2.0.0"
-
+x25519-dalek = { version = "2.0.0", features = ["static_secrets"] }
[dev-dependencies]
rand = "0.7.3"
diff --git a/common/wireguard-types/src/lib.rs b/common/wireguard-types/src/lib.rs
index 605b30ba82e..acb3366f86a 100644
--- a/common/wireguard-types/src/lib.rs
+++ b/common/wireguard-types/src/lib.rs
@@ -4,8 +4,6 @@
pub mod error;
pub mod public_key;
pub mod registration;
-#[cfg(not(target_arch = "wasm32"))]
-pub mod tun_common;
pub use error::Error;
pub use public_key::PeerPublicKey;
@@ -15,5 +13,3 @@ pub use registration::{
#[cfg(feature = "verify")]
pub use registration::HmacSha256;
-
-pub const WG_PORT: u16 = 51822;
diff --git a/common/wireguard-types/src/public_key.rs b/common/wireguard-types/src/public_key.rs
index 7843f35c4c1..b6bad8ec80a 100644
--- a/common/wireguard-types/src/public_key.rs
+++ b/common/wireguard-types/src/public_key.rs
@@ -10,20 +10,14 @@ use std::hash::{Hash, Hasher};
use std::ops::Deref;
use std::str::FromStr;
-// underneath the same library is being used, i.e. x25519-dalek 2.0,
-// which is being reexported by boringtun but wasm hates internals of boringtun
-#[cfg(target_arch = "wasm32")]
-use x25519_dalek::PublicKey as BoringtunPublicKey;
-
-#[cfg(not(target_arch = "wasm32"))]
-use boringtun::x25519::PublicKey as BoringtunPublicKey;
+use x25519_dalek::PublicKey;
#[derive(Debug, Clone, Copy, Eq, PartialEq)]
-pub struct PeerPublicKey(BoringtunPublicKey);
+pub struct PeerPublicKey(PublicKey);
impl PeerPublicKey {
#[allow(dead_code)]
- pub fn new(key: BoringtunPublicKey) -> Self {
+ pub fn new(key: PublicKey) -> Self {
PeerPublicKey(key)
}
@@ -45,7 +39,7 @@ impl Hash for PeerPublicKey {
}
impl Deref for PeerPublicKey {
- type Target = BoringtunPublicKey;
+ type Target = PublicKey;
fn deref(&self) -> &Self::Target {
&self.0
@@ -71,7 +65,7 @@ impl FromStr for PeerPublicKey {
})?;
};
- Ok(PeerPublicKey(BoringtunPublicKey::from(key_arr)))
+ Ok(PeerPublicKey(PublicKey::from(key_arr)))
}
}
diff --git a/common/wireguard-types/src/registration.rs b/common/wireguard-types/src/registration.rs
index ceabc625c33..e698609ab7b 100644
--- a/common/wireguard-types/src/registration.rs
+++ b/common/wireguard-types/src/registration.rs
@@ -93,10 +93,10 @@ impl GatewayClient {
) -> Self {
// convert from 1.0 x25519-dalek private key into 2.0 x25519-dalek
#[allow(clippy::expect_used)]
- let static_secret = boringtun::x25519::StaticSecret::from(local_secret.to_bytes());
- let local_public: boringtun::x25519::PublicKey = (&static_secret).into();
+ let static_secret = x25519_dalek::StaticSecret::from(local_secret.to_bytes());
+ let local_public: x25519_dalek::PublicKey = (&static_secret).into();
- let remote_public = boringtun::x25519::PublicKey::from(remote_public.to_bytes());
+ let remote_public = x25519_dalek::PublicKey::from(remote_public.to_bytes());
let dh = static_secret.diffie_hellman(&remote_public);
@@ -122,7 +122,7 @@ impl GatewayClient {
pub fn verify(&self, gateway_key: &PrivateKey, nonce: u64) -> Result<(), Error> {
// convert from 1.0 x25519-dalek private key into 2.0 x25519-dalek
#[allow(clippy::expect_used)]
- let static_secret = boringtun::x25519::StaticSecret::from(gateway_key.to_bytes());
+ let static_secret = x25519_dalek::StaticSecret::from(gateway_key.to_bytes());
let dh = static_secret.diffie_hellman(&self.pub_key);
diff --git a/common/wireguard-types/src/tun_common/active_peers.rs b/common/wireguard-types/src/tun_common/active_peers.rs
deleted file mode 100644
index 6fc82298e5b..00000000000
--- a/common/wireguard-types/src/tun_common/active_peers.rs
+++ /dev/null
@@ -1,92 +0,0 @@
-use std::{net::SocketAddr, time::Duration};
-
-use boringtun::x25519;
-use dashmap::{
- mapref::one::{Ref, RefMut},
- DashMap,
-};
-use tokio::sync::mpsc::{self};
-
-use crate::tun_common::{event::Event, network_table::NetworkTable};
-
-// Registered peers
-pub type PeersByIp = NetworkTable;
-
-// Channels that are used to communicate with the various tunnels
-#[derive(Clone)]
-pub struct PeerEventSender(mpsc::Sender);
-pub struct PeerEventReceiver(mpsc::Receiver);
-
-#[derive(thiserror::Error, Debug)]
-pub enum PeerEventSenderError {
- #[error("send failed: timeout: {source}")]
- SendTimeoutError {
- #[from]
- source: mpsc::error::SendTimeoutError,
- },
-
- #[error("send failed: {source}")]
- SendError {
- #[from]
- source: mpsc::error::SendError,
- },
-}
-
-impl PeerEventSender {
- pub async fn send(&self, event: Event) -> Result<(), PeerEventSenderError> {
- Ok(self
- .0
- .send_timeout(event, Duration::from_millis(1000))
- .await?)
- }
-}
-
-impl PeerEventReceiver {
- pub async fn recv(&mut self) -> Option {
- self.0.recv().await
- }
-}
-
-pub fn peer_event_channel() -> (PeerEventSender, PeerEventReceiver) {
- let (tx, rx) = mpsc::channel(16);
- (PeerEventSender(tx), PeerEventReceiver(rx))
-}
-
-pub(crate) type PeersByKey = DashMap;
-pub(crate) type PeersByAddr = DashMap;
-
-#[derive(Default)]
-pub struct ActivePeers {
- active_peers: PeersByKey,
- active_peers_by_addr: PeersByAddr,
-}
-
-impl ActivePeers {
- pub fn remove(&self, public_key: &x25519::PublicKey) {
- log::info!("Removing peer: {public_key:?}");
- self.active_peers.remove(public_key);
- log::warn!("TODO: remove from peers_by_ip?");
- log::warn!("TODO: remove from peers_by_addr");
- }
-
- pub fn insert(
- &self,
- public_key: x25519::PublicKey,
- addr: SocketAddr,
- peer_tx: PeerEventSender,
- ) {
- self.active_peers.insert(public_key, peer_tx.clone());
- self.active_peers_by_addr.insert(addr, peer_tx);
- }
-
- pub fn get_by_key_mut(
- &self,
- public_key: &x25519::PublicKey,
- ) -> Option> {
- self.active_peers.get_mut(public_key)
- }
-
- pub fn get_by_addr(&self, addr: &SocketAddr) -> Option> {
- self.active_peers_by_addr.get(addr)
- }
-}
diff --git a/common/wireguard-types/src/tun_common/event.rs b/common/wireguard-types/src/tun_common/event.rs
deleted file mode 100644
index 226d20bafaa..00000000000
--- a/common/wireguard-types/src/tun_common/event.rs
+++ /dev/null
@@ -1,34 +0,0 @@
-use std::fmt::{Display, Formatter};
-
-use bytes::Bytes;
-
-#[allow(unused)]
-#[derive(Debug)]
-pub enum Event {
- /// IP packet received from the WireGuard tunnel that should be passed through to the
- /// corresponding virtual device/internet.
- Wg(Bytes),
- /// IP packet received from the WireGuard tunnel that was verified as part of the handshake.
- WgVerified(Bytes),
- /// IP packet to be sent through the WireGuard tunnel as crafted by the virtual device.
- Ip(Bytes),
-}
-
-impl Display for Event {
- fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
- match self {
- Event::Wg(data) => {
- let size = data.len();
- write!(f, "Wg{{ size={size} }}")
- }
- Event::WgVerified(data) => {
- let size = data.len();
- write!(f, "WgVerified{{ size={size} }}")
- }
- Event::Ip(data) => {
- let size = data.len();
- write!(f, "Ip{{ size={size} }}")
- }
- }
- }
-}
diff --git a/common/wireguard-types/src/tun_common/mod.rs b/common/wireguard-types/src/tun_common/mod.rs
deleted file mode 100644
index d0536cbeb11..00000000000
--- a/common/wireguard-types/src/tun_common/mod.rs
+++ /dev/null
@@ -1,3 +0,0 @@
-pub mod active_peers;
-pub mod event;
-pub mod network_table;
diff --git a/common/wireguard-types/src/tun_common/network_table.rs b/common/wireguard-types/src/tun_common/network_table.rs
deleted file mode 100644
index be2284bc1c7..00000000000
--- a/common/wireguard-types/src/tun_common/network_table.rs
+++ /dev/null
@@ -1,25 +0,0 @@
-use std::net::IpAddr;
-
-use ip_network::IpNetwork;
-use ip_network_table::IpNetworkTable;
-
-#[derive(Default)]
-pub struct NetworkTable {
- ips: IpNetworkTable,
-}
-
-impl NetworkTable {
- pub fn new() -> Self {
- Self {
- ips: IpNetworkTable::new(),
- }
- }
-
- pub fn insert>(&mut self, network: N, data: T) -> Option {
- self.ips.insert(network, data)
- }
-
- pub fn longest_match>(&self, ip: I) -> Option<(IpNetwork, &T)> {
- self.ips.longest_match(ip)
- }
-}
diff --git a/common/wireguard/Cargo.toml b/common/wireguard/Cargo.toml
index f2ac47abdce..d1744d975b8 100644
--- a/common/wireguard/Cargo.toml
+++ b/common/wireguard/Cargo.toml
@@ -11,30 +11,15 @@ license.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-async-recursion = "1.0.4"
base64 = "0.21.3"
-bincode = "1.3.3"
# The latest version on crates.io at the time of writing this (6.0.0) has a
# version mismatch with x25519-dalek/curve25519-dalek that is resolved in the
# latest commit. So pick that for now.
-#boringtun = "0.6.0"
-boringtun = { workspace = true }
-bytes = "1.5.0"
-dashmap = "5.5.3"
-etherparse = "0.13.0"
-futures = "0.3.28"
+x25519-dalek = "2.0.0"
+defguard_wireguard_rs = { git = "https://github.com/neacsu/wireguard-rs.git", rev = "c2cd0c1119f699f4bc43f5e6ffd6fc242caa42ed" }
ip_network = "0.4.1"
-ip_network_table = "0.2.0"
log.workspace = true
+nym-network-defaults = { path = "../network-defaults" }
nym-task = { path = "../task" }
nym-wireguard-types = { path = "../wireguard-types" }
-nym-sphinx = { path = "../nymsphinx" }
-nym-tun = { path = "../tun" , features = ["wireguard"] }
-rand.workspace = true
-serde = { workspace = true, features = ["derive"] }
-tap.workspace = true
-thiserror.workspace = true
tokio = { workspace = true, features = ["rt-multi-thread", "net", "io-util"] }
-
-[target.'cfg(target_os = "linux")'.dependencies]
-tokio-tun = "0.9.0"
diff --git a/common/wireguard/src/error.rs b/common/wireguard/src/error.rs
deleted file mode 100644
index ec528854bdc..00000000000
--- a/common/wireguard/src/error.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-use thiserror::Error;
-
-#[derive(Error, Debug)]
-pub enum WgError {
- #[error("unable to get tunnel")]
- UnableToGetTunnel,
- #[error("handshake failed")]
- HandshakeFailed,
-}
diff --git a/common/wireguard/src/lib.rs b/common/wireguard/src/lib.rs
index b987dbd31c7..d9e72f382ba 100644
--- a/common/wireguard/src/lib.rs
+++ b/common/wireguard/src/lib.rs
@@ -3,88 +3,55 @@
// #![warn(clippy::expect_used)]
// #![warn(clippy::unwrap_used)]
-mod error;
-mod packet_relayer;
-mod registered_peers;
pub mod setup;
-mod udp_listener;
-mod wg_tunnel;
use nym_wireguard_types::registration::GatewayClientRegistry;
use std::sync::Arc;
// Currently the module related to setting up the virtual network device is platform specific.
#[cfg(target_os = "linux")]
-use nym_tun::tun_device;
-
-use nym_tun::tun_task_channel;
+use crate::setup::{peer_allowed_ips, peer_static_public_key, PRIVATE_KEY};
+use defguard_wireguard_rs::WGApi;
+#[cfg(target_os = "linux")]
+use defguard_wireguard_rs::{
+ host::Peer, key::Key, net::IpAddrMask, InterfaceConfiguration, WireguardInterfaceApi,
+};
+#[cfg(target_os = "linux")]
+use nym_network_defaults::{WG_PORT, WG_TUN_DEVICE_ADDRESS};
-/// Start wireguard UDP listener and TUN device
-///
-/// # Errors
-///
-/// This function will return an error if either the UDP listener of the TUN device fails to start.
+/// Start wireguard device
#[cfg(target_os = "linux")]
pub async fn start_wireguard(
- task_client: nym_task::TaskClient,
- gateway_client_registry: Arc,
-) -> Result<(), Box> {
- // TODO: make this configurable
-
- // We can optionally index peers by their IP like standard wireguard. If we don't then we do
- // plain NAT where we match incoming destination IP with outgoing source IP.
-
- use nym_wireguard_types::tun_common::network_table::NetworkTable;
- let peers_by_ip = Arc::new(tokio::sync::Mutex::new(NetworkTable::new()));
-
- // Alternative 1:
- let routing_mode = tun_device::RoutingMode::new_allowed_ips(peers_by_ip.clone());
- // Alternative 2:
- //let routing_mode = tun_device::RoutingMode::new_nat();
-
- // Start the tun device that is used to relay traffic outbound
- let config = tun_device::TunDeviceConfig {
- base_name: setup::TUN_BASE_NAME.to_string(),
- ip: setup::TUN_DEVICE_ADDRESS.parse().unwrap(),
- netmask: setup::TUN_DEVICE_NETMASK.parse().unwrap(),
+ mut task_client: nym_task::TaskClient,
+ _gateway_client_registry: Arc,
+) -> Result> {
+ let ifname = String::from("wg0");
+ let wgapi = WGApi::new(ifname.clone(), false)?;
+ wgapi.create_interface()?;
+ let interface_config = InterfaceConfiguration {
+ name: ifname.clone(),
+ prvkey: PRIVATE_KEY.to_string(),
+ address: WG_TUN_DEVICE_ADDRESS.to_string(),
+ port: WG_PORT as u32,
+ peers: vec![],
};
- let (tun, tun_task_tx, tun_task_response_rx) = tun_device::TunDevice::new(routing_mode, config);
- tun.start();
-
- // We also index peers by a tag
- let peers_by_tag = Arc::new(tokio::sync::Mutex::new(wg_tunnel::PeersByTag::new()));
-
- // If we want to have the tun device on a separate host, it's the tun_task and
- // tun_task_response channels that needs to be sent over the network to the host where the tun
- // device is running.
-
- // The packet relayer's responsibility is to route packets between the correct tunnel and the
- // tun device. The tun device may or may not be on a separate host, which is why we can't do
- // this routing in the tun device itself.
- let (packet_relayer, packet_tx) = packet_relayer::PacketRelayer::new(
- tun_task_tx.clone(),
- tun_task_response_rx,
- peers_by_tag.clone(),
- );
- packet_relayer.start();
-
- // Start the UDP listener that clients connect to
- let udp_listener = udp_listener::WgUdpListener::new(
- packet_tx,
- peers_by_ip,
- peers_by_tag,
- Arc::clone(&gateway_client_registry),
- )
- .await?;
- udp_listener.start(task_client);
-
- Ok(())
+ wgapi.configure_interface(&interface_config)?;
+ let peer = peer_static_public_key();
+ let mut peer = Peer::new(Key::new(peer.to_bytes()));
+ let peer_ip = peer_allowed_ips();
+ let peer_ip_mask = IpAddrMask::new(peer_ip.network_address(), peer_ip.netmask());
+ peer.set_allowed_ips(vec![peer_ip_mask]);
+ wgapi.configure_peer(&peer)?;
+ wgapi.configure_peer_routing(&[peer.clone()])?;
+
+ tokio::spawn(async move { task_client.recv().await });
+
+ Ok(wgapi)
}
-
#[cfg(not(target_os = "linux"))]
pub async fn start_wireguard(
_task_client: nym_task::TaskClient,
_gateway_client_registry: Arc,
-) -> Result<(), Box> {
+) -> Result> {
todo!("WireGuard is currently only supported on Linux")
}
diff --git a/common/wireguard/src/packet_relayer.rs b/common/wireguard/src/packet_relayer.rs
deleted file mode 100644
index 2888a73e1c5..00000000000
--- a/common/wireguard/src/packet_relayer.rs
+++ /dev/null
@@ -1,74 +0,0 @@
-use std::{collections::HashMap, sync::Arc};
-
-use tap::TapFallible;
-use tokio::sync::mpsc::{self};
-
-use crate::tun_task_channel::{TunTaskResponseRx, TunTaskTx};
-
-use nym_wireguard_types::tun_common::{active_peers::PeerEventSender, event::Event};
-
-#[derive(Clone)]
-pub struct PacketRelaySender(pub(crate) mpsc::Sender<(u64, Vec)>);
-pub(crate) struct PacketRelayReceiver(pub(crate) mpsc::Receiver<(u64, Vec)>);
-
-pub(crate) fn packet_relay_channel() -> (PacketRelaySender, PacketRelayReceiver) {
- let (tx, rx) = mpsc::channel(16);
- (PacketRelaySender(tx), PacketRelayReceiver(rx))
-}
-
-// The tunnels send packets to the packet relayer, which then relays it to the tun device. And
-// conversely, it's where the tun device send responses to, which are relayed back to the correct
-// tunnel.
-pub(crate) struct PacketRelayer {
- // Receive packets from the various tunnels
- packet_rx: PacketRelayReceiver,
-
- // After receive from tunnels, send to the tun device
- tun_task_tx: TunTaskTx,
-
- // Receive responses from the tun device
- tun_task_response_rx: TunTaskResponseRx,
-
- // After receiving from the tun device, relay back to the correct tunnel
- peers_by_tag: Arc>>,
-}
-
-impl PacketRelayer {
- pub(crate) fn new(
- tun_task_tx: TunTaskTx,
- tun_task_response_rx: TunTaskResponseRx,
- peers_by_tag: Arc>>,
- ) -> (Self, PacketRelaySender) {
- let (packet_tx, packet_rx) = packet_relay_channel();
- (
- Self {
- packet_rx,
- tun_task_tx,
- tun_task_response_rx,
- peers_by_tag,
- },
- packet_tx,
- )
- }
-
- pub(crate) async fn run(mut self) {
- loop {
- tokio::select! {
- Some((tag, packet)) = self.packet_rx.0.recv() => {
- log::info!("Sent packet to tun device with tag: {tag}");
- self.tun_task_tx.send((tag, packet)).await.tap_err(|e| log::error!("{e}")).ok();
- },
- Some((tag, packet)) = self.tun_task_response_rx.recv() => {
- log::info!("Received response from tun device with tag: {tag}");
- if let Some(tx) = self.peers_by_tag.lock().await.get(&tag) {
- tx.send(Event::Ip(packet.into())).await.tap_err(|e| log::error!("{e}")).ok();
- }
- }
- }
- }
- }
-
- pub(crate) fn start(self) {
- tokio::spawn(async move { self.run().await });
- }
-}
diff --git a/common/wireguard/src/registered_peers.rs b/common/wireguard/src/registered_peers.rs
deleted file mode 100644
index a0a5b7f6dc6..00000000000
--- a/common/wireguard/src/registered_peers.rs
+++ /dev/null
@@ -1,61 +0,0 @@
-use std::{collections::HashMap, sync::Arc};
-
-use ip_network::IpNetwork;
-use nym_wireguard_types::PeerPublicKey;
-
-pub(crate) type PeerIdx = u32;
-
-#[derive(Debug)]
-pub(crate) struct RegisteredPeer {
- pub(crate) public_key: PeerPublicKey,
- pub(crate) index: PeerIdx,
- pub(crate) allowed_ips: IpNetwork,
- // endpoint: SocketAddr,
-}
-
-#[derive(Debug, Default)]
-pub(crate) struct RegisteredPeers {
- peers: HashMap>>,
- peers_by_idx: HashMap>>,
-}
-
-impl RegisteredPeers {
- pub(crate) fn contains_key(&self, public_key: &PeerPublicKey) -> bool {
- self.peers.contains_key(public_key)
- }
-
- pub(crate) fn next_idx(&self) -> PeerIdx {
- self.peers_by_idx.keys().max().unwrap_or(&0) + 1
- }
-
- pub(crate) async fn insert(&mut self, peer: Arc>) {
- let peer_idx = { peer.lock().await.index };
- let public_key = { peer.lock().await.public_key };
- self.peers.insert(public_key, Arc::clone(&peer));
- self.peers_by_idx.insert(peer_idx, peer);
- }
-
- #[allow(unused)]
- pub(crate) async fn remove(&mut self, public_key: &PeerPublicKey) {
- if let Some(peer) = self.peers.remove(public_key) {
- let peer_idx = peer.lock().await.index;
- if self.peers_by_idx.remove(&peer_idx).is_none() {
- log::error!("Removed registered peer but no registered index was found");
- }
- }
- }
-
- pub(crate) fn get_by_key(
- &self,
- public_key: &PeerPublicKey,
- ) -> Option<&Arc>> {
- self.peers.get(public_key)
- }
-
- pub(crate) fn get_by_idx(
- &self,
- peer_idx: PeerIdx,
- ) -> Option<&Arc>> {
- self.peers_by_idx.get(&peer_idx)
- }
-}
diff --git a/common/wireguard/src/setup.rs b/common/wireguard/src/setup.rs
index a4ee4e582d0..5cda585a528 100644
--- a/common/wireguard/src/setup.rs
+++ b/common/wireguard/src/setup.rs
@@ -1,20 +1,14 @@
use std::net::IpAddr;
use base64::{engine::general_purpose, Engine as _};
-use boringtun::x25519;
use log::info;
// The wireguard UDP listener
pub const WG_ADDRESS: &str = "0.0.0.0";
-// The interface used to route traffic
-pub const TUN_BASE_NAME: &str = "nymwg";
-pub const TUN_DEVICE_ADDRESS: &str = "10.1.0.1";
-pub const TUN_DEVICE_NETMASK: &str = "255.255.255.0";
-
// The private key of the listener
// Corresponding public key: "WM8s8bYegwMa0TJ+xIwhk+dImk2IpDUKslDBCZPizlE="
-const PRIVATE_KEY: &str = "AEqXrLFT4qjYq3wmX0456iv94uM6nDj5ugp6Jedcflg=";
+pub(crate) const PRIVATE_KEY: &str = "AEqXrLFT4qjYq3wmX0456iv94uM6nDj5ugp6Jedcflg=";
// The AllowedIPs for the connected peer, which is one a single IP and the same as the IP that the
// peer has configured on their side.
@@ -28,11 +22,11 @@ fn decode_base64_key(base64_key: &str) -> [u8; 32] {
.unwrap()
}
-pub fn server_static_private_key() -> x25519::StaticSecret {
+pub fn server_static_private_key() -> x25519_dalek::StaticSecret {
// TODO: this is a temporary solution for development
let static_private_bytes: [u8; 32] = decode_base64_key(PRIVATE_KEY);
- let static_private = x25519::StaticSecret::from(static_private_bytes);
- let static_public = x25519::PublicKey::from(&static_private);
+ let static_private = x25519_dalek::StaticSecret::from(static_private_bytes);
+ let static_public = x25519_dalek::PublicKey::from(&static_private);
info!(
"wg public key: {}",
general_purpose::STANDARD.encode(static_public)
@@ -40,14 +34,14 @@ pub fn server_static_private_key() -> x25519::StaticSecret {
static_private
}
-pub fn peer_static_public_key() -> x25519::PublicKey {
+pub fn peer_static_public_key() -> x25519_dalek::PublicKey {
// A single static public key is used during development
// Read from NYM_PEER_PUBLIC_KEY env variable
let peer = std::env::var("NYM_PEER_PUBLIC_KEY").expect("NYM_PEER_PUBLIC_KEY must be set");
let peer_static_public_bytes: [u8; 32] = decode_base64_key(&peer);
- let peer_static_public = x25519::PublicKey::from(peer_static_public_bytes);
+ let peer_static_public = x25519_dalek::PublicKey::from(peer_static_public_bytes);
info!(
"Adding wg peer public key: {}",
general_purpose::STANDARD.encode(peer_static_public)
@@ -57,6 +51,6 @@ pub fn peer_static_public_key() -> x25519::PublicKey {
pub fn peer_allowed_ips() -> ip_network::IpNetwork {
let key: IpAddr = ALLOWED_IPS.parse().unwrap();
- let cidr = 0u8;
+ let cidr = 32u8;
ip_network::IpNetwork::new_truncate(key, cidr).unwrap()
}
diff --git a/common/wireguard/src/udp_listener.rs b/common/wireguard/src/udp_listener.rs
deleted file mode 100644
index 88bab9c1620..00000000000
--- a/common/wireguard/src/udp_listener.rs
+++ /dev/null
@@ -1,280 +0,0 @@
-use std::{net::SocketAddr, sync::Arc, time::Duration};
-
-use boringtun::{
- noise::{self, handshake::parse_handshake_anon, rate_limiter::RateLimiter, TunnResult},
- x25519,
-};
-use futures::StreamExt;
-use log::error;
-use nym_task::TaskClient;
-use nym_wireguard_types::{
- registration::GatewayClientRegistry,
- tun_common::{
- active_peers::{ActivePeers, PeersByIp},
- event::Event,
- },
- PeerPublicKey, WG_PORT,
-};
-use tap::TapFallible;
-use tokio::{net::UdpSocket, sync::Mutex};
-
-use crate::{
- error::WgError,
- packet_relayer::PacketRelaySender,
- registered_peers::{RegisteredPeer, RegisteredPeers},
- setup::{self, WG_ADDRESS},
- wg_tunnel::PeersByTag,
-};
-
-const MAX_PACKET: usize = 65535;
-
-async fn add_test_peer(registered_peers: &mut RegisteredPeers) {
- let peer_static_public = PeerPublicKey::new(setup::peer_static_public_key());
- let peer_index = 0;
- let peer_allowed_ips = setup::peer_allowed_ips();
- let test_peer = Arc::new(tokio::sync::Mutex::new(RegisteredPeer {
- public_key: peer_static_public,
- index: peer_index,
- allowed_ips: peer_allowed_ips,
- }));
- registered_peers.insert(test_peer).await;
-}
-
-pub struct WgUdpListener {
- // Our private key
- static_private: x25519::StaticSecret,
-
- // Our public key
- static_public: x25519::PublicKey,
-
- // The list of registered peers that we allow
- registered_peers: RegisteredPeers,
-
- // The routing table, as defined by wireguard
- peers_by_ip: Arc>,
-
- // ... or alternatively we can map peers by their tag
- peers_by_tag: Arc>,
-
- // The UDP socket to the peer
- udp: Arc,
-
- // Send data to the TUN device for sending
- packet_tx: PacketRelaySender,
-
- // Wireguard rate limiter
- rate_limiter: RateLimiter,
-
- gateway_client_registry: Arc,
-}
-
-impl WgUdpListener {
- pub async fn new(
- packet_tx: PacketRelaySender,
- peers_by_ip: Arc>,
- peers_by_tag: Arc>,
- gateway_client_registry: Arc,
- ) -> Result> {
- let wg_address = SocketAddr::new(WG_ADDRESS.parse().unwrap(), WG_PORT);
- log::info!("Starting wireguard UDP listener on {wg_address}");
- let udp = Arc::new(UdpSocket::bind(wg_address).await?);
-
- // Setup our own keys
- let static_private = setup::server_static_private_key();
- let static_public = x25519::PublicKey::from(&static_private);
- let handshake_max_rate = 100u64;
- let rate_limiter = RateLimiter::new(&static_public, handshake_max_rate);
-
- // Create a test peer for dev
- let mut registered_peers = RegisteredPeers::default();
- add_test_peer(&mut registered_peers).await;
-
- Ok(Self {
- static_private,
- static_public,
- registered_peers,
- peers_by_ip,
- peers_by_tag,
- udp,
- packet_tx,
- rate_limiter,
- gateway_client_registry,
- })
- }
-
- pub async fn run(mut self, mut task_client: TaskClient) {
- // The set of active tunnels
- let active_peers = ActivePeers::default();
- // Each tunnel is run in its own task, and the task handle is stored here so we can remove
- // it from `active_peers` when the tunnel is closed
- let mut active_peers_task_handles = futures::stream::FuturesUnordered::new();
-
- let mut buf = [0u8; MAX_PACKET];
- let mut dst_buf = [0u8; MAX_PACKET];
-
- while !task_client.is_shutdown() {
- tokio::select! {
- () = task_client.recv() => {
- log::trace!("WireGuard UDP listener: received shutdown");
- break;
- }
- // Reset the rate limiter every 1 sec
- () = tokio::time::sleep(Duration::from_secs(1)) => {
- self.rate_limiter.reset_count();
- },
- // Handle tunnel closing
- Some(public_key) = active_peers_task_handles.next() => {
- match public_key {
- Ok(public_key) => {
- active_peers.remove(&public_key);
- }
- Err(err) => {
- error!("WireGuard UDP listener: error receiving shutdown from peer: {err}");
- }
- }
- },
- // Handle incoming packets
- Ok((len, addr)) = self.udp.recv_from(&mut buf) => {
- log::trace!("udp: received {} bytes from {}", len, addr);
-
- // If this addr has already been encountered, send directly to tunnel
- // TODO: optimization opportunity to instead create a connected UDP socket
- // inside the wg tunnel, where you can recv the data directly.
- if let Some(peer_tx) = active_peers.get_by_addr(&addr) {
- log::info!("udp: received {len} bytes from {addr} from known peer");
- peer_tx
- .send(Event::Wg(buf[..len].to_vec().into()))
- .await
- .tap_err(|e| log::error!("{e}"))
- .ok();
- continue;
- }
-
- // Verify the incoming packet
- let verified_packet = match self.rate_limiter.verify_packet(Some(addr.ip()), &buf[..len], &mut dst_buf) {
- Ok(packet) => packet,
- Err(TunnResult::WriteToNetwork(cookie)) => {
- log::info!("Send back cookie to: {addr}");
- self.udp.send_to(cookie, addr).await.tap_err(|e| log::error!("{e}")).ok();
- continue;
- }
- Err(err) => {
- log::warn!("{err:?}");
- continue;
- }
- };
-
- // Check if this is a registered peer, if not, just skip
- let registered_peer = match parse_peer(
- verified_packet,
- &mut self.registered_peers,
- &self.static_private,
- &self.static_public,
- Arc::clone(&self.gateway_client_registry),
- ).await {
- Ok(Some(peer)) => peer.lock().await,
- Ok(None) => {
- log::warn!("Peer not registered: {addr}");
- continue;
- }
- Err(err) => {
- log::error!("{err}");
- continue;
- },
- };
-
- // Look up if the peer is already connected
- if let Some(peer_tx) = active_peers.get_by_key_mut(®istered_peer.public_key) {
- // We found the peer as connected, even though the addr was not known
- log::info!("udp: received {len} bytes from {addr} which is a known peer with unknown addr");
- peer_tx.send(Event::WgVerified(buf[..len].to_vec().into()))
- .await
- .tap_err(|err| log::error!("{err}"))
- .ok();
- } else {
- // If it isn't, start a new tunnel
- log::info!("udp: received {len} bytes from {addr} from unknown peer, starting tunnel");
- // NOTE: we are NOT passing in the existing rate_limiter. Re-visit this
- // choice later.
- log::warn!("Creating new rate limiter, consider re-using?");
- let (join_handle, peer_tx, tag) = crate::wg_tunnel::start_wg_tunnel(
- addr,
- self.udp.clone(),
- self.static_private.clone(),
- *registered_peer.public_key,
- registered_peer.index,
- registered_peer.allowed_ips,
- // self.tun_task_tx.clone(),
- self.packet_tx.clone(),
- );
-
- self.peers_by_ip.lock().await.insert(registered_peer.allowed_ips, peer_tx.clone());
- self.peers_by_tag.lock().await.insert(tag, peer_tx.clone());
-
- peer_tx.send(Event::Wg(buf[..len].to_vec().into()))
- .await
- .tap_err(|e| log::error!("{e}"))
- .ok();
-
- log::info!("Adding peer: {:?}: {addr}", registered_peer.public_key);
- active_peers.insert(*registered_peer.public_key, addr, peer_tx);
- active_peers_task_handles.push(join_handle);
- }
- },
- }
- }
- log::info!("WireGuard listener: shutting down");
- }
-
- pub fn start(self, task_client: TaskClient) {
- tokio::spawn(async move { self.run(task_client).await });
- }
-}
-
-async fn parse_peer<'a>(
- verified_packet: noise::Packet<'a>,
- registered_peers: &'a mut RegisteredPeers,
- static_private: &x25519::StaticSecret,
- static_public: &x25519::PublicKey,
- gateway_client_registry: Arc,
-) -> Result