mirror of
https://github.com/slackhq/nebula.git
synced 2026-08-15 23:46:58 +02:00
Compare commits
54 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ef6ada3a2b | |||
| 3e3bd9cead | |||
| a2c2235b9b | |||
| 2e50518066 | |||
| 1580175b2e | |||
| 36bbc515d2 | |||
| 09fe406dba | |||
| d21baede1f | |||
| 037459ef73 | |||
| 7655a10108 | |||
| 5cbccdc0fd | |||
| 629700fbb6 | |||
| e4897b07c9 | |||
| f7dd3c0ce4 | |||
| 009a4698a0 | |||
| 34e817742b | |||
| a881e4fdf8 | |||
| e77f49abb8 | |||
| 2319eb9492 | |||
| ae1b501468 | |||
| 879b77d076 | |||
| dd786cddf1 | |||
| 8f1d384eb8 | |||
| 064153f0c2 | |||
| 25610225bb | |||
| 92ee45ed13 | |||
| 37abdd7f96 | |||
| 7498c6846d | |||
| 27d764ba57 | |||
| 1cc257f997 | |||
| 83744a106d | |||
| 70399ea533 | |||
| 51308b845b | |||
| 422fc2ad1e | |||
| e8bb874e14 | |||
| 353ad1f271 | |||
| f573e8a266 | |||
| 42bee7cf17 | |||
| 02d8bcac68 | |||
| 0b02d982b2 | |||
| e1e92f017c | |||
| e5f60fa54f | |||
| bf49e78243 | |||
| 72a40007ea | |||
| ac3bd9cdd0 | |||
| 88379b89f5 | |||
| 1283ff0db4 | |||
| 523209ec0b | |||
| a4a6143b6a | |||
| 1b2d639b14 | |||
| 9933970e67 | |||
| d7a3f01465 | |||
| 69259e6307 | |||
| 2f71d6b22d |
@@ -24,7 +24,7 @@ jobs:
|
|||||||
mv build/*.tar.gz release
|
mv build/*.tar.gz release
|
||||||
|
|
||||||
- name: Upload artifacts
|
- name: Upload artifacts
|
||||||
uses: actions/upload-artifact@v5
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: linux-latest
|
name: linux-latest
|
||||||
path: release
|
path: release
|
||||||
@@ -55,7 +55,7 @@ jobs:
|
|||||||
mv dist\windows\wintun build\dist\windows\
|
mv dist\windows\wintun build\dist\windows\
|
||||||
|
|
||||||
- name: Upload artifacts
|
- name: Upload artifacts
|
||||||
uses: actions/upload-artifact@v5
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: windows-latest
|
name: windows-latest
|
||||||
path: build
|
path: build
|
||||||
@@ -104,7 +104,7 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Upload artifacts
|
- name: Upload artifacts
|
||||||
uses: actions/upload-artifact@v5
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: darwin-latest
|
name: darwin-latest
|
||||||
path: ./release/*
|
path: ./release/*
|
||||||
@@ -128,7 +128,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Download artifacts
|
- name: Download artifacts
|
||||||
if: ${{ env.HAS_DOCKER_CREDS == 'true' }}
|
if: ${{ env.HAS_DOCKER_CREDS == 'true' }}
|
||||||
uses: actions/download-artifact@v6
|
uses: actions/download-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: linux-latest
|
name: linux-latest
|
||||||
path: artifacts
|
path: artifacts
|
||||||
@@ -163,7 +163,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download artifacts
|
- name: Download artifacts
|
||||||
uses: actions/download-artifact@v6
|
uses: actions/download-artifact@v7
|
||||||
with:
|
with:
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
||||||
|
|||||||
@@ -30,6 +30,9 @@ jobs:
|
|||||||
- name: add hashicorp source
|
- name: add hashicorp source
|
||||||
run: wget -O- https://apt.releases.hashicorp.com/gpg | gpg --dearmor | sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg && echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
|
run: wget -O- https://apt.releases.hashicorp.com/gpg | gpg --dearmor | sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg && echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
|
||||||
|
|
||||||
|
- name: workaround AMD-V issue # https://github.com/cri-o/packaging/pull/306
|
||||||
|
run: sudo rmmod kvm_amd
|
||||||
|
|
||||||
- name: install vagrant
|
- name: install vagrant
|
||||||
run: sudo apt-get update && sudo apt-get install -y vagrant virtualbox
|
run: sudo apt-get update && sudo apt-get install -y vagrant virtualbox
|
||||||
|
|
||||||
|
|||||||
@@ -37,17 +37,18 @@ docker run --name host4 --device /dev/net/tun:/dev/net/tun --cap-add NET_ADMIN -
|
|||||||
sleep 1
|
sleep 1
|
||||||
|
|
||||||
# grab tcpdump pcaps for debugging
|
# grab tcpdump pcaps for debugging
|
||||||
docker exec lighthouse1 tcpdump -i nebula1 -q -w - -U 2>logs/lighthouse1.inside.log >logs/lighthouse1.inside.pcap &
|
docker exec lighthouse1 tcpdump -i tun0 -q -w - -U 2>logs/lighthouse1.inside.log >logs/lighthouse1.inside.pcap &
|
||||||
docker exec lighthouse1 tcpdump -i eth0 -q -w - -U 2>logs/lighthouse1.outside.log >logs/lighthouse1.outside.pcap &
|
docker exec lighthouse1 tcpdump -i eth0 -q -w - -U 2>logs/lighthouse1.outside.log >logs/lighthouse1.outside.pcap &
|
||||||
docker exec host2 tcpdump -i nebula1 -q -w - -U 2>logs/host2.inside.log >logs/host2.inside.pcap &
|
docker exec host2 tcpdump -i tun0 -q -w - -U 2>logs/host2.inside.log >logs/host2.inside.pcap &
|
||||||
docker exec host2 tcpdump -i eth0 -q -w - -U 2>logs/host2.outside.log >logs/host2.outside.pcap &
|
docker exec host2 tcpdump -i eth0 -q -w - -U 2>logs/host2.outside.log >logs/host2.outside.pcap &
|
||||||
docker exec host3 tcpdump -i nebula1 -q -w - -U 2>logs/host3.inside.log >logs/host3.inside.pcap &
|
docker exec host3 tcpdump -i tun0 -q -w - -U 2>logs/host3.inside.log >logs/host3.inside.pcap &
|
||||||
docker exec host3 tcpdump -i eth0 -q -w - -U 2>logs/host3.outside.log >logs/host3.outside.pcap &
|
docker exec host3 tcpdump -i eth0 -q -w - -U 2>logs/host3.outside.log >logs/host3.outside.pcap &
|
||||||
docker exec host4 tcpdump -i nebula1 -q -w - -U 2>logs/host4.inside.log >logs/host4.inside.pcap &
|
docker exec host4 tcpdump -i tun0 -q -w - -U 2>logs/host4.inside.log >logs/host4.inside.pcap &
|
||||||
docker exec host4 tcpdump -i eth0 -q -w - -U 2>logs/host4.outside.log >logs/host4.outside.pcap &
|
docker exec host4 tcpdump -i eth0 -q -w - -U 2>logs/host4.outside.log >logs/host4.outside.pcap &
|
||||||
|
|
||||||
docker exec host2 ncat -nklv 0.0.0.0 2000 &
|
docker exec host2 ncat -nklv 0.0.0.0 2000 &
|
||||||
docker exec host3 ncat -nklv 0.0.0.0 2000 &
|
docker exec host3 ncat -nklv 0.0.0.0 2000 &
|
||||||
|
docker exec host4 ncat -nkluv 0.0.0.0 4000 &
|
||||||
docker exec host2 ncat -e '/usr/bin/echo host2' -nkluv 0.0.0.0 3000 &
|
docker exec host2 ncat -e '/usr/bin/echo host2' -nkluv 0.0.0.0 3000 &
|
||||||
docker exec host3 ncat -e '/usr/bin/echo host3' -nkluv 0.0.0.0 3000 &
|
docker exec host3 ncat -e '/usr/bin/echo host3' -nkluv 0.0.0.0 3000 &
|
||||||
|
|
||||||
@@ -119,11 +120,11 @@ echo
|
|||||||
echo " *** Testing conntrack"
|
echo " *** Testing conntrack"
|
||||||
echo
|
echo
|
||||||
set -x
|
set -x
|
||||||
# host2 can ping host3 now that host3 pinged it first
|
|
||||||
docker exec host2 ping -c1 192.168.100.3
|
# host2 speaking to host4 on UDP 4000 should allow it to reply, when firewall rules would normally not permit this
|
||||||
# host4 can ping host2 once conntrack established
|
docker exec host2 sh -c "/usr/bin/echo host2 | ncat -nuv 192.168.100.4 4000"
|
||||||
docker exec host2 ping -c1 192.168.100.4
|
docker exec host2 ncat -e '/usr/bin/echo helloagainfromhost2' -nkluv 0.0.0.0 4000 &
|
||||||
docker exec host4 ping -c1 192.168.100.2
|
docker exec host4 sh -c "/usr/bin/echo host4 | ncat -nuv 192.168.100.2 4000"
|
||||||
|
|
||||||
docker exec host4 sh -c 'kill 1'
|
docker exec host4 sh -c 'kill 1'
|
||||||
docker exec host3 sh -c 'kill 1'
|
docker exec host3 sh -c 'kill 1'
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ jobs:
|
|||||||
- name: Build test mobile
|
- name: Build test mobile
|
||||||
run: make build-test-mobile
|
run: make build-test-mobile
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v5
|
- uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: e2e packet flow linux-latest
|
name: e2e packet flow linux-latest
|
||||||
path: e2e/mermaid/linux-latest
|
path: e2e/mermaid/linux-latest
|
||||||
@@ -125,7 +125,7 @@ jobs:
|
|||||||
- name: End 2 end
|
- name: End 2 end
|
||||||
run: make e2evv
|
run: make e2evv
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v5
|
- uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: e2e packet flow ${{ matrix.os }}
|
name: e2e packet flow ${{ matrix.os }}
|
||||||
path: e2e/mermaid/${{ matrix.os }}
|
path: e2e/mermaid/${{ matrix.os }}
|
||||||
|
|||||||
+48
-1
@@ -7,6 +7,50 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.10.3] - 2026-02-06
|
||||||
|
|
||||||
|
### Security
|
||||||
|
|
||||||
|
- Fix an issue where blocklist bypass is possible when using curve P256 since the signature can have 2 valid representations.
|
||||||
|
Both fingerprint representations will be tested against the blocklist.
|
||||||
|
Any newly issued P256 based certificates will have their signature clamped to the low-s form.
|
||||||
|
Nebula will assert the low-s signature form when validating certificates in a future version. [GHSA-69x3-g4r3-p962](https://github.com/slackhq/nebula/security/advisories/GHSA-69x3-g4r3-p962)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Improve error reporting if nebula fails to start due to a tun device naming issue. (#1588)
|
||||||
|
|
||||||
|
## [1.10.2] - 2026-01-21
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fix panic when using `use_system_route_table` that was introduced in v1.10.1. (#1580)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Fix some typos in comments. (#1582)
|
||||||
|
- Dependency updates. (#1581)
|
||||||
|
|
||||||
|
## [1.10.1] - 2026-01-16
|
||||||
|
|
||||||
|
See the [v1.10.1](https://github.com/slackhq/nebula/milestone/26?closed=1) milestone for a complete list of changes.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fix a bug where an unsafe route derived from the system route table could be lost on a config reload. (#1573)
|
||||||
|
- Fix the PEM banner for ECDSA P256 public keys. (#1552)
|
||||||
|
- Fix a regression on Windows from 1.9.x where nebula could fall back to a less performant UDP listener if
|
||||||
|
non-critical ioctls failed. (#1568)
|
||||||
|
- Fix a bug in handshake processing when a peer sends an unexpected public key. (#1566)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Add a config option to control accepting `recv_error` packets which defaults to `always`. (#1569)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Various dependency updates. (#1541, #1549, #1550, #1557, #1558, #1560, #1561, #1570, #1571)
|
||||||
|
|
||||||
## [1.10.0] - 2025-12-04
|
## [1.10.0] - 2025-12-04
|
||||||
|
|
||||||
See the [v1.10.0](https://github.com/slackhq/nebula/milestone/16?closed=1) milestone for a complete list of changes.
|
See the [v1.10.0](https://github.com/slackhq/nebula/milestone/16?closed=1) milestone for a complete list of changes.
|
||||||
@@ -744,7 +788,10 @@ created.)
|
|||||||
|
|
||||||
- Initial public release.
|
- Initial public release.
|
||||||
|
|
||||||
[Unreleased]: https://github.com/slackhq/nebula/compare/v1.10.0...HEAD
|
[Unreleased]: https://github.com/slackhq/nebula/compare/v1.10.3...HEAD
|
||||||
|
[1.10.3]: https://github.com/slackhq/nebula/releases/tag/v1.10.3
|
||||||
|
[1.10.2]: https://github.com/slackhq/nebula/releases/tag/v1.10.2
|
||||||
|
[1.10.1]: https://github.com/slackhq/nebula/releases/tag/v1.10.1
|
||||||
[1.10.0]: https://github.com/slackhq/nebula/releases/tag/v1.10.0
|
[1.10.0]: https://github.com/slackhq/nebula/releases/tag/v1.10.0
|
||||||
[1.9.7]: https://github.com/slackhq/nebula/releases/tag/v1.9.7
|
[1.9.7]: https://github.com/slackhq/nebula/releases/tag/v1.9.7
|
||||||
[1.9.6]: https://github.com/slackhq/nebula/releases/tag/v1.9.6
|
[1.9.6]: https://github.com/slackhq/nebula/releases/tag/v1.9.6
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
//go:build boringcrypto
|
//go:build boringcrypto
|
||||||
// +build boringcrypto
|
|
||||||
|
|
||||||
package nebula
|
package nebula
|
||||||
|
|
||||||
|
|||||||
@@ -141,10 +141,23 @@ func (ncp *CAPool) VerifyCertificate(now time.Time, c Certificate) (*CachedCerti
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Pre nebula v1.10.3 could generate signatures in either high or low s form and validation
|
||||||
|
// of signatures allowed for either. Nebula v1.10.3 and beyond clamps signature generation to low-s form
|
||||||
|
// but validation still allows for either. Since a change in the signature bytes affects the fingerprint, we
|
||||||
|
// need to test both forms until such a time comes that we enforce low-s form on signature validation.
|
||||||
|
fp2, err := CalculateAlternateFingerprint(c)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("could not calculate alternate fingerprint to verify: %w", err)
|
||||||
|
}
|
||||||
|
if fp2 != "" && ncp.IsBlocklisted(fp2) {
|
||||||
|
return nil, ErrBlockListed
|
||||||
|
}
|
||||||
|
|
||||||
cc := CachedCertificate{
|
cc := CachedCertificate{
|
||||||
Certificate: c,
|
Certificate: c,
|
||||||
InvertedGroups: make(map[string]struct{}),
|
InvertedGroups: make(map[string]struct{}),
|
||||||
Fingerprint: fp,
|
Fingerprint: fp,
|
||||||
|
fingerprint2: fp2,
|
||||||
signerFingerprint: signer.Fingerprint,
|
signerFingerprint: signer.Fingerprint,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -158,6 +171,11 @@ func (ncp *CAPool) VerifyCertificate(now time.Time, c Certificate) (*CachedCerti
|
|||||||
// VerifyCachedCertificate is the same as VerifyCertificate other than it operates on a pre-verified structure and
|
// VerifyCachedCertificate is the same as VerifyCertificate other than it operates on a pre-verified structure and
|
||||||
// is a cheaper operation to perform as a result.
|
// is a cheaper operation to perform as a result.
|
||||||
func (ncp *CAPool) VerifyCachedCertificate(now time.Time, c *CachedCertificate) error {
|
func (ncp *CAPool) VerifyCachedCertificate(now time.Time, c *CachedCertificate) error {
|
||||||
|
// Check any available alternate fingerprint forms for this certificate, re P256 high-s/low-s
|
||||||
|
if c.fingerprint2 != "" && ncp.IsBlocklisted(c.fingerprint2) {
|
||||||
|
return ErrBlockListed
|
||||||
|
}
|
||||||
|
|
||||||
_, err := ncp.verify(c.Certificate, now, c.Fingerprint, c.signerFingerprint)
|
_, err := ncp.verify(c.Certificate, now, c.Fingerprint, c.signerFingerprint)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|||||||
+43
-4
@@ -5,6 +5,7 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/slackhq/nebula/cert/p256"
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
)
|
)
|
||||||
@@ -170,6 +171,15 @@ func TestCertificateV1_VerifyP256(t *testing.T) {
|
|||||||
_, err = caPool.VerifyCertificate(time.Now(), c)
|
_, err = caPool.VerifyCertificate(time.Now(), c)
|
||||||
require.EqualError(t, err, "certificate is in the block list")
|
require.EqualError(t, err, "certificate is in the block list")
|
||||||
|
|
||||||
|
// Create a copy of the cert and swap to the alternate form for the signature
|
||||||
|
nc := c.Copy()
|
||||||
|
b, err := p256.Swap(c.Signature())
|
||||||
|
require.NoError(t, err)
|
||||||
|
require.NoError(t, nc.(*certificateV1).setSignature(b))
|
||||||
|
|
||||||
|
_, err = caPool.VerifyCertificate(time.Now(), nc)
|
||||||
|
require.EqualError(t, err, "certificate is in the block list")
|
||||||
|
|
||||||
caPool.ResetCertBlocklist()
|
caPool.ResetCertBlocklist()
|
||||||
_, err = caPool.VerifyCertificate(time.Now(), c)
|
_, err = caPool.VerifyCertificate(time.Now(), c)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
@@ -187,7 +197,7 @@ func TestCertificateV1_VerifyP256(t *testing.T) {
|
|||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
caPool = NewCAPool()
|
caPool = NewCAPool()
|
||||||
b, err := caPool.AddCAFromPEM(caPem)
|
b, err = caPool.AddCAFromPEM(caPem)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
assert.Empty(t, b)
|
assert.Empty(t, b)
|
||||||
|
|
||||||
@@ -196,7 +206,17 @@ func TestCertificateV1_VerifyP256(t *testing.T) {
|
|||||||
})
|
})
|
||||||
|
|
||||||
c, _, _, _ = NewTestCert(Version1, Curve_P256, ca, caKey, "test", time.Now(), time.Now().Add(5*time.Minute), nil, nil, []string{"test1"})
|
c, _, _, _ = NewTestCert(Version1, Curve_P256, ca, caKey, "test", time.Now(), time.Now().Add(5*time.Minute), nil, nil, []string{"test1"})
|
||||||
_, err = caPool.VerifyCertificate(time.Now(), c)
|
cc, err := caPool.VerifyCertificate(time.Now(), c)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
// Reset the blocklist and block the alternate form fingerprint
|
||||||
|
caPool.ResetCertBlocklist()
|
||||||
|
caPool.BlocklistFingerprint(cc.fingerprint2)
|
||||||
|
err = caPool.VerifyCachedCertificate(time.Now(), cc)
|
||||||
|
require.EqualError(t, err, "certificate is in the block list")
|
||||||
|
|
||||||
|
caPool.ResetCertBlocklist()
|
||||||
|
err = caPool.VerifyCachedCertificate(time.Now(), cc)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -394,6 +414,15 @@ func TestCertificateV2_VerifyP256(t *testing.T) {
|
|||||||
_, err = caPool.VerifyCertificate(time.Now(), c)
|
_, err = caPool.VerifyCertificate(time.Now(), c)
|
||||||
require.EqualError(t, err, "certificate is in the block list")
|
require.EqualError(t, err, "certificate is in the block list")
|
||||||
|
|
||||||
|
// Create a copy of the cert and swap to the alternate form for the signature
|
||||||
|
nc := c.Copy()
|
||||||
|
b, err := p256.Swap(c.Signature())
|
||||||
|
require.NoError(t, err)
|
||||||
|
require.NoError(t, nc.(*certificateV2).setSignature(b))
|
||||||
|
|
||||||
|
_, err = caPool.VerifyCertificate(time.Now(), nc)
|
||||||
|
require.EqualError(t, err, "certificate is in the block list")
|
||||||
|
|
||||||
caPool.ResetCertBlocklist()
|
caPool.ResetCertBlocklist()
|
||||||
_, err = caPool.VerifyCertificate(time.Now(), c)
|
_, err = caPool.VerifyCertificate(time.Now(), c)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
@@ -411,7 +440,7 @@ func TestCertificateV2_VerifyP256(t *testing.T) {
|
|||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
caPool = NewCAPool()
|
caPool = NewCAPool()
|
||||||
b, err := caPool.AddCAFromPEM(caPem)
|
b, err = caPool.AddCAFromPEM(caPem)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
assert.Empty(t, b)
|
assert.Empty(t, b)
|
||||||
|
|
||||||
@@ -420,7 +449,17 @@ func TestCertificateV2_VerifyP256(t *testing.T) {
|
|||||||
})
|
})
|
||||||
|
|
||||||
c, _, _, _ = NewTestCert(Version2, Curve_P256, ca, caKey, "test", time.Now(), time.Now().Add(5*time.Minute), nil, nil, []string{"test1"})
|
c, _, _, _ = NewTestCert(Version2, Curve_P256, ca, caKey, "test", time.Now(), time.Now().Add(5*time.Minute), nil, nil, []string{"test1"})
|
||||||
_, err = caPool.VerifyCertificate(time.Now(), c)
|
cc, err := caPool.VerifyCertificate(time.Now(), c)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
// Reset the blocklist and block the alternate form fingerprint
|
||||||
|
caPool.ResetCertBlocklist()
|
||||||
|
caPool.BlocklistFingerprint(cc.fingerprint2)
|
||||||
|
err = caPool.VerifyCachedCertificate(time.Now(), cc)
|
||||||
|
require.EqualError(t, err, "certificate is in the block list")
|
||||||
|
|
||||||
|
caPool.ResetCertBlocklist()
|
||||||
|
err = caPool.VerifyCachedCertificate(time.Now(), cc)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,8 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"net/netip"
|
"net/netip"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/slackhq/nebula/cert/p256"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Version uint8
|
type Version uint8
|
||||||
@@ -110,6 +112,9 @@ type CachedCertificate struct {
|
|||||||
InvertedGroups map[string]struct{}
|
InvertedGroups map[string]struct{}
|
||||||
Fingerprint string
|
Fingerprint string
|
||||||
signerFingerprint string
|
signerFingerprint string
|
||||||
|
|
||||||
|
// A place to store a 2nd fingerprint if the certificate could have one, such as with P256
|
||||||
|
fingerprint2 string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (cc *CachedCertificate) String() string {
|
func (cc *CachedCertificate) String() string {
|
||||||
@@ -119,6 +124,7 @@ func (cc *CachedCertificate) String() string {
|
|||||||
// Recombine will attempt to unmarshal a certificate received in a handshake.
|
// Recombine will attempt to unmarshal a certificate received in a handshake.
|
||||||
// Handshakes save space by placing the peers public key in a different part of the packet, we have to
|
// Handshakes save space by placing the peers public key in a different part of the packet, we have to
|
||||||
// reassemble the actual certificate structure with that in mind.
|
// reassemble the actual certificate structure with that in mind.
|
||||||
|
// Implementations MUST assert the public key is not in the raw certificate bytes if the passed in public key is not empty.
|
||||||
func Recombine(v Version, rawCertBytes, publicKey []byte, curve Curve) (Certificate, error) {
|
func Recombine(v Version, rawCertBytes, publicKey []byte, curve Curve) (Certificate, error) {
|
||||||
if publicKey == nil {
|
if publicKey == nil {
|
||||||
return nil, ErrNoPeerStaticKey
|
return nil, ErrNoPeerStaticKey
|
||||||
@@ -151,3 +157,31 @@ func Recombine(v Version, rawCertBytes, publicKey []byte, curve Curve) (Certific
|
|||||||
|
|
||||||
return c, nil
|
return c, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// CalculateAlternateFingerprint calculates a 2nd fingerprint representation for P256 certificates
|
||||||
|
// CAPool blocklist testing through `VerifyCertificate` and `VerifyCachedCertificate` automatically performs this step.
|
||||||
|
func CalculateAlternateFingerprint(c Certificate) (string, error) {
|
||||||
|
if c.Curve() != Curve_P256 {
|
||||||
|
return "", nil
|
||||||
|
}
|
||||||
|
|
||||||
|
nc := c.Copy()
|
||||||
|
b, err := p256.Swap(nc.Signature())
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
|
||||||
|
switch v := nc.(type) {
|
||||||
|
case *certificateV1:
|
||||||
|
err = v.setSignature(b)
|
||||||
|
case *certificateV2:
|
||||||
|
err = v.setSignature(b)
|
||||||
|
default:
|
||||||
|
return "", ErrUnknownVersion
|
||||||
|
}
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
return nc.Fingerprint()
|
||||||
|
}
|
||||||
|
|||||||
+11
-4
@@ -426,7 +426,7 @@ func unmarshalCertificateV1(b []byte, publicKey []byte) (*certificateV1, error)
|
|||||||
unsafeNetworks: make([]netip.Prefix, len(rc.Details.Subnets)/2),
|
unsafeNetworks: make([]netip.Prefix, len(rc.Details.Subnets)/2),
|
||||||
notBefore: time.Unix(rc.Details.NotBefore, 0),
|
notBefore: time.Unix(rc.Details.NotBefore, 0),
|
||||||
notAfter: time.Unix(rc.Details.NotAfter, 0),
|
notAfter: time.Unix(rc.Details.NotAfter, 0),
|
||||||
publicKey: make([]byte, len(rc.Details.PublicKey)),
|
publicKey: nil,
|
||||||
isCA: rc.Details.IsCA,
|
isCA: rc.Details.IsCA,
|
||||||
curve: rc.Details.Curve,
|
curve: rc.Details.Curve,
|
||||||
},
|
},
|
||||||
@@ -437,12 +437,19 @@ func unmarshalCertificateV1(b []byte, publicKey []byte) (*certificateV1, error)
|
|||||||
copy(nc.details.groups, rc.Details.Groups)
|
copy(nc.details.groups, rc.Details.Groups)
|
||||||
nc.details.issuer = hex.EncodeToString(rc.Details.Issuer)
|
nc.details.issuer = hex.EncodeToString(rc.Details.Issuer)
|
||||||
|
|
||||||
|
// If a public key is passed in as an argument, the certificate pubkey must be empty
|
||||||
|
// and the passed-in pubkey copied into the cert.
|
||||||
if len(publicKey) > 0 {
|
if len(publicKey) > 0 {
|
||||||
nc.details.publicKey = publicKey
|
if len(rc.Details.PublicKey) != 0 {
|
||||||
|
return nil, ErrCertPubkeyPresent
|
||||||
|
}
|
||||||
|
nc.details.publicKey = make([]byte, len(publicKey))
|
||||||
|
copy(nc.details.publicKey, publicKey)
|
||||||
|
} else {
|
||||||
|
nc.details.publicKey = make([]byte, len(rc.Details.PublicKey))
|
||||||
|
copy(nc.details.publicKey, rc.Details.PublicKey)
|
||||||
}
|
}
|
||||||
|
|
||||||
copy(nc.details.publicKey, rc.Details.PublicKey)
|
|
||||||
|
|
||||||
var ip netip.Addr
|
var ip netip.Addr
|
||||||
for i, rawIp := range rc.Details.Ips {
|
for i, rawIp := range rc.Details.Ips {
|
||||||
if i%2 == 0 {
|
if i%2 == 0 {
|
||||||
|
|||||||
@@ -62,6 +62,62 @@ func TestCertificateV1_Marshal(t *testing.T) {
|
|||||||
assert.Equal(t, nc.Groups(), nc2.Groups())
|
assert.Equal(t, nc.Groups(), nc2.Groups())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestCertificateV1_Unmarshal(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
before := time.Now().Add(time.Second * -60).Round(time.Second)
|
||||||
|
after := time.Now().Add(time.Second * 60).Round(time.Second)
|
||||||
|
pubKey := []byte("1234567890abcedfghij1234567890ab")
|
||||||
|
invalidPubkey := []byte("00000000000000000000000000000000")
|
||||||
|
|
||||||
|
nc := certificateV1{
|
||||||
|
details: detailsV1{
|
||||||
|
name: "testing",
|
||||||
|
networks: []netip.Prefix{
|
||||||
|
mustParsePrefixUnmapped("10.1.1.1/24"),
|
||||||
|
mustParsePrefixUnmapped("10.1.1.2/16"),
|
||||||
|
},
|
||||||
|
unsafeNetworks: []netip.Prefix{
|
||||||
|
mustParsePrefixUnmapped("9.1.1.2/24"),
|
||||||
|
mustParsePrefixUnmapped("9.1.1.3/16"),
|
||||||
|
},
|
||||||
|
groups: []string{"test-group1", "test-group2", "test-group3"},
|
||||||
|
notBefore: before,
|
||||||
|
notAfter: after,
|
||||||
|
publicKey: pubKey,
|
||||||
|
isCA: false,
|
||||||
|
issuer: "1234567890abcedfghij1234567890ab",
|
||||||
|
},
|
||||||
|
signature: []byte("1234567890abcedfghij1234567890ab"),
|
||||||
|
}
|
||||||
|
|
||||||
|
// This certificate has a pubkey included
|
||||||
|
certWithPubkey, err := nc.Marshal()
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
// This certificate is missing the pubkey section
|
||||||
|
certWithoutPubkey, err := nc.MarshalForHandshakes()
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
// Cert has no pubkey and no pubkey passed in must fail to validate
|
||||||
|
isNil, err := unmarshalCertificateV1(certWithoutPubkey, nil)
|
||||||
|
require.Error(t, err)
|
||||||
|
|
||||||
|
// Cert has different pubkey than one passed in must fail
|
||||||
|
isNil, err = unmarshalCertificateV1(certWithPubkey, invalidPubkey)
|
||||||
|
require.Nil(t, isNil)
|
||||||
|
require.Error(t, err)
|
||||||
|
|
||||||
|
// Cert has pubkey and no pubkey argument works ok
|
||||||
|
_, err = unmarshalCertificateV1(certWithPubkey, nil)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
// Cert has no pubkey and valid, correctly signed pubkey passed in
|
||||||
|
nc2, err := unmarshalCertificateV1(certWithoutPubkey, pubKey)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
assert.Equal(t, pubKey, nc2.PublicKey())
|
||||||
|
}
|
||||||
|
|
||||||
func TestCertificateV1_PublicKeyPem(t *testing.T) {
|
func TestCertificateV1_PublicKeyPem(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
before := time.Now().Add(time.Second * -60).Round(time.Second)
|
before := time.Now().Add(time.Second * -60).Round(time.Second)
|
||||||
|
|||||||
+8
-6
@@ -439,11 +439,7 @@ func (c *certificateV2) validate() error {
|
|||||||
if !hasV6Networks {
|
if !hasV6Networks {
|
||||||
return NewErrInvalidCertificateProperties("IPv6 unsafe networks require an IPv6 address assignment: %s", network)
|
return NewErrInvalidCertificateProperties("IPv6 unsafe networks require an IPv6 address assignment: %s", network)
|
||||||
}
|
}
|
||||||
} else if network.Addr().Is4() {
|
} // as long as we have any IP address, IPv4 UnsafeNetworks are allowed
|
||||||
if !hasV4Networks {
|
|
||||||
return NewErrInvalidCertificateProperties("IPv4 unsafe networks require an IPv4 address assignment: %s", network)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -592,7 +588,13 @@ func unmarshalCertificateV2(b []byte, publicKey []byte, curve Curve) (*certifica
|
|||||||
// Maybe grab the public key
|
// Maybe grab the public key
|
||||||
var rawPublicKey cryptobyte.String
|
var rawPublicKey cryptobyte.String
|
||||||
if len(publicKey) > 0 {
|
if len(publicKey) > 0 {
|
||||||
rawPublicKey = publicKey
|
// If a public key is passed in, then the handshake certificate must
|
||||||
|
// not have a public key present
|
||||||
|
if input.PeekASN1Tag(TagCertPublicKey) {
|
||||||
|
return nil, ErrCertPubkeyPresent
|
||||||
|
}
|
||||||
|
rawPublicKey = make(cryptobyte.String, len(publicKey))
|
||||||
|
copy(rawPublicKey, publicKey)
|
||||||
} else if !input.ReadOptionalASN1(&rawPublicKey, nil, TagCertPublicKey) {
|
} else if !input.ReadOptionalASN1(&rawPublicKey, nil, TagCertPublicKey) {
|
||||||
return nil, ErrBadFormat
|
return nil, ErrBadFormat
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -76,6 +76,58 @@ func TestCertificateV2_Marshal(t *testing.T) {
|
|||||||
assert.Equal(t, nc.Groups(), nc2.Groups())
|
assert.Equal(t, nc.Groups(), nc2.Groups())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestCertificateV2_Unmarshal(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
before := time.Now().Add(time.Second * -60).Round(time.Second)
|
||||||
|
after := time.Now().Add(time.Second * 60).Round(time.Second)
|
||||||
|
pubKey := []byte("1234567890abcedfghij1234567890ab")
|
||||||
|
|
||||||
|
nc := certificateV2{
|
||||||
|
details: detailsV2{
|
||||||
|
name: "testing",
|
||||||
|
networks: []netip.Prefix{
|
||||||
|
mustParsePrefixUnmapped("10.1.1.2/16"),
|
||||||
|
mustParsePrefixUnmapped("10.1.1.1/24"),
|
||||||
|
},
|
||||||
|
unsafeNetworks: []netip.Prefix{
|
||||||
|
mustParsePrefixUnmapped("9.1.1.3/16"),
|
||||||
|
mustParsePrefixUnmapped("9.1.1.2/24"),
|
||||||
|
},
|
||||||
|
groups: []string{"test-group1", "test-group2", "test-group3"},
|
||||||
|
notBefore: before,
|
||||||
|
notAfter: after,
|
||||||
|
isCA: false,
|
||||||
|
issuer: "1234567890abcdef1234567890abcdef",
|
||||||
|
},
|
||||||
|
signature: []byte("1234567890abcdef1234567890abcdef"),
|
||||||
|
publicKey: pubKey,
|
||||||
|
}
|
||||||
|
|
||||||
|
db, err := nc.details.Marshal()
|
||||||
|
require.NoError(t, err)
|
||||||
|
nc.rawDetails = db
|
||||||
|
|
||||||
|
certWithPubkey, err := nc.Marshal()
|
||||||
|
require.NoError(t, err)
|
||||||
|
//t.Log("Cert size:", len(b))
|
||||||
|
certWithoutPubkey, err := nc.MarshalForHandshakes()
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
// Cert must not have a pubkey if one is passed in as an argument
|
||||||
|
_, err = unmarshalCertificateV2(certWithPubkey, pubKey, Curve_CURVE25519)
|
||||||
|
require.ErrorIs(t, err, ErrCertPubkeyPresent)
|
||||||
|
|
||||||
|
// Certs must have pubkeys
|
||||||
|
_, err = unmarshalCertificateV2(certWithoutPubkey, nil, Curve_CURVE25519)
|
||||||
|
require.ErrorIs(t, err, ErrBadFormat)
|
||||||
|
|
||||||
|
// Ensure proper unmarshal if a pubkey is passed in
|
||||||
|
nc2, err := unmarshalCertificateV2(certWithoutPubkey, pubKey, Curve_CURVE25519)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
assert.Equal(t, nc.PublicKey(), nc2.PublicKey())
|
||||||
|
}
|
||||||
|
|
||||||
func TestCertificateV2_PublicKeyPem(t *testing.T) {
|
func TestCertificateV2_PublicKeyPem(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
before := time.Now().Add(time.Second * -60).Round(time.Second)
|
before := time.Now().Add(time.Second * -60).Round(time.Second)
|
||||||
|
|||||||
+1
-1
@@ -79,7 +79,7 @@ qrlJ69wer3ZUHFXA
|
|||||||
assert.Nil(t, k)
|
assert.Nil(t, k)
|
||||||
assert.Equal(t, rest, invalidPem)
|
assert.Equal(t, rest, invalidPem)
|
||||||
|
|
||||||
// Fail due to ivalid PEM format, because
|
// Fail due to invalid PEM format, because
|
||||||
// it's missing the requisite pre-encapsulation boundary.
|
// it's missing the requisite pre-encapsulation boundary.
|
||||||
curve, k, rest, err = DecryptAndUnmarshalSigningPrivateKey(passphrase, rest)
|
curve, k, rest, err = DecryptAndUnmarshalSigningPrivateKey(passphrase, rest)
|
||||||
require.EqualError(t, err, "input did not contain a valid PEM encoded block")
|
require.EqualError(t, err, "input did not contain a valid PEM encoded block")
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ var (
|
|||||||
ErrPrivateKeyEncrypted = errors.New("private key must be decrypted")
|
ErrPrivateKeyEncrypted = errors.New("private key must be decrypted")
|
||||||
ErrCaNotFound = errors.New("could not find ca for the certificate")
|
ErrCaNotFound = errors.New("could not find ca for the certificate")
|
||||||
ErrUnknownVersion = errors.New("certificate version unrecognized")
|
ErrUnknownVersion = errors.New("certificate version unrecognized")
|
||||||
|
ErrCertPubkeyPresent = errors.New("certificate has unexpected pubkey present")
|
||||||
|
|
||||||
ErrInvalidPEMBlock = errors.New("input did not contain a valid PEM encoded block")
|
ErrInvalidPEMBlock = errors.New("input did not contain a valid PEM encoded block")
|
||||||
ErrInvalidPEMCertificateBanner = errors.New("bytes did not contain a proper certificate banner")
|
ErrInvalidPEMCertificateBanner = errors.New("bytes did not contain a proper certificate banner")
|
||||||
|
|||||||
@@ -0,0 +1,122 @@
|
|||||||
|
package p256
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/elliptic"
|
||||||
|
"errors"
|
||||||
|
"math/big"
|
||||||
|
|
||||||
|
"filippo.io/bigmod"
|
||||||
|
|
||||||
|
"golang.org/x/crypto/cryptobyte"
|
||||||
|
"golang.org/x/crypto/cryptobyte/asn1"
|
||||||
|
)
|
||||||
|
|
||||||
|
var halfN = new(big.Int).Rsh(elliptic.P256().Params().N, 1)
|
||||||
|
var nMod *bigmod.Modulus
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
n, err := bigmod.NewModulus(elliptic.P256().Params().N.Bytes())
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
nMod = n
|
||||||
|
}
|
||||||
|
|
||||||
|
func IsNormalized(sig []byte) (bool, error) {
|
||||||
|
r, s, err := parseSignature(sig)
|
||||||
|
if err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
return checkLowS(r, s), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func checkLowS(_, s []byte) bool {
|
||||||
|
bigS := new(big.Int).SetBytes(s)
|
||||||
|
// Check if S <= (N/2), because we want to include the midpoint in the set of low-s
|
||||||
|
return bigS.Cmp(halfN) <= 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func swap(r, s []byte) ([]byte, []byte, error) {
|
||||||
|
var err error
|
||||||
|
bigS, err := bigmod.NewNat().SetBytes(s, nMod)
|
||||||
|
if err != nil {
|
||||||
|
return nil, nil, err
|
||||||
|
}
|
||||||
|
sNormalized := nMod.Nat().Sub(bigS, nMod)
|
||||||
|
|
||||||
|
return r, sNormalized.Bytes(nMod), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func Normalize(sig []byte) ([]byte, error) {
|
||||||
|
r, s, err := parseSignature(sig)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if checkLowS(r, s) {
|
||||||
|
return sig, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
newR, newS, err := swap(r, s)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return encodeSignature(newR, newS)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Swap will change sig between its current form to the opposite high or low form.
|
||||||
|
func Swap(sig []byte) ([]byte, error) {
|
||||||
|
r, s, err := parseSignature(sig)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
newR, newS, err := swap(r, s)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return encodeSignature(newR, newS)
|
||||||
|
}
|
||||||
|
|
||||||
|
// parseSignature taken exactly from crypto/ecdsa/ecdsa.go
|
||||||
|
func parseSignature(sig []byte) (r, s []byte, err error) {
|
||||||
|
var inner cryptobyte.String
|
||||||
|
input := cryptobyte.String(sig)
|
||||||
|
if !input.ReadASN1(&inner, asn1.SEQUENCE) ||
|
||||||
|
!input.Empty() ||
|
||||||
|
!inner.ReadASN1Integer(&r) ||
|
||||||
|
!inner.ReadASN1Integer(&s) ||
|
||||||
|
!inner.Empty() {
|
||||||
|
return nil, nil, errors.New("invalid ASN.1")
|
||||||
|
}
|
||||||
|
return r, s, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func encodeSignature(r, s []byte) ([]byte, error) {
|
||||||
|
var b cryptobyte.Builder
|
||||||
|
b.AddASN1(asn1.SEQUENCE, func(b *cryptobyte.Builder) {
|
||||||
|
addASN1IntBytes(b, r)
|
||||||
|
addASN1IntBytes(b, s)
|
||||||
|
})
|
||||||
|
return b.Bytes()
|
||||||
|
}
|
||||||
|
|
||||||
|
// addASN1IntBytes encodes in ASN.1 a positive integer represented as
|
||||||
|
// a big-endian byte slice with zero or more leading zeroes.
|
||||||
|
func addASN1IntBytes(b *cryptobyte.Builder, bytes []byte) {
|
||||||
|
for len(bytes) > 0 && bytes[0] == 0 {
|
||||||
|
bytes = bytes[1:]
|
||||||
|
}
|
||||||
|
if len(bytes) == 0 {
|
||||||
|
b.SetError(errors.New("invalid integer"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
b.AddASN1(asn1.INTEGER, func(c *cryptobyte.Builder) {
|
||||||
|
if bytes[0]&0x80 != 0 {
|
||||||
|
c.AddUint8(0)
|
||||||
|
}
|
||||||
|
c.AddBytes(bytes)
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
package p256
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/ecdsa"
|
||||||
|
"crypto/elliptic"
|
||||||
|
"crypto/rand"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestFlipping(t *testing.T) {
|
||||||
|
priv, err1 := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
|
||||||
|
require.NoError(t, err1)
|
||||||
|
|
||||||
|
out, err := ecdsa.SignASN1(rand.Reader, priv, []byte("big chungus"))
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
r, s, err := parseSignature(out)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
r, s1, err := swap(r, s)
|
||||||
|
require.NoError(t, err)
|
||||||
|
r, s2, err := swap(r, s1)
|
||||||
|
require.NoError(t, err)
|
||||||
|
require.Equal(t, s, s2)
|
||||||
|
require.NotEqual(t, s, s1)
|
||||||
|
}
|
||||||
+5
-5
@@ -44,7 +44,7 @@ bzBEr00kERQxxTzTsH8cpYEgRoipvmExvg8WP8NdAJEYJosB
|
|||||||
assert.Equal(t, rest, invalidPem)
|
assert.Equal(t, rest, invalidPem)
|
||||||
require.EqualError(t, err, "bytes did not contain a proper certificate banner")
|
require.EqualError(t, err, "bytes did not contain a proper certificate banner")
|
||||||
|
|
||||||
// Fail due to ivalid PEM format, because
|
// Fail due to invalid PEM format, because
|
||||||
// it's missing the requisite pre-encapsulation boundary.
|
// it's missing the requisite pre-encapsulation boundary.
|
||||||
cert, rest, err = UnmarshalCertificateFromPEM(rest)
|
cert, rest, err = UnmarshalCertificateFromPEM(rest)
|
||||||
assert.Nil(t, cert)
|
assert.Nil(t, cert)
|
||||||
@@ -106,7 +106,7 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|||||||
assert.Equal(t, rest, invalidPem)
|
assert.Equal(t, rest, invalidPem)
|
||||||
require.EqualError(t, err, "bytes did not contain a proper Ed25519/ECDSA private key banner")
|
require.EqualError(t, err, "bytes did not contain a proper Ed25519/ECDSA private key banner")
|
||||||
|
|
||||||
// Fail due to ivalid PEM format, because
|
// Fail due to invalid PEM format, because
|
||||||
// it's missing the requisite pre-encapsulation boundary.
|
// it's missing the requisite pre-encapsulation boundary.
|
||||||
k, rest, curve, err = UnmarshalSigningPrivateKeyFromPEM(rest)
|
k, rest, curve, err = UnmarshalSigningPrivateKeyFromPEM(rest)
|
||||||
assert.Nil(t, k)
|
assert.Nil(t, k)
|
||||||
@@ -168,7 +168,7 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
|
|||||||
assert.Equal(t, rest, invalidPem)
|
assert.Equal(t, rest, invalidPem)
|
||||||
require.EqualError(t, err, "bytes did not contain a proper private key banner")
|
require.EqualError(t, err, "bytes did not contain a proper private key banner")
|
||||||
|
|
||||||
// Fail due to ivalid PEM format, because
|
// Fail due to invalid PEM format, because
|
||||||
// it's missing the requisite pre-encapsulation boundary.
|
// it's missing the requisite pre-encapsulation boundary.
|
||||||
k, rest, curve, err = UnmarshalPrivateKeyFromPEM(rest)
|
k, rest, curve, err = UnmarshalPrivateKeyFromPEM(rest)
|
||||||
assert.Nil(t, k)
|
assert.Nil(t, k)
|
||||||
@@ -221,7 +221,7 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
|
|||||||
require.EqualError(t, err, "bytes did not contain a proper public key banner")
|
require.EqualError(t, err, "bytes did not contain a proper public key banner")
|
||||||
assert.Equal(t, rest, invalidPem)
|
assert.Equal(t, rest, invalidPem)
|
||||||
|
|
||||||
// Fail due to ivalid PEM format, because
|
// Fail due to invalid PEM format, because
|
||||||
// it's missing the requisite pre-encapsulation boundary.
|
// it's missing the requisite pre-encapsulation boundary.
|
||||||
k, rest, curve, err = UnmarshalPublicKeyFromPEM(rest)
|
k, rest, curve, err = UnmarshalPublicKeyFromPEM(rest)
|
||||||
assert.Nil(t, k)
|
assert.Nil(t, k)
|
||||||
@@ -299,7 +299,7 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
|
|||||||
require.EqualError(t, err, "bytes did not contain a proper public key banner")
|
require.EqualError(t, err, "bytes did not contain a proper public key banner")
|
||||||
assert.Equal(t, rest, invalidPem)
|
assert.Equal(t, rest, invalidPem)
|
||||||
|
|
||||||
// Fail due to ivalid PEM format, because
|
// Fail due to invalid PEM format, because
|
||||||
// it's missing the requisite pre-encapsulation boundary.
|
// it's missing the requisite pre-encapsulation boundary.
|
||||||
k, rest, curve, err = UnmarshalPublicKeyFromPEM(rest)
|
k, rest, curve, err = UnmarshalPublicKeyFromPEM(rest)
|
||||||
assert.Nil(t, k)
|
assert.Nil(t, k)
|
||||||
|
|||||||
@@ -9,6 +9,8 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"net/netip"
|
"net/netip"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/slackhq/nebula/cert/p256"
|
||||||
)
|
)
|
||||||
|
|
||||||
// TBSCertificate represents a certificate intended to be signed.
|
// TBSCertificate represents a certificate intended to be signed.
|
||||||
@@ -126,6 +128,13 @@ func (t *TBSCertificate) SignWith(signer Certificate, curve Curve, sp SignerLamb
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if curve == Curve_P256 {
|
||||||
|
sig, err = p256.Normalize(sig)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
err = c.setSignature(sig)
|
err = c.setSignature(sig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/slackhq/nebula/cert/p256"
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
)
|
)
|
||||||
@@ -89,3 +90,48 @@ func TestCertificateV1_SignP256(t *testing.T) {
|
|||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
assert.NotNil(t, uc)
|
assert.NotNil(t, uc)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestCertificate_SignP256_AlwaysNormalized(t *testing.T) {
|
||||||
|
before := time.Now().Add(time.Second * -60).Round(time.Second)
|
||||||
|
after := time.Now().Add(time.Second * 60).Round(time.Second)
|
||||||
|
pubKey := []byte("01234567890abcedfghij1234567890ab1234567890abcedfghij1234567890ab")
|
||||||
|
|
||||||
|
tbs := TBSCertificate{
|
||||||
|
Version: Version1,
|
||||||
|
Name: "testing",
|
||||||
|
Networks: []netip.Prefix{
|
||||||
|
mustParsePrefixUnmapped("10.1.1.1/24"),
|
||||||
|
mustParsePrefixUnmapped("10.1.1.2/16"),
|
||||||
|
},
|
||||||
|
UnsafeNetworks: []netip.Prefix{
|
||||||
|
mustParsePrefixUnmapped("9.1.1.2/24"),
|
||||||
|
mustParsePrefixUnmapped("9.1.1.3/16"),
|
||||||
|
},
|
||||||
|
Groups: []string{"test-group1", "test-group2", "test-group3"},
|
||||||
|
NotBefore: before,
|
||||||
|
NotAfter: after,
|
||||||
|
PublicKey: pubKey,
|
||||||
|
IsCA: true,
|
||||||
|
Curve: Curve_P256,
|
||||||
|
}
|
||||||
|
|
||||||
|
priv, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
|
||||||
|
require.NoError(t, err)
|
||||||
|
pub := elliptic.Marshal(elliptic.P256(), priv.PublicKey.X, priv.PublicKey.Y)
|
||||||
|
rawPriv := priv.D.FillBytes(make([]byte, 32))
|
||||||
|
|
||||||
|
for i := 0; i < 1000; i++ {
|
||||||
|
if i&1 == 1 {
|
||||||
|
tbs.Version = Version1
|
||||||
|
} else {
|
||||||
|
tbs.Version = Version2
|
||||||
|
}
|
||||||
|
c, err := tbs.Sign(nil, Curve_P256, rawPriv)
|
||||||
|
require.NoError(t, err)
|
||||||
|
assert.NotNil(t, c)
|
||||||
|
assert.True(t, c.CheckSignature(pub))
|
||||||
|
normie, err := p256.IsNormalized(c.Signature())
|
||||||
|
require.NoError(t, err)
|
||||||
|
assert.True(t, normie)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -200,7 +200,7 @@ func Test_ca(t *testing.T) {
|
|||||||
assert.Empty(t, b)
|
assert.Empty(t, b)
|
||||||
assert.Len(t, lKey, 64)
|
assert.Len(t, lKey, 64)
|
||||||
|
|
||||||
// test when reading passsword results in an error
|
// test when reading password results in an error
|
||||||
os.Remove(keyF.Name())
|
os.Remove(keyF.Name())
|
||||||
os.Remove(crtF.Name())
|
os.Remove(crtF.Name())
|
||||||
ob.Reset()
|
ob.Reset()
|
||||||
|
|||||||
@@ -3,9 +3,6 @@ package main
|
|||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
|
||||||
"net/http"
|
|
||||||
_ "net/http/pprof"
|
|
||||||
"os"
|
"os"
|
||||||
"runtime/debug"
|
"runtime/debug"
|
||||||
"strings"
|
"strings"
|
||||||
@@ -74,10 +71,6 @@ func main() {
|
|||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
go func() {
|
|
||||||
log.Println(http.ListenAndServe("0.0.0.0:6060", nil))
|
|
||||||
}()
|
|
||||||
|
|
||||||
if !*configTest {
|
if !*configTest {
|
||||||
ctrl.Start()
|
ctrl.Start()
|
||||||
notifyReady(l)
|
notifyReady(l)
|
||||||
|
|||||||
+1
-1
@@ -13,7 +13,7 @@ import (
|
|||||||
"github.com/slackhq/nebula/noiseutil"
|
"github.com/slackhq/nebula/noiseutil"
|
||||||
)
|
)
|
||||||
|
|
||||||
const ReplayWindow = 4096
|
const ReplayWindow = 1024
|
||||||
|
|
||||||
type ConnectionState struct {
|
type ConnectionState struct {
|
||||||
eKey *NebulaCipherState
|
eKey *NebulaCipherState
|
||||||
|
|||||||
+1
-3
@@ -1,5 +1,4 @@
|
|||||||
//go:build e2e_testing
|
//go:build e2e_testing
|
||||||
// +build e2e_testing
|
|
||||||
|
|
||||||
package nebula
|
package nebula
|
||||||
|
|
||||||
@@ -80,8 +79,7 @@ func (c *Control) GetFromTun(block bool) []byte {
|
|||||||
|
|
||||||
// GetFromUDP will pull a udp packet off the udp side of nebula
|
// GetFromUDP will pull a udp packet off the udp side of nebula
|
||||||
func (c *Control) GetFromUDP(block bool) *udp.Packet {
|
func (c *Control) GetFromUDP(block bool) *udp.Packet {
|
||||||
out := c.f.outside.(*udp.TesterConn).Get(block)
|
return c.f.outside.(*udp.TesterConn).Get(block)
|
||||||
return out
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Control) GetUDPTxChan() <-chan *udp.Packet {
|
func (c *Control) GetUDPTxChan() <-chan *udp.Packet {
|
||||||
|
|||||||
@@ -0,0 +1,400 @@
|
|||||||
|
//go:build e2e_testing
|
||||||
|
// +build e2e_testing
|
||||||
|
|
||||||
|
package e2e
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/binary"
|
||||||
|
"net/netip"
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/slackhq/nebula/cert"
|
||||||
|
"github.com/slackhq/nebula/cert_test"
|
||||||
|
"github.com/slackhq/nebula/e2e/router"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
)
|
||||||
|
|
||||||
|
// parseIPv4UDPPacket extracts source/dest IPs, ports, and payload from an IPv4 UDP packet.
|
||||||
|
func parseIPv4UDPPacket(t testing.TB, pkt []byte) (srcIP, dstIP netip.Addr, srcPort, dstPort uint16, payload []byte) {
|
||||||
|
t.Helper()
|
||||||
|
require.True(t, len(pkt) >= 28, "packet too short for IPv4+UDP header")
|
||||||
|
require.Equal(t, byte(0x45), pkt[0]&0xF0|pkt[0]&0x0F, "not a simple IPv4 packet (IHL!=5)")
|
||||||
|
|
||||||
|
srcIP, _ = netip.AddrFromSlice(pkt[12:16])
|
||||||
|
dstIP, _ = netip.AddrFromSlice(pkt[16:20])
|
||||||
|
|
||||||
|
ihl := int(pkt[0]&0x0F) * 4
|
||||||
|
require.True(t, len(pkt) >= ihl+8, "packet too short for UDP header")
|
||||||
|
srcPort = binary.BigEndian.Uint16(pkt[ihl : ihl+2])
|
||||||
|
dstPort = binary.BigEndian.Uint16(pkt[ihl+2 : ihl+4])
|
||||||
|
udpLen := binary.BigEndian.Uint16(pkt[ihl+4 : ihl+6])
|
||||||
|
payload = pkt[ihl+8 : ihl+int(udpLen)]
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestSNAT_IPv6OnlyPeer_IPv4UnsafeTraffic(t *testing.T) {
|
||||||
|
// Scenario: Two IPv6-only VPN nodes. The "router" node has unsafe networks
|
||||||
|
// (192.168.0.0/16) in its cert and a configured SNAT address. The "sender"
|
||||||
|
// node has an unsafe route for 192.168.0.0/16 via the router.
|
||||||
|
//
|
||||||
|
// When sender injects an IPv4 packet destined for the unsafe network, it
|
||||||
|
// gets tunneled to the router. The router's firewall detects this is IPv4
|
||||||
|
// from an IPv6-only peer and applies SNAT, rewriting the source IP to the
|
||||||
|
// SNAT address before delivering it to TUN.
|
||||||
|
//
|
||||||
|
// When a reply comes back from TUN addressed to the SNAT address, the
|
||||||
|
// router un-SNATs it (restoring the original destination) and tunnels it
|
||||||
|
// back to the sender.
|
||||||
|
|
||||||
|
ca, _, caKey, _ := cert_test.NewTestCaCert(cert.Version2, cert.Curve_CURVE25519, time.Now(), time.Now().Add(10*time.Minute), nil, nil, []string{})
|
||||||
|
|
||||||
|
unsafePrefix := "192.168.0.0/16"
|
||||||
|
snatAddr := netip.MustParseAddr("169.254.42.42")
|
||||||
|
|
||||||
|
// Router: IPv6-only with unsafe networks and a manual SNAT address.
|
||||||
|
// Override inbound firewall with local_cidr: "any" so both IPv4 (unsafe)
|
||||||
|
// and IPv6 (VPN) traffic is accepted.
|
||||||
|
routerControl, routerVpnIpNet, routerUdpAddr, _ := newSimpleServerWithUdpAndUnsafeNetworks(
|
||||||
|
cert.Version2, ca, caKey, "router", "ff::1/64",
|
||||||
|
netip.MustParseAddrPort("[beef::1]:4242"),
|
||||||
|
unsafePrefix,
|
||||||
|
m{
|
||||||
|
"firewall": m{
|
||||||
|
"inbound": []m{{
|
||||||
|
"proto": "any",
|
||||||
|
"port": "any",
|
||||||
|
"host": "any",
|
||||||
|
"local_cidr": "any",
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
"tun": m{
|
||||||
|
"snat_address_for_4over6": snatAddr.String(),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
// Sender: IPv6-only with an unsafe route via the router
|
||||||
|
senderControl, _, _, _ := newSimpleServerWithUdp(
|
||||||
|
cert.Version2, ca, caKey, "sender", "ff::2/64",
|
||||||
|
netip.MustParseAddrPort("[beef::2]:4242"),
|
||||||
|
m{
|
||||||
|
"tun": m{
|
||||||
|
"unsafe_routes": []m{
|
||||||
|
{"route": unsafePrefix, "via": routerVpnIpNet[0].Addr().String()},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
// Tell sender where the router lives
|
||||||
|
senderControl.InjectLightHouseAddr(routerVpnIpNet[0].Addr(), routerUdpAddr)
|
||||||
|
|
||||||
|
// Build the router and start both nodes
|
||||||
|
r := router.NewR(t, routerControl, senderControl)
|
||||||
|
defer r.RenderFlow()
|
||||||
|
|
||||||
|
routerControl.Start()
|
||||||
|
senderControl.Start()
|
||||||
|
|
||||||
|
// --- Outbound: sender -> IPv4 unsafe dest (via router with SNAT) ---
|
||||||
|
|
||||||
|
origSrcIP := netip.MustParseAddr("10.0.0.1")
|
||||||
|
unsafeDest := netip.MustParseAddr("192.168.1.1")
|
||||||
|
var origSrcPort uint16 = 12345
|
||||||
|
var dstPort uint16 = 80
|
||||||
|
|
||||||
|
t.Log("Sender injects an IPv4 packet to the unsafe network")
|
||||||
|
senderControl.InjectTunUDPPacket(unsafeDest, dstPort, origSrcIP, origSrcPort, []byte("snat me"))
|
||||||
|
|
||||||
|
t.Log("Route packets (handshake + data) until the router gets the packet on TUN")
|
||||||
|
snatPkt := r.RouteForAllUntilTxTun(routerControl)
|
||||||
|
|
||||||
|
t.Log("Verify the packet was SNATted")
|
||||||
|
gotSrcIP, gotDstIP, gotSrcPort, gotDstPort, gotPayload := parseIPv4UDPPacket(t, snatPkt)
|
||||||
|
assert.Equal(t, snatAddr, gotSrcIP, "source IP should be rewritten to the SNAT address")
|
||||||
|
assert.Equal(t, unsafeDest, gotDstIP, "destination IP should be unchanged")
|
||||||
|
assert.Equal(t, dstPort, gotDstPort, "destination port should be unchanged")
|
||||||
|
assert.Equal(t, []byte("snat me"), gotPayload, "payload should be unchanged")
|
||||||
|
|
||||||
|
// Capture the SNAT port (may differ from original if port was remapped)
|
||||||
|
snatPort := gotSrcPort
|
||||||
|
t.Logf("SNAT port: %d (original: %d)", snatPort, origSrcPort)
|
||||||
|
|
||||||
|
// --- Return: reply from unsafe dest -> un-SNATted back to sender ---
|
||||||
|
|
||||||
|
t.Log("Router injects a reply packet from the unsafe dest to the SNAT address")
|
||||||
|
routerControl.InjectTunUDPPacket(snatAddr, snatPort, unsafeDest, dstPort, []byte("reply from unsafe"))
|
||||||
|
|
||||||
|
t.Log("Route until sender gets the reply on TUN")
|
||||||
|
replyPkt := r.RouteForAllUntilTxTun(senderControl)
|
||||||
|
|
||||||
|
t.Log("Verify the reply was un-SNATted")
|
||||||
|
replySrcIP, replyDstIP, replySrcPort, replyDstPort, replyPayload := parseIPv4UDPPacket(t, replyPkt)
|
||||||
|
assert.Equal(t, unsafeDest, replySrcIP, "reply source should be the unsafe dest")
|
||||||
|
assert.Equal(t, origSrcIP, replyDstIP, "reply dest should be the original source IP (un-SNATted)")
|
||||||
|
assert.Equal(t, dstPort, replySrcPort, "reply source port should be the unsafe dest port")
|
||||||
|
assert.Equal(t, origSrcPort, replyDstPort, "reply dest port should be the original source port (un-SNATted)")
|
||||||
|
assert.Equal(t, []byte("reply from unsafe"), replyPayload, "payload should be unchanged")
|
||||||
|
|
||||||
|
r.RenderHostmaps("Final hostmaps", routerControl, senderControl)
|
||||||
|
|
||||||
|
// Also verify normal IPv6 VPN traffic still works between the nodes
|
||||||
|
t.Log("Verify normal IPv6 VPN tunnel still works")
|
||||||
|
assertTunnel(t, routerVpnIpNet[0].Addr(), senderControl.GetVpnAddrs()[0], routerControl, senderControl, r)
|
||||||
|
|
||||||
|
routerControl.Stop()
|
||||||
|
senderControl.Stop()
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestSNAT_MultipleFlows(t *testing.T) {
|
||||||
|
// Test that multiple distinct IPv4 flows from the same IPv6-only peer
|
||||||
|
// are tracked independently through SNAT.
|
||||||
|
|
||||||
|
ca, _, caKey, _ := cert_test.NewTestCaCert(cert.Version2, cert.Curve_CURVE25519, time.Now(), time.Now().Add(10*time.Minute), nil, nil, []string{})
|
||||||
|
|
||||||
|
unsafePrefix := "192.168.0.0/16"
|
||||||
|
snatAddr := netip.MustParseAddr("169.254.42.42")
|
||||||
|
|
||||||
|
routerControl, routerVpnIpNet, routerUdpAddr, _ := newSimpleServerWithUdpAndUnsafeNetworks(
|
||||||
|
cert.Version2, ca, caKey, "router", "ff::1/64",
|
||||||
|
netip.MustParseAddrPort("[beef::1]:4242"),
|
||||||
|
unsafePrefix,
|
||||||
|
m{
|
||||||
|
"firewall": m{
|
||||||
|
"inbound": []m{{
|
||||||
|
"proto": "any",
|
||||||
|
"port": "any",
|
||||||
|
"host": "any",
|
||||||
|
"local_cidr": "any",
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
"tun": m{
|
||||||
|
"snat_address_for_4over6": snatAddr.String(),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
senderControl, _, _, _ := newSimpleServerWithUdp(
|
||||||
|
cert.Version2, ca, caKey, "sender", "ff::2/64",
|
||||||
|
netip.MustParseAddrPort("[beef::2]:4242"),
|
||||||
|
m{
|
||||||
|
"tun": m{
|
||||||
|
"unsafe_routes": []m{
|
||||||
|
{"route": unsafePrefix, "via": routerVpnIpNet[0].Addr().String()},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
senderControl.InjectLightHouseAddr(routerVpnIpNet[0].Addr(), routerUdpAddr)
|
||||||
|
|
||||||
|
r := router.NewR(t, routerControl, senderControl)
|
||||||
|
defer r.RenderFlow()
|
||||||
|
r.CancelFlowLogs()
|
||||||
|
|
||||||
|
routerControl.Start()
|
||||||
|
senderControl.Start()
|
||||||
|
|
||||||
|
unsafeDest := netip.MustParseAddr("192.168.1.1")
|
||||||
|
|
||||||
|
// Send first flow
|
||||||
|
senderControl.InjectTunUDPPacket(unsafeDest, 80, netip.MustParseAddr("10.0.0.1"), 1111, []byte("flow1"))
|
||||||
|
pkt1 := r.RouteForAllUntilTxTun(routerControl)
|
||||||
|
srcIP1, _, srcPort1, _, payload1 := parseIPv4UDPPacket(t, pkt1)
|
||||||
|
assert.Equal(t, snatAddr, srcIP1)
|
||||||
|
assert.Equal(t, []byte("flow1"), payload1)
|
||||||
|
|
||||||
|
// Send second flow (different source port)
|
||||||
|
senderControl.InjectTunUDPPacket(unsafeDest, 80, netip.MustParseAddr("10.0.0.1"), 2222, []byte("flow2"))
|
||||||
|
pkt2 := r.RouteForAllUntilTxTun(routerControl)
|
||||||
|
srcIP2, _, srcPort2, _, payload2 := parseIPv4UDPPacket(t, pkt2)
|
||||||
|
assert.Equal(t, snatAddr, srcIP2)
|
||||||
|
assert.Equal(t, []byte("flow2"), payload2)
|
||||||
|
|
||||||
|
// The two flows should have different SNAT ports (since they're different conntracks)
|
||||||
|
t.Logf("Flow 1 SNAT port: %d, Flow 2 SNAT port: %d", srcPort1, srcPort2)
|
||||||
|
|
||||||
|
// Reply to flow 2 first (out of order)
|
||||||
|
routerControl.InjectTunUDPPacket(snatAddr, srcPort2, unsafeDest, 80, []byte("reply2"))
|
||||||
|
reply2 := r.RouteForAllUntilTxTun(senderControl)
|
||||||
|
_, replyDst2, _, replyDstPort2, replyPayload2 := parseIPv4UDPPacket(t, reply2)
|
||||||
|
assert.Equal(t, netip.MustParseAddr("10.0.0.1"), replyDst2)
|
||||||
|
assert.Equal(t, uint16(2222), replyDstPort2, "reply to flow 2 should restore original port 2222")
|
||||||
|
assert.Equal(t, []byte("reply2"), replyPayload2)
|
||||||
|
|
||||||
|
// Reply to flow 1
|
||||||
|
routerControl.InjectTunUDPPacket(snatAddr, srcPort1, unsafeDest, 80, []byte("reply1"))
|
||||||
|
reply1 := r.RouteForAllUntilTxTun(senderControl)
|
||||||
|
_, replyDst1, _, replyDstPort1, replyPayload1 := parseIPv4UDPPacket(t, reply1)
|
||||||
|
assert.Equal(t, netip.MustParseAddr("10.0.0.1"), replyDst1)
|
||||||
|
assert.Equal(t, uint16(1111), replyDstPort1, "reply to flow 1 should restore original port 1111")
|
||||||
|
assert.Equal(t, []byte("reply1"), replyPayload1)
|
||||||
|
|
||||||
|
routerControl.Stop()
|
||||||
|
senderControl.Stop()
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Adversarial SNAT E2E Tests ---
|
||||||
|
|
||||||
|
func TestSNAT_UnsolicitedReplyDropped(t *testing.T) {
|
||||||
|
// Without any outbound SNAT traffic, inject a packet from the router's TUN
|
||||||
|
// addressed to the SNAT address. The sender must never receive it because
|
||||||
|
// there's no conntrack entry to un-SNAT through.
|
||||||
|
|
||||||
|
ca, _, caKey, _ := cert_test.NewTestCaCert(cert.Version2, cert.Curve_CURVE25519, time.Now(), time.Now().Add(10*time.Minute), nil, nil, []string{})
|
||||||
|
|
||||||
|
unsafePrefix := "192.168.0.0/16"
|
||||||
|
snatAddr := netip.MustParseAddr("169.254.42.42")
|
||||||
|
|
||||||
|
routerControl, routerVpnIpNet, routerUdpAddr, _ := newSimpleServerWithUdpAndUnsafeNetworks(
|
||||||
|
cert.Version2, ca, caKey, "router", "ff::1/64",
|
||||||
|
netip.MustParseAddrPort("[beef::1]:4242"),
|
||||||
|
unsafePrefix,
|
||||||
|
m{
|
||||||
|
"firewall": m{
|
||||||
|
"inbound": []m{{
|
||||||
|
"proto": "any",
|
||||||
|
"port": "any",
|
||||||
|
"host": "any",
|
||||||
|
"local_cidr": "any",
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
"tun": m{
|
||||||
|
"snat_address_for_4over6": snatAddr.String(),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
senderControl, _, _, _ := newSimpleServerWithUdp(
|
||||||
|
cert.Version2, ca, caKey, "sender", "ff::2/64",
|
||||||
|
netip.MustParseAddrPort("[beef::2]:4242"),
|
||||||
|
m{
|
||||||
|
"tun": m{
|
||||||
|
"unsafe_routes": []m{
|
||||||
|
{"route": unsafePrefix, "via": routerVpnIpNet[0].Addr().String()},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
senderControl.InjectLightHouseAddr(routerVpnIpNet[0].Addr(), routerUdpAddr)
|
||||||
|
|
||||||
|
r := router.NewR(t, routerControl, senderControl)
|
||||||
|
defer r.RenderFlow()
|
||||||
|
r.CancelFlowLogs()
|
||||||
|
|
||||||
|
routerControl.Start()
|
||||||
|
senderControl.Start()
|
||||||
|
|
||||||
|
// First establish the tunnel with normal IPv6 traffic so handshake completes
|
||||||
|
assertTunnel(t, routerVpnIpNet[0].Addr(), senderControl.GetVpnAddrs()[0], routerControl, senderControl, r)
|
||||||
|
|
||||||
|
// Inject the unsolicited reply from router's TUN to the SNAT address.
|
||||||
|
// There is NO prior outbound SNAT flow, so no conntrack entry exists.
|
||||||
|
// The router should silently drop this because unSnat finds no matching conntrack.
|
||||||
|
routerControl.InjectTunUDPPacket(snatAddr, 55555, netip.MustParseAddr("192.168.1.1"), 80, []byte("unsolicited"))
|
||||||
|
|
||||||
|
// Send a canary IPv6 VPN packet after the bad one. Since the router processes
|
||||||
|
// TUN packets sequentially, the canary arriving proves the bad packet was processed first.
|
||||||
|
senderVpnAddr := senderControl.GetVpnAddrs()[0]
|
||||||
|
routerControl.InjectTunUDPPacket(senderVpnAddr, 90, routerVpnIpNet[0].Addr(), 80, []byte("canary"))
|
||||||
|
canaryPkt := r.RouteForAllUntilTxTun(senderControl)
|
||||||
|
assertUdpPacket(t, []byte("canary"), canaryPkt, routerVpnIpNet[0].Addr(), senderVpnAddr, 80, 90)
|
||||||
|
|
||||||
|
// The unsolicited packet should have been dropped — nothing else on sender's TUN
|
||||||
|
got := senderControl.GetFromTun(false)
|
||||||
|
assert.Nil(t, got, "sender should not receive unsolicited packet to SNAT address with no conntrack entry")
|
||||||
|
|
||||||
|
routerControl.Stop()
|
||||||
|
senderControl.Stop()
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestSNAT_NonUnsafeDestDropped(t *testing.T) {
|
||||||
|
// An IPv6-only sender sends IPv4 traffic to a destination outside the router's
|
||||||
|
// unsafe networks (172.16.0.1 when unsafe is 192.168.0.0/16). The router should
|
||||||
|
// reject this because the local address is not routable. This verifies that
|
||||||
|
// willingToHandleLocalAddr enforces boundaries on what SNAT traffic can reach.
|
||||||
|
|
||||||
|
ca, _, caKey, _ := cert_test.NewTestCaCert(cert.Version2, cert.Curve_CURVE25519, time.Now(), time.Now().Add(10*time.Minute), nil, nil, []string{})
|
||||||
|
|
||||||
|
unsafePrefix := "192.168.0.0/16"
|
||||||
|
snatAddr := netip.MustParseAddr("169.254.42.42")
|
||||||
|
|
||||||
|
routerControl, routerVpnIpNet, routerUdpAddr, _ := newSimpleServerWithUdpAndUnsafeNetworks(
|
||||||
|
cert.Version2, ca, caKey, "router", "ff::1/64",
|
||||||
|
netip.MustParseAddrPort("[beef::1]:4242"),
|
||||||
|
unsafePrefix,
|
||||||
|
m{
|
||||||
|
"firewall": m{
|
||||||
|
"inbound": []m{{
|
||||||
|
"proto": "any",
|
||||||
|
"port": "any",
|
||||||
|
"host": "any",
|
||||||
|
"local_cidr": "any",
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
"tun": m{
|
||||||
|
"snat_address_for_4over6": snatAddr.String(),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
// Sender has unsafe routes for BOTH 192.168.0.0/16 AND 172.16.0.0/12 via router.
|
||||||
|
// This means the sender will route 172.16.0.1 through the tunnel to the router.
|
||||||
|
// But the router should reject it because 172.16.0.0/12 is NOT in its unsafe networks.
|
||||||
|
senderControl, _, _, _ := newSimpleServerWithUdp(
|
||||||
|
cert.Version2, ca, caKey, "sender", "ff::2/64",
|
||||||
|
netip.MustParseAddrPort("[beef::2]:4242"),
|
||||||
|
m{
|
||||||
|
"tun": m{
|
||||||
|
"unsafe_routes": []m{
|
||||||
|
{"route": unsafePrefix, "via": routerVpnIpNet[0].Addr().String()},
|
||||||
|
{"route": "172.16.0.0/12", "via": routerVpnIpNet[0].Addr().String()},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
senderControl.InjectLightHouseAddr(routerVpnIpNet[0].Addr(), routerUdpAddr)
|
||||||
|
|
||||||
|
r := router.NewR(t, routerControl, senderControl)
|
||||||
|
defer r.RenderFlow()
|
||||||
|
r.CancelFlowLogs()
|
||||||
|
|
||||||
|
routerControl.Start()
|
||||||
|
senderControl.Start()
|
||||||
|
|
||||||
|
// Establish the tunnel first
|
||||||
|
assertTunnel(t, routerVpnIpNet[0].Addr(), senderControl.GetVpnAddrs()[0], routerControl, senderControl, r)
|
||||||
|
|
||||||
|
// Send to 172.16.0.1 (NOT in router's unsafe networks 192.168.0.0/16).
|
||||||
|
// The router should reject this at willingToHandleLocalAddr.
|
||||||
|
senderControl.InjectTunUDPPacket(
|
||||||
|
netip.MustParseAddr("172.16.0.1"), 80,
|
||||||
|
netip.MustParseAddr("10.0.0.1"), 12345,
|
||||||
|
[]byte("wrong dest"),
|
||||||
|
)
|
||||||
|
|
||||||
|
// Send a canary to a valid unsafe destination to prove the bad packet was processed
|
||||||
|
senderControl.InjectTunUDPPacket(
|
||||||
|
netip.MustParseAddr("192.168.1.1"), 80,
|
||||||
|
netip.MustParseAddr("10.0.0.1"), 33333,
|
||||||
|
[]byte("canary"),
|
||||||
|
)
|
||||||
|
|
||||||
|
// Route until the canary arrives — the 172.16.0.1 packet should have been
|
||||||
|
// processed and dropped before the canary gets through
|
||||||
|
canaryPkt := r.RouteForAllUntilTxTun(routerControl)
|
||||||
|
_, canaryDst, _, _, canaryPayload := parseIPv4UDPPacket(t, canaryPkt)
|
||||||
|
assert.Equal(t, netip.MustParseAddr("192.168.1.1"), canaryDst, "canary should arrive at the valid unsafe dest")
|
||||||
|
assert.Equal(t, []byte("canary"), canaryPayload)
|
||||||
|
|
||||||
|
// No more packets — the 172.16.0.1 packet was dropped
|
||||||
|
got := routerControl.GetFromTun(false)
|
||||||
|
assert.Nil(t, got, "packet to non-unsafe destination 172.16.0.1 should be dropped by the router")
|
||||||
|
|
||||||
|
routerControl.Stop()
|
||||||
|
senderControl.Stop()
|
||||||
|
}
|
||||||
+14
-1
@@ -144,6 +144,10 @@ listen:
|
|||||||
# valid values: always, never, private
|
# valid values: always, never, private
|
||||||
# This setting is reloadable.
|
# This setting is reloadable.
|
||||||
#send_recv_error: always
|
#send_recv_error: always
|
||||||
|
# Similar to send_recv_error, this option lets you configure if you want to accept "recv_error" packets from remote hosts.
|
||||||
|
# valid values: always, never, private
|
||||||
|
# This setting is reloadable.
|
||||||
|
#accept_recv_error: always
|
||||||
# The so_sock option is a Linux-specific feature that allows all outgoing Nebula packets to be tagged with a specific identifier.
|
# The so_sock option is a Linux-specific feature that allows all outgoing Nebula packets to be tagged with a specific identifier.
|
||||||
# This tagging enables IP rule-based filtering. For example, it supports 0.0.0.0/0 unsafe_routes,
|
# This tagging enables IP rule-based filtering. For example, it supports 0.0.0.0/0 unsafe_routes,
|
||||||
# allowing for more precise routing decisions based on the packet tags. Default is 0 meaning no mark is set.
|
# allowing for more precise routing decisions based on the packet tags. Default is 0 meaning no mark is set.
|
||||||
@@ -279,6 +283,15 @@ tun:
|
|||||||
# If using massive routes updates, for example BGP, you may need to increase this value to avoid packet loss.
|
# If using massive routes updates, for example BGP, you may need to increase this value to avoid packet loss.
|
||||||
# SO_RCVBUFFORCE is used to avoid having to raise the system wide max
|
# SO_RCVBUFFORCE is used to avoid having to raise the system wide max
|
||||||
#use_system_route_table_buffer_size: 0
|
#use_system_route_table_buffer_size: 0
|
||||||
|
#
|
||||||
|
# When using the feature to carry IPv4 unsafe_routes through a IPv6-only overlay network (4over6),
|
||||||
|
# the system still needs to use IPv4 addresses to pass that traffic.
|
||||||
|
# By default, they are randomly chosen out of 169.254.0.0/16 at startup, but if you need them to be static, you can set them here.
|
||||||
|
# Setting these options is not required for use of the 4over6 feature.
|
||||||
|
# this is the address that a client will use as a source IP for packets sent to the router
|
||||||
|
#unsafe_origin_address_for_4over6: 169.254.55.96
|
||||||
|
# this is the IP the router will use internally to hairpin-NAT 4over6 traffic before it hits the operating system.
|
||||||
|
#snat_address_for_4over6: 169.254.12.34
|
||||||
|
|
||||||
# Configure logging level
|
# Configure logging level
|
||||||
logging:
|
logging:
|
||||||
@@ -378,8 +391,8 @@ firewall:
|
|||||||
# Rules are comprised of a protocol, port, and one or more of host, group, or CIDR
|
# Rules are comprised of a protocol, port, and one or more of host, group, or CIDR
|
||||||
# Logical evaluation is roughly: port AND proto AND (ca_sha OR ca_name) AND (host OR group OR groups OR cidr) AND (local cidr)
|
# Logical evaluation is roughly: port AND proto AND (ca_sha OR ca_name) AND (host OR group OR groups OR cidr) AND (local cidr)
|
||||||
# - port: Takes `0` or `any` as any, a single number `80`, a range `200-901`, or `fragment` to match second and further fragments of fragmented packets (since there is no port available).
|
# - port: Takes `0` or `any` as any, a single number `80`, a range `200-901`, or `fragment` to match second and further fragments of fragmented packets (since there is no port available).
|
||||||
# code: same as port but makes more sense when talking about ICMP, TODO: this is not currently implemented in a way that works, use `any`
|
|
||||||
# proto: `any`, `tcp`, `udp`, or `icmp`
|
# proto: `any`, `tcp`, `udp`, or `icmp`
|
||||||
|
# a port specification is ignored if proto is `icmp`
|
||||||
# host: `any` or a literal hostname, ie `test-host`
|
# host: `any` or a literal hostname, ie `test-host`
|
||||||
# group: `any` or a literal group name, ie `default-group`
|
# group: `any` or a literal group name, ie `default-group`
|
||||||
# groups: Same as group but accepts a list of values. Multiple values are AND'd together and a certificate would have to contain all groups to pass
|
# groups: Same as group but accepts a list of values. Multiple values are AND'd together and a certificate would have to contain all groups to pass
|
||||||
|
|||||||
+354
-121
@@ -2,6 +2,7 @@ package nebula
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"crypto/sha256"
|
"crypto/sha256"
|
||||||
|
"encoding/binary"
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
@@ -22,10 +23,35 @@ import (
|
|||||||
"github.com/slackhq/nebula/firewall"
|
"github.com/slackhq/nebula/firewall"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var ErrCannotSNAT = errors.New("cannot SNAT this packet")
|
||||||
|
var ErrSNATIdentityMismatch = errors.New("refusing to SNAT for mismatched host")
|
||||||
|
var ErrSNATAddressCollision = errors.New("refusing to accept an incoming packet with my SNAT address")
|
||||||
|
|
||||||
|
const ipv4SourcePosition = 12
|
||||||
|
const ipv4DestinationPosition = 16
|
||||||
|
const sourcePortOffset = 0
|
||||||
|
const destinationPortOffset = 2
|
||||||
|
|
||||||
type FirewallInterface interface {
|
type FirewallInterface interface {
|
||||||
AddRule(incoming bool, proto uint8, startPort int32, endPort int32, groups []string, host string, cidr, localCidr string, caName string, caSha string) error
|
AddRule(incoming bool, proto uint8, startPort int32, endPort int32, groups []string, host string, cidr, localCidr string, caName string, caSha string) error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type snatInfo struct {
|
||||||
|
//Src is the source IP+port to write into unsafe-route-bound packet
|
||||||
|
Src netip.AddrPort
|
||||||
|
//SrcVpnIp is the overlay IP associated with this flow. It's needed to associate reply traffic so we can get it back to the right host.
|
||||||
|
SrcVpnIp netip.Addr
|
||||||
|
//SnatPort is the port to rewrite into an overlay-bound packet
|
||||||
|
SnatPort uint16
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *snatInfo) Valid() bool {
|
||||||
|
if s == nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return s.Src.IsValid()
|
||||||
|
}
|
||||||
|
|
||||||
type conn struct {
|
type conn struct {
|
||||||
Expires time.Time // Time when this conntrack entry will expire
|
Expires time.Time // Time when this conntrack entry will expire
|
||||||
|
|
||||||
@@ -34,6 +60,9 @@ type conn struct {
|
|||||||
// fields pack for free after the uint32 above
|
// fields pack for free after the uint32 above
|
||||||
incoming bool
|
incoming bool
|
||||||
rulesVersion uint16
|
rulesVersion uint16
|
||||||
|
|
||||||
|
//for SNAT support
|
||||||
|
snat *snatInfo
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: need conntrack max tracked connections handling
|
// TODO: need conntrack max tracked connections handling
|
||||||
@@ -66,6 +95,8 @@ type Firewall struct {
|
|||||||
defaultLocalCIDRAny bool
|
defaultLocalCIDRAny bool
|
||||||
incomingMetrics firewallMetrics
|
incomingMetrics firewallMetrics
|
||||||
outgoingMetrics firewallMetrics
|
outgoingMetrics firewallMetrics
|
||||||
|
unsafeIPv4Origin netip.Addr
|
||||||
|
snatAddr netip.Addr
|
||||||
|
|
||||||
l *logrus.Logger
|
l *logrus.Logger
|
||||||
}
|
}
|
||||||
@@ -193,12 +224,12 @@ func NewFirewall(l *logrus.Logger, tcpTimeout, UDPTimeout, defaultTimeout time.D
|
|||||||
|
|
||||||
func NewFirewallFromConfig(l *logrus.Logger, cs *CertState, c *config.C) (*Firewall, error) {
|
func NewFirewallFromConfig(l *logrus.Logger, cs *CertState, c *config.C) (*Firewall, error) {
|
||||||
certificate := cs.getCertificate(cert.Version2)
|
certificate := cs.getCertificate(cert.Version2)
|
||||||
if certificate == nil {
|
if certificate == nil { //todo if config.initiating_version is set to 1, and unsafe_networks differ, things will suck
|
||||||
certificate = cs.getCertificate(cert.Version1)
|
certificate = cs.getCertificate(cert.Version1)
|
||||||
}
|
}
|
||||||
|
|
||||||
if certificate == nil {
|
if certificate == nil {
|
||||||
panic("No certificate available to reconfigure the firewall")
|
return nil, errors.New("no certificate available to reconfigure the firewall")
|
||||||
}
|
}
|
||||||
|
|
||||||
fw := NewFirewall(
|
fw := NewFirewall(
|
||||||
@@ -207,7 +238,6 @@ func NewFirewallFromConfig(l *logrus.Logger, cs *CertState, c *config.C) (*Firew
|
|||||||
c.GetDuration("firewall.conntrack.udp_timeout", time.Minute*3),
|
c.GetDuration("firewall.conntrack.udp_timeout", time.Minute*3),
|
||||||
c.GetDuration("firewall.conntrack.default_timeout", time.Minute*10),
|
c.GetDuration("firewall.conntrack.default_timeout", time.Minute*10),
|
||||||
certificate,
|
certificate,
|
||||||
//TODO: max_connections
|
|
||||||
)
|
)
|
||||||
|
|
||||||
fw.defaultLocalCIDRAny = c.GetBool("firewall.default_local_cidr_any", false)
|
fw.defaultLocalCIDRAny = c.GetBool("firewall.default_local_cidr_any", false)
|
||||||
@@ -249,20 +279,6 @@ func NewFirewallFromConfig(l *logrus.Logger, cs *CertState, c *config.C) (*Firew
|
|||||||
|
|
||||||
// AddRule properly creates the in memory rule structure for a firewall table.
|
// AddRule properly creates the in memory rule structure for a firewall table.
|
||||||
func (f *Firewall) AddRule(incoming bool, proto uint8, startPort int32, endPort int32, groups []string, host string, cidr, localCidr, caName string, caSha string) error {
|
func (f *Firewall) AddRule(incoming bool, proto uint8, startPort int32, endPort int32, groups []string, host string, cidr, localCidr, caName string, caSha string) error {
|
||||||
// We need this rule string because we generate a hash. Removing this will break firewall reload.
|
|
||||||
ruleString := fmt.Sprintf(
|
|
||||||
"incoming: %v, proto: %v, startPort: %v, endPort: %v, groups: %v, host: %v, ip: %v, localIp: %v, caName: %v, caSha: %s",
|
|
||||||
incoming, proto, startPort, endPort, groups, host, cidr, localCidr, caName, caSha,
|
|
||||||
)
|
|
||||||
f.rules += ruleString + "\n"
|
|
||||||
|
|
||||||
direction := "incoming"
|
|
||||||
if !incoming {
|
|
||||||
direction = "outgoing"
|
|
||||||
}
|
|
||||||
f.l.WithField("firewallRule", m{"direction": direction, "proto": proto, "startPort": startPort, "endPort": endPort, "groups": groups, "host": host, "cidr": cidr, "localCidr": localCidr, "caName": caName, "caSha": caSha}).
|
|
||||||
Info("Firewall rule added")
|
|
||||||
|
|
||||||
var (
|
var (
|
||||||
ft *FirewallTable
|
ft *FirewallTable
|
||||||
fp firewallPort
|
fp firewallPort
|
||||||
@@ -280,6 +296,12 @@ func (f *Firewall) AddRule(incoming bool, proto uint8, startPort int32, endPort
|
|||||||
case firewall.ProtoUDP:
|
case firewall.ProtoUDP:
|
||||||
fp = ft.UDP
|
fp = ft.UDP
|
||||||
case firewall.ProtoICMP, firewall.ProtoICMPv6:
|
case firewall.ProtoICMP, firewall.ProtoICMPv6:
|
||||||
|
//ICMP traffic doesn't have ports, so we always coerce to "any", even if a value is provided
|
||||||
|
if startPort != firewall.PortAny {
|
||||||
|
f.l.WithField("startPort", startPort).Warn("ignoring port specification for ICMP firewall rule")
|
||||||
|
}
|
||||||
|
startPort = firewall.PortAny
|
||||||
|
endPort = firewall.PortAny
|
||||||
fp = ft.ICMP
|
fp = ft.ICMP
|
||||||
case firewall.ProtoAny:
|
case firewall.ProtoAny:
|
||||||
fp = ft.AnyProto
|
fp = ft.AnyProto
|
||||||
@@ -287,6 +309,20 @@ func (f *Firewall) AddRule(incoming bool, proto uint8, startPort int32, endPort
|
|||||||
return fmt.Errorf("unknown protocol %v", proto)
|
return fmt.Errorf("unknown protocol %v", proto)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// We need this rule string because we generate a hash. Removing this will break firewall reload.
|
||||||
|
ruleString := fmt.Sprintf(
|
||||||
|
"incoming: %v, proto: %v, startPort: %v, endPort: %v, groups: %v, host: %v, ip: %v, localIp: %v, caName: %v, caSha: %s",
|
||||||
|
incoming, proto, startPort, endPort, groups, host, cidr, localCidr, caName, caSha,
|
||||||
|
)
|
||||||
|
f.rules += ruleString + "\n"
|
||||||
|
|
||||||
|
direction := "incoming"
|
||||||
|
if !incoming {
|
||||||
|
direction = "outgoing"
|
||||||
|
}
|
||||||
|
f.l.WithField("firewallRule", m{"direction": direction, "proto": proto, "startPort": startPort, "endPort": endPort, "groups": groups, "host": host, "cidr": cidr, "localCidr": localCidr, "caName": caName, "caSha": caSha}).
|
||||||
|
Info("Firewall rule added")
|
||||||
|
|
||||||
return fp.addRule(f, startPort, endPort, groups, host, cidr, localCidr, caName, caSha)
|
return fp.addRule(f, startPort, endPort, groups, host, cidr, localCidr, caName, caSha)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -308,6 +344,18 @@ func (f *Firewall) GetRuleHashes() string {
|
|||||||
return "SHA:" + f.GetRuleHash() + ",FNV:" + strconv.FormatUint(uint64(f.GetRuleHashFNV()), 10)
|
return "SHA:" + f.GetRuleHash() + ",FNV:" + strconv.FormatUint(uint64(f.GetRuleHashFNV()), 10)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (f *Firewall) SetSNATAddressFromInterface(i *Interface) {
|
||||||
|
//address-mutation-avoidance is done inside Interface, the firewall doesn't need to care
|
||||||
|
//todo should snatted conntracks get expired out? Probably not needed until if/when we allow reload
|
||||||
|
f.snatAddr = i.inside.SNATAddress().Addr()
|
||||||
|
f.unsafeIPv4Origin = i.inside.UnsafeIPv4OriginAddress().Addr()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (f *Firewall) ShouldUnSNAT(fp *firewall.Packet) bool {
|
||||||
|
// f.snatAddr is only valid if we're a snat-capable router
|
||||||
|
return f.snatAddr.IsValid() && fp.RemoteAddr == f.snatAddr
|
||||||
|
}
|
||||||
|
|
||||||
func AddFirewallRulesFromConfig(l *logrus.Logger, inbound bool, c *config.C, fw FirewallInterface) error {
|
func AddFirewallRulesFromConfig(l *logrus.Logger, inbound bool, c *config.C, fw FirewallInterface) error {
|
||||||
var table string
|
var table string
|
||||||
if inbound {
|
if inbound {
|
||||||
@@ -349,24 +397,31 @@ func AddFirewallRulesFromConfig(l *logrus.Logger, inbound bool, c *config.C, fw
|
|||||||
sPort = r.Port
|
sPort = r.Port
|
||||||
}
|
}
|
||||||
|
|
||||||
startPort, endPort, err := parsePort(sPort)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("%s rule #%v; %s %s", table, i, errPort, err)
|
|
||||||
}
|
|
||||||
|
|
||||||
var proto uint8
|
var proto uint8
|
||||||
|
var startPort, endPort int32
|
||||||
switch r.Proto {
|
switch r.Proto {
|
||||||
case "any":
|
case "any":
|
||||||
proto = firewall.ProtoAny
|
proto = firewall.ProtoAny
|
||||||
|
startPort, endPort, err = parsePort(sPort)
|
||||||
case "tcp":
|
case "tcp":
|
||||||
proto = firewall.ProtoTCP
|
proto = firewall.ProtoTCP
|
||||||
|
startPort, endPort, err = parsePort(sPort)
|
||||||
case "udp":
|
case "udp":
|
||||||
proto = firewall.ProtoUDP
|
proto = firewall.ProtoUDP
|
||||||
|
startPort, endPort, err = parsePort(sPort)
|
||||||
case "icmp":
|
case "icmp":
|
||||||
proto = firewall.ProtoICMP
|
proto = firewall.ProtoICMP
|
||||||
|
startPort = firewall.PortAny
|
||||||
|
endPort = firewall.PortAny
|
||||||
|
if sPort != "" {
|
||||||
|
l.WithField("port", sPort).Warn("ignoring port specification for ICMP firewall rule")
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
return fmt.Errorf("%s rule #%v; proto was not understood; `%s`", table, i, r.Proto)
|
return fmt.Errorf("%s rule #%v; proto was not understood; `%s`", table, i, r.Proto)
|
||||||
}
|
}
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("%s rule #%v; %s %s", table, i, errPort, err)
|
||||||
|
}
|
||||||
|
|
||||||
if r.Cidr != "" && r.Cidr != "any" {
|
if r.Cidr != "" && r.Cidr != "any" {
|
||||||
_, err = netip.ParsePrefix(r.Cidr)
|
_, err = netip.ParsePrefix(r.Cidr)
|
||||||
@@ -401,50 +456,207 @@ var ErrInvalidRemoteIP = errors.New("remote address is not in remote certificate
|
|||||||
var ErrInvalidLocalIP = errors.New("local address is not in list of handled local addresses")
|
var ErrInvalidLocalIP = errors.New("local address is not in list of handled local addresses")
|
||||||
var ErrNoMatchingRule = errors.New("no matching rule in firewall table")
|
var ErrNoMatchingRule = errors.New("no matching rule in firewall table")
|
||||||
|
|
||||||
|
func (f *Firewall) unSnat(data []byte, fp *firewall.Packet) netip.Addr {
|
||||||
|
c := f.peek(*fp) //unfortunately this needs to lock. Surely there's a better way.
|
||||||
|
if c == nil {
|
||||||
|
return netip.Addr{}
|
||||||
|
}
|
||||||
|
if !c.snat.Valid() {
|
||||||
|
return netip.Addr{}
|
||||||
|
}
|
||||||
|
oldIP := netip.AddrPortFrom(f.snatAddr, fp.RemotePort)
|
||||||
|
rewritePacket(data, fp, oldIP, c.snat.Src, ipv4DestinationPosition, destinationPortOffset)
|
||||||
|
return c.snat.SrcVpnIp
|
||||||
|
}
|
||||||
|
|
||||||
|
func rewritePacket(data []byte, fp *firewall.Packet, oldIP netip.AddrPort, newIP netip.AddrPort, ipOffset int, portOffset int) {
|
||||||
|
//change address
|
||||||
|
copy(data[ipOffset:], newIP.Addr().AsSlice())
|
||||||
|
recalcIPv4Checksum(data, oldIP.Addr(), newIP.Addr())
|
||||||
|
ipHeaderLen := int(data[0]&0x0F) * 4
|
||||||
|
|
||||||
|
switch fp.Protocol {
|
||||||
|
case firewall.ProtoICMP:
|
||||||
|
binary.BigEndian.PutUint16(data[ipHeaderLen+4:ipHeaderLen+6], newIP.Port()) //we use the ID field as a "port" for ICMP
|
||||||
|
icmpCode := uint16(data[ipHeaderLen+1]) //todo not snatting on code yet (but Linux would)
|
||||||
|
recalcICMPv4Checksum(data, icmpCode, icmpCode, oldIP.Port(), newIP.Port())
|
||||||
|
case firewall.ProtoUDP:
|
||||||
|
dstport := ipHeaderLen + portOffset
|
||||||
|
binary.BigEndian.PutUint16(data[dstport:dstport+2], newIP.Port())
|
||||||
|
recalcUDPv4Checksum(data, oldIP, newIP)
|
||||||
|
case firewall.ProtoTCP:
|
||||||
|
dstport := ipHeaderLen + portOffset
|
||||||
|
binary.BigEndian.PutUint16(data[dstport:dstport+2], newIP.Port())
|
||||||
|
recalcTCPv4Checksum(data, oldIP, newIP)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (f *Firewall) findUsableSNATPort(fp *firewall.Packet, c *conn) error {
|
||||||
|
const halfThePorts = 0x7fff
|
||||||
|
oldPort := fp.RemotePort
|
||||||
|
conntrack := f.Conntrack
|
||||||
|
conntrack.Lock()
|
||||||
|
defer conntrack.Unlock()
|
||||||
|
for numPortsChecked := 0; numPortsChecked < halfThePorts; numPortsChecked++ {
|
||||||
|
_, ok := conntrack.Conns[*fp]
|
||||||
|
if !ok {
|
||||||
|
//yay, we can use this port
|
||||||
|
//track the snatted flow with the same expiration as the unsnatted version
|
||||||
|
c.snat.SnatPort = fp.RemotePort
|
||||||
|
conntrack.Conns[*fp] = c
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
//increment and retry. There's probably better strategies out there
|
||||||
|
fp.RemotePort++
|
||||||
|
if fp.RemotePort < halfThePorts {
|
||||||
|
fp.RemotePort += halfThePorts // keep it ephemeral for now
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//if we made it here, we failed
|
||||||
|
fp.RemotePort = oldPort
|
||||||
|
return ErrCannotSNAT
|
||||||
|
}
|
||||||
|
|
||||||
|
func (f *Firewall) applySnat(data []byte, fp *firewall.Packet, c *conn, hostinfo *HostInfo) error {
|
||||||
|
if !f.snatAddr.IsValid() {
|
||||||
|
return ErrCannotSNAT
|
||||||
|
}
|
||||||
|
if f.snatAddr == fp.LocalAddr { //a packet that came from UDP (incoming) should never ever have our snat address on it
|
||||||
|
return ErrSNATAddressCollision
|
||||||
|
}
|
||||||
|
if c.snat.Valid() {
|
||||||
|
//old flow: make sure it came from the right place
|
||||||
|
if !slices.Contains(hostinfo.vpnAddrs, c.snat.SrcVpnIp) {
|
||||||
|
return ErrSNATIdentityMismatch
|
||||||
|
}
|
||||||
|
fp.RemoteAddr = f.snatAddr
|
||||||
|
fp.RemotePort = c.snat.SnatPort
|
||||||
|
} else if hostinfo.vpnAddrs[0].Is6() {
|
||||||
|
//we got a new flow
|
||||||
|
c.snat = &snatInfo{
|
||||||
|
Src: netip.AddrPortFrom(fp.RemoteAddr, fp.RemotePort),
|
||||||
|
SrcVpnIp: hostinfo.vpnAddrs[0],
|
||||||
|
}
|
||||||
|
fp.RemoteAddr = f.snatAddr
|
||||||
|
//find a new port to use, if needed
|
||||||
|
err := f.findUsableSNATPort(fp, c)
|
||||||
|
if err != nil {
|
||||||
|
c.snat = nil
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return ErrCannotSNAT
|
||||||
|
}
|
||||||
|
|
||||||
|
newIP := netip.AddrPortFrom(f.snatAddr, c.snat.SnatPort)
|
||||||
|
rewritePacket(data, fp, c.snat.Src, newIP, ipv4SourcePosition, sourcePortOffset)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (f *Firewall) identifyRemoteNetworkType(h *HostInfo, fp firewall.Packet) NetworkType {
|
||||||
|
if h.networks == nil {
|
||||||
|
// Simple case: Certificate has one address and no unsafe networks
|
||||||
|
if h.vpnAddrs[0] == fp.RemoteAddr {
|
||||||
|
return NetworkTypeVPN
|
||||||
|
} //else, fallthrough
|
||||||
|
} else if nwType, ok := h.networks.Lookup(fp.RemoteAddr); ok {
|
||||||
|
return nwType //will return NetworkTypeVPN or NetworkTypeUnsafe
|
||||||
|
}
|
||||||
|
|
||||||
|
//RemoteAddr not in our networks table
|
||||||
|
if f.snatAddr.IsValid() && fp.IsIPv4() && h.HasOnlyV6Addresses() {
|
||||||
|
return NetworkTypeUnverifiedSNATPeer
|
||||||
|
} else {
|
||||||
|
return NetworkTypeInvalidPeer
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (f *Firewall) allowRemoteNetworkType(nwType NetworkType, fp firewall.Packet) error {
|
||||||
|
switch nwType {
|
||||||
|
case NetworkTypeVPN:
|
||||||
|
return nil
|
||||||
|
case NetworkTypeInvalidPeer:
|
||||||
|
return ErrInvalidRemoteIP
|
||||||
|
case NetworkTypeVPNPeer:
|
||||||
|
//one day we might need a specialSnatMode case in here to handle routers with v4 addresses when we don't also have a v4 address?
|
||||||
|
return ErrPeerRejected // reject for now, one day this may have different FW rules
|
||||||
|
case NetworkTypeUnsafe:
|
||||||
|
return nil // nothing special, one day this may have different FW rules
|
||||||
|
case NetworkTypeUnverifiedSNATPeer:
|
||||||
|
if f.unsafeIPv4Origin.IsValid() && fp.LocalAddr == f.unsafeIPv4Origin {
|
||||||
|
return nil //the client case
|
||||||
|
}
|
||||||
|
if f.snatAddr.IsValid() {
|
||||||
|
if fp.RemoteAddr == f.snatAddr {
|
||||||
|
return ErrInvalidRemoteIP //we should never get a packet with our SNAT addr as the destination, or "from" our SNAT addr
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
} else {
|
||||||
|
return ErrInvalidRemoteIP
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
return ErrUnknownNetworkType //should never happen
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (f *Firewall) willingToHandleLocalAddr(incoming bool, fp firewall.Packet, remoteNwType NetworkType) error {
|
||||||
|
if f.routableNetworks.Contains(fp.LocalAddr) {
|
||||||
|
return nil //easy, this should handle NetworkTypeVPN in all cases, and NetworkTypeUnsafe on the router side
|
||||||
|
}
|
||||||
|
if incoming { //at least for now, reject all traffic other than what we've already decided is locally routable
|
||||||
|
return ErrInvalidLocalIP
|
||||||
|
}
|
||||||
|
|
||||||
|
//below this line, all traffic is outgoing. Outgoing traffic to NetworkTypeUnsafe is not required to be considered inbound-routable
|
||||||
|
if remoteNwType == NetworkTypeUnsafe {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return ErrInvalidLocalIP
|
||||||
|
}
|
||||||
|
|
||||||
// Drop returns an error if the packet should be dropped, explaining why. It
|
// Drop returns an error if the packet should be dropped, explaining why. It
|
||||||
// returns nil if the packet should not be dropped.
|
// returns nil if the packet should not be dropped.
|
||||||
func (f *Firewall) Drop(fp firewall.Packet, incoming bool, h *HostInfo, caPool *cert.CAPool, localCache firewall.ConntrackCache, now time.Time) error {
|
func (f *Firewall) Drop(fp firewall.Packet, pkt []byte, incoming bool, h *HostInfo, caPool *cert.CAPool, localCache firewall.ConntrackCache) error {
|
||||||
|
table := f.OutRules
|
||||||
|
if incoming {
|
||||||
|
table = f.InRules
|
||||||
|
}
|
||||||
|
|
||||||
|
snatmode := fp.IsIPv4() && h.HasOnlyV6Addresses() && f.snatAddr.IsValid()
|
||||||
|
if snatmode {
|
||||||
|
//if this is an IPv4 packet from a V6 only host, and we're configured to snat that kind of traffic, it must be snatted,
|
||||||
|
//so it can never be in the localcache, which lacks SNAT data
|
||||||
|
//nil out the pointer to avoid ever using it
|
||||||
|
localCache = nil
|
||||||
|
}
|
||||||
|
|
||||||
// Check if we spoke to this tuple, if we did then allow this packet
|
// Check if we spoke to this tuple, if we did then allow this packet
|
||||||
if f.inConns(fp, h, caPool, localCache, now) {
|
if localCache != nil {
|
||||||
|
if _, ok := localCache[fp]; ok {
|
||||||
|
return nil //packet matched the cache, we're not snatting, we can return early
|
||||||
|
}
|
||||||
|
}
|
||||||
|
c := f.inConns(fp, h, caPool, localCache)
|
||||||
|
if c != nil {
|
||||||
|
if incoming && snatmode {
|
||||||
|
return f.applySnat(pkt, &fp, c, h)
|
||||||
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make sure remote address matches nebula certificate, and determine how to treat it
|
// Make sure remote address matches nebula certificate, and determine how to treat it
|
||||||
if h.networks == nil {
|
remoteNetworkType := f.identifyRemoteNetworkType(h, fp)
|
||||||
// Simple case: Certificate has one address and no unsafe networks
|
if err := f.allowRemoteNetworkType(remoteNetworkType, fp); err != nil {
|
||||||
if h.vpnAddrs[0] != fp.RemoteAddr {
|
f.metrics(incoming).droppedRemoteAddr.Inc(1)
|
||||||
f.metrics(incoming).droppedRemoteAddr.Inc(1)
|
return err
|
||||||
return ErrInvalidRemoteIP
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
nwType, ok := h.networks.Lookup(fp.RemoteAddr)
|
|
||||||
if !ok {
|
|
||||||
f.metrics(incoming).droppedRemoteAddr.Inc(1)
|
|
||||||
return ErrInvalidRemoteIP
|
|
||||||
}
|
|
||||||
switch nwType {
|
|
||||||
case NetworkTypeVPN:
|
|
||||||
break // nothing special
|
|
||||||
case NetworkTypeVPNPeer:
|
|
||||||
f.metrics(incoming).droppedRemoteAddr.Inc(1)
|
|
||||||
return ErrPeerRejected // reject for now, one day this may have different FW rules
|
|
||||||
case NetworkTypeUnsafe:
|
|
||||||
break // nothing special, one day this may have different FW rules
|
|
||||||
default:
|
|
||||||
f.metrics(incoming).droppedRemoteAddr.Inc(1)
|
|
||||||
return ErrUnknownNetworkType //should never happen
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make sure we are supposed to be handling this local ip address
|
// Make sure we are supposed to be handling this local ip address
|
||||||
if !f.routableNetworks.Contains(fp.LocalAddr) {
|
if err := f.willingToHandleLocalAddr(incoming, fp, remoteNetworkType); err != nil {
|
||||||
f.metrics(incoming).droppedLocalAddr.Inc(1)
|
f.metrics(incoming).droppedLocalAddr.Inc(1)
|
||||||
return ErrInvalidLocalIP
|
return err
|
||||||
}
|
|
||||||
|
|
||||||
table := f.OutRules
|
|
||||||
if incoming {
|
|
||||||
table = f.InRules
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// We now know which firewall table to check against
|
// We now know which firewall table to check against
|
||||||
@@ -454,9 +666,14 @@ func (f *Firewall) Drop(fp firewall.Packet, incoming bool, h *HostInfo, caPool *
|
|||||||
}
|
}
|
||||||
|
|
||||||
// We always want to conntrack since it is a faster operation
|
// We always want to conntrack since it is a faster operation
|
||||||
f.addConn(fp, incoming, now)
|
c = f.addConn(fp, incoming)
|
||||||
|
|
||||||
return nil
|
if incoming && remoteNetworkType == NetworkTypeUnverifiedSNATPeer {
|
||||||
|
return f.applySnat(pkt, &fp, c, h)
|
||||||
|
} else {
|
||||||
|
//outgoing snat is handled before this function is called
|
||||||
|
return nil
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *Firewall) metrics(incoming bool) firewallMetrics {
|
func (f *Firewall) metrics(incoming bool) firewallMetrics {
|
||||||
@@ -467,7 +684,7 @@ func (f *Firewall) metrics(incoming bool) firewallMetrics {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Destroy cleans up any known cyclical references so the object can be free'd my GC. This should be called if a new
|
// Destroy cleans up any known cyclical references so the object can be freed by GC. This should be called if a new
|
||||||
// firewall object is created
|
// firewall object is created
|
||||||
func (f *Firewall) Destroy() {
|
func (f *Firewall) Destroy() {
|
||||||
//TODO: clean references if/when needed
|
//TODO: clean references if/when needed
|
||||||
@@ -483,26 +700,28 @@ func (f *Firewall) EmitStats() {
|
|||||||
metrics.GetOrRegisterGauge("firewall.rules.hash", nil).Update(int64(f.GetRuleHashFNV()))
|
metrics.GetOrRegisterGauge("firewall.rules.hash", nil).Update(int64(f.GetRuleHashFNV()))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *Firewall) inConns(fp firewall.Packet, h *HostInfo, caPool *cert.CAPool, localCache firewall.ConntrackCache, now time.Time) bool {
|
func (f *Firewall) peek(fp firewall.Packet) *conn {
|
||||||
if localCache != nil {
|
f.Conntrack.Lock()
|
||||||
if _, ok := localCache[fp]; ok {
|
c := f.Conntrack.Conns[fp]
|
||||||
return true
|
f.Conntrack.Unlock()
|
||||||
}
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (f *Firewall) inConns(fp firewall.Packet, h *HostInfo, caPool *cert.CAPool, localCache firewall.ConntrackCache) *conn {
|
||||||
conntrack := f.Conntrack
|
conntrack := f.Conntrack
|
||||||
conntrack.Lock()
|
conntrack.Lock()
|
||||||
|
|
||||||
// Purge every time we test
|
// Purge every time we test
|
||||||
ep, has := conntrack.TimerWheel.Purge()
|
ep, has := conntrack.TimerWheel.Purge()
|
||||||
if has {
|
if has {
|
||||||
f.evict(ep, now)
|
f.evict(ep)
|
||||||
}
|
}
|
||||||
|
|
||||||
c, ok := conntrack.Conns[fp]
|
c, ok := conntrack.Conns[fp]
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
conntrack.Unlock()
|
conntrack.Unlock()
|
||||||
return false
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
if c.rulesVersion != f.rulesVersion {
|
if c.rulesVersion != f.rulesVersion {
|
||||||
@@ -525,7 +744,7 @@ func (f *Firewall) inConns(fp firewall.Packet, h *HostInfo, caPool *cert.CAPool,
|
|||||||
}
|
}
|
||||||
delete(conntrack.Conns, fp)
|
delete(conntrack.Conns, fp)
|
||||||
conntrack.Unlock()
|
conntrack.Unlock()
|
||||||
return false
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
if f.l.Level >= logrus.DebugLevel {
|
if f.l.Level >= logrus.DebugLevel {
|
||||||
@@ -542,11 +761,11 @@ func (f *Firewall) inConns(fp firewall.Packet, h *HostInfo, caPool *cert.CAPool,
|
|||||||
|
|
||||||
switch fp.Protocol {
|
switch fp.Protocol {
|
||||||
case firewall.ProtoTCP:
|
case firewall.ProtoTCP:
|
||||||
c.Expires = now.Add(f.TCPTimeout)
|
c.Expires = time.Now().Add(f.TCPTimeout)
|
||||||
case firewall.ProtoUDP:
|
case firewall.ProtoUDP:
|
||||||
c.Expires = now.Add(f.UDPTimeout)
|
c.Expires = time.Now().Add(f.UDPTimeout)
|
||||||
default:
|
default:
|
||||||
c.Expires = now.Add(f.DefaultTimeout)
|
c.Expires = time.Now().Add(f.DefaultTimeout)
|
||||||
}
|
}
|
||||||
|
|
||||||
conntrack.Unlock()
|
conntrack.Unlock()
|
||||||
@@ -555,12 +774,11 @@ func (f *Firewall) inConns(fp firewall.Packet, h *HostInfo, caPool *cert.CAPool,
|
|||||||
localCache[fp] = struct{}{}
|
localCache[fp] = struct{}{}
|
||||||
}
|
}
|
||||||
|
|
||||||
return true
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *Firewall) addConn(fp firewall.Packet, incoming bool, now time.Time) {
|
func (f *Firewall) packetTimeout(fp firewall.Packet) time.Duration {
|
||||||
var timeout time.Duration
|
var timeout time.Duration
|
||||||
c := &conn{}
|
|
||||||
|
|
||||||
switch fp.Protocol {
|
switch fp.Protocol {
|
||||||
case firewall.ProtoTCP:
|
case firewall.ProtoTCP:
|
||||||
@@ -570,11 +788,17 @@ func (f *Firewall) addConn(fp firewall.Packet, incoming bool, now time.Time) {
|
|||||||
default:
|
default:
|
||||||
timeout = f.DefaultTimeout
|
timeout = f.DefaultTimeout
|
||||||
}
|
}
|
||||||
|
return timeout
|
||||||
|
}
|
||||||
|
|
||||||
|
func (f *Firewall) addConn(fp firewall.Packet, incoming bool) *conn {
|
||||||
|
c := &conn{}
|
||||||
|
|
||||||
|
timeout := f.packetTimeout(fp)
|
||||||
conntrack := f.Conntrack
|
conntrack := f.Conntrack
|
||||||
conntrack.Lock()
|
conntrack.Lock()
|
||||||
if _, ok := conntrack.Conns[fp]; !ok {
|
if _, ok := conntrack.Conns[fp]; !ok {
|
||||||
conntrack.TimerWheel.Advance(now)
|
conntrack.TimerWheel.Advance(time.Now())
|
||||||
conntrack.TimerWheel.Add(fp, timeout)
|
conntrack.TimerWheel.Add(fp, timeout)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -582,14 +806,16 @@ func (f *Firewall) addConn(fp firewall.Packet, incoming bool, now time.Time) {
|
|||||||
// firewall reload
|
// firewall reload
|
||||||
c.incoming = incoming
|
c.incoming = incoming
|
||||||
c.rulesVersion = f.rulesVersion
|
c.rulesVersion = f.rulesVersion
|
||||||
c.Expires = now.Add(timeout)
|
c.Expires = time.Now().Add(timeout)
|
||||||
conntrack.Conns[fp] = c
|
conntrack.Conns[fp] = c
|
||||||
|
|
||||||
conntrack.Unlock()
|
conntrack.Unlock()
|
||||||
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
// Evict checks if a conntrack entry has expired, if so it is removed, if not it is re-added to the wheel
|
// Evict checks if a conntrack entry has expired, if so it is removed, if not it is re-added to the wheel
|
||||||
// Caller must own the connMutex lock!
|
// Caller must own the connMutex lock!
|
||||||
func (f *Firewall) evict(p firewall.Packet, now time.Time) {
|
func (f *Firewall) evict(p firewall.Packet) {
|
||||||
// Are we still tracking this conn?
|
// Are we still tracking this conn?
|
||||||
conntrack := f.Conntrack
|
conntrack := f.Conntrack
|
||||||
t, ok := conntrack.Conns[p]
|
t, ok := conntrack.Conns[p]
|
||||||
@@ -597,11 +823,11 @@ func (f *Firewall) evict(p firewall.Packet, now time.Time) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
newT := t.Expires.Sub(now)
|
newT := t.Expires.Sub(time.Now())
|
||||||
|
|
||||||
// Timeout is in the future, re-add the timer
|
// Timeout is in the future, re-add the timer
|
||||||
if newT > 0 {
|
if newT > 0 {
|
||||||
conntrack.TimerWheel.Advance(now)
|
conntrack.TimerWheel.Advance(time.Now())
|
||||||
conntrack.TimerWheel.Add(p, newT)
|
conntrack.TimerWheel.Add(p, newT)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -660,6 +886,13 @@ func (fp firewallPort) match(p firewall.Packet, incoming bool, c *cert.CachedCer
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// this branch is here to catch traffic from FirewallTable.Any.match and FirewallTable.ICMP.match
|
||||||
|
if p.Protocol == firewall.ProtoICMP || p.Protocol == firewall.ProtoICMPv6 {
|
||||||
|
// port numbers are re-used for connection tracking of ICMP,
|
||||||
|
// but we don't want to actually filter on them.
|
||||||
|
return fp[firewall.PortAny].match(p, c, caPool)
|
||||||
|
}
|
||||||
|
|
||||||
var port int32
|
var port int32
|
||||||
|
|
||||||
if p.Fragment {
|
if p.Fragment {
|
||||||
@@ -804,10 +1037,8 @@ func (fr *FirewallRule) isAny(groups []string, host string, cidr string) bool {
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, group := range groups {
|
if slices.Contains(groups, "any") {
|
||||||
if group == "any" {
|
return true
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if host == "any" {
|
if host == "any" {
|
||||||
@@ -1018,54 +1249,56 @@ func (r *rule) sanity() error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if r.Code != "" {
|
||||||
|
return fmt.Errorf("code specified as [%s]. Support for 'code' will be dropped in a future release, as it has never been functional", r.Code)
|
||||||
|
}
|
||||||
|
|
||||||
//todo alert on cidr-any
|
//todo alert on cidr-any
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func parsePort(s string) (startPort, endPort int32, err error) {
|
func parsePort(s string) (int32, int32, error) {
|
||||||
|
var err error
|
||||||
|
const notAPort int32 = -2
|
||||||
if s == "any" {
|
if s == "any" {
|
||||||
startPort = firewall.PortAny
|
return firewall.PortAny, firewall.PortAny, nil
|
||||||
endPort = firewall.PortAny
|
}
|
||||||
|
if s == "fragment" {
|
||||||
} else if s == "fragment" {
|
return firewall.PortFragment, firewall.PortFragment, nil
|
||||||
startPort = firewall.PortFragment
|
}
|
||||||
endPort = firewall.PortFragment
|
if !strings.Contains(s, `-`) {
|
||||||
|
|
||||||
} else if strings.Contains(s, `-`) {
|
|
||||||
sPorts := strings.SplitN(s, `-`, 2)
|
|
||||||
sPorts[0] = strings.Trim(sPorts[0], " ")
|
|
||||||
sPorts[1] = strings.Trim(sPorts[1], " ")
|
|
||||||
|
|
||||||
if len(sPorts) != 2 || sPorts[0] == "" || sPorts[1] == "" {
|
|
||||||
return 0, 0, fmt.Errorf("appears to be a range but could not be parsed; `%s`", s)
|
|
||||||
}
|
|
||||||
|
|
||||||
rStartPort, err := strconv.Atoi(sPorts[0])
|
|
||||||
if err != nil {
|
|
||||||
return 0, 0, fmt.Errorf("beginning range was not a number; `%s`", sPorts[0])
|
|
||||||
}
|
|
||||||
|
|
||||||
rEndPort, err := strconv.Atoi(sPorts[1])
|
|
||||||
if err != nil {
|
|
||||||
return 0, 0, fmt.Errorf("ending range was not a number; `%s`", sPorts[1])
|
|
||||||
}
|
|
||||||
|
|
||||||
startPort = int32(rStartPort)
|
|
||||||
endPort = int32(rEndPort)
|
|
||||||
|
|
||||||
if startPort == firewall.PortAny {
|
|
||||||
endPort = firewall.PortAny
|
|
||||||
}
|
|
||||||
|
|
||||||
} else {
|
|
||||||
rPort, err := strconv.Atoi(s)
|
rPort, err := strconv.Atoi(s)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return 0, 0, fmt.Errorf("was not a number; `%s`", s)
|
return notAPort, notAPort, fmt.Errorf("was not a number; `%s`", s)
|
||||||
}
|
}
|
||||||
startPort = int32(rPort)
|
return int32(rPort), int32(rPort), nil
|
||||||
endPort = startPort
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return
|
sPorts := strings.SplitN(s, `-`, 2)
|
||||||
|
for i := range sPorts {
|
||||||
|
sPorts[i] = strings.Trim(sPorts[i], " ")
|
||||||
|
}
|
||||||
|
if len(sPorts) != 2 || sPorts[0] == "" || sPorts[1] == "" {
|
||||||
|
return notAPort, notAPort, fmt.Errorf("appears to be a range but could not be parsed; `%s`", s)
|
||||||
|
}
|
||||||
|
|
||||||
|
rStartPort, err := strconv.Atoi(sPorts[0])
|
||||||
|
if err != nil {
|
||||||
|
return notAPort, notAPort, fmt.Errorf("beginning range was not a number; `%s`", sPorts[0])
|
||||||
|
}
|
||||||
|
|
||||||
|
rEndPort, err := strconv.Atoi(sPorts[1])
|
||||||
|
if err != nil {
|
||||||
|
return notAPort, notAPort, fmt.Errorf("ending range was not a number; `%s`", sPorts[1])
|
||||||
|
}
|
||||||
|
|
||||||
|
startPort := int32(rStartPort)
|
||||||
|
endPort := int32(rEndPort)
|
||||||
|
|
||||||
|
if startPort == firewall.PortAny {
|
||||||
|
endPort = firewall.PortAny
|
||||||
|
}
|
||||||
|
|
||||||
|
return startPort, endPort, nil
|
||||||
}
|
}
|
||||||
|
|||||||
+10
-1
@@ -22,12 +22,19 @@ const (
|
|||||||
type Packet struct {
|
type Packet struct {
|
||||||
LocalAddr netip.Addr
|
LocalAddr netip.Addr
|
||||||
RemoteAddr netip.Addr
|
RemoteAddr netip.Addr
|
||||||
LocalPort uint16
|
// LocalPort is the destination port for incoming traffic, or the source port for outgoing. Zero for ICMP.
|
||||||
|
LocalPort uint16
|
||||||
|
// RemotePort is the source port for incoming traffic, or the destination port for outgoing.
|
||||||
|
// For ICMP, it's the "identifier". This is only used for connection tracking, actual firewall rules will not filter on ICMP identifier
|
||||||
RemotePort uint16
|
RemotePort uint16
|
||||||
Protocol uint8
|
Protocol uint8
|
||||||
Fragment bool
|
Fragment bool
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (fp *Packet) IsIPv4() bool {
|
||||||
|
return fp.LocalAddr.Is4() && fp.RemoteAddr.Is4()
|
||||||
|
}
|
||||||
|
|
||||||
func (fp *Packet) Copy() *Packet {
|
func (fp *Packet) Copy() *Packet {
|
||||||
return &Packet{
|
return &Packet{
|
||||||
LocalAddr: fp.LocalAddr,
|
LocalAddr: fp.LocalAddr,
|
||||||
@@ -46,6 +53,8 @@ func (fp Packet) MarshalJSON() ([]byte, error) {
|
|||||||
proto = "tcp"
|
proto = "tcp"
|
||||||
case ProtoICMP:
|
case ProtoICMP:
|
||||||
proto = "icmp"
|
proto = "icmp"
|
||||||
|
case ProtoICMPv6:
|
||||||
|
proto = "icmpv6"
|
||||||
case ProtoUDP:
|
case ProtoUDP:
|
||||||
proto = "udp"
|
proto = "udp"
|
||||||
default:
|
default:
|
||||||
|
|||||||
+266
-40
@@ -87,9 +87,10 @@ func TestFirewall_AddRule(t *testing.T) {
|
|||||||
|
|
||||||
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, c)
|
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, c)
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoICMP, 1, 1, []string{}, "h1", "", "", "", ""))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoICMP, 1, 1, []string{}, "h1", "", "", "", ""))
|
||||||
assert.Nil(t, fw.InRules.ICMP[1].Any.Any)
|
//no matter what port is given for icmp, it should end up as "any"
|
||||||
assert.Empty(t, fw.InRules.ICMP[1].Any.Groups)
|
assert.Nil(t, fw.InRules.ICMP[firewall.PortAny].Any.Any)
|
||||||
assert.Contains(t, fw.InRules.ICMP[1].Any.Hosts, "h1")
|
assert.Empty(t, fw.InRules.ICMP[firewall.PortAny].Any.Groups)
|
||||||
|
assert.Contains(t, fw.InRules.ICMP[firewall.PortAny].Any.Hosts, "h1")
|
||||||
|
|
||||||
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, c)
|
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, c)
|
||||||
require.NoError(t, fw.AddRule(false, firewall.ProtoAny, 1, 1, []string{}, "", ti.String(), "", "", ""))
|
require.NoError(t, fw.AddRule(false, firewall.ProtoAny, 1, 1, []string{}, "", ti.String(), "", "", ""))
|
||||||
@@ -212,44 +213,44 @@ func TestFirewall_Drop(t *testing.T) {
|
|||||||
cp := cert.NewCAPool()
|
cp := cert.NewCAPool()
|
||||||
|
|
||||||
// Drop outbound
|
// Drop outbound
|
||||||
assert.Equal(t, ErrNoMatchingRule, fw.Drop(p, false, &h, cp, nil))
|
assert.Equal(t, ErrNoMatchingRule, fw.Drop(p, nil, false, &h, cp, nil))
|
||||||
// Allow inbound
|
// Allow inbound
|
||||||
resetConntrack(fw)
|
resetConntrack(fw)
|
||||||
require.NoError(t, fw.Drop(p, true, &h, cp, nil))
|
require.NoError(t, fw.Drop(p, nil, true, &h, cp, nil))
|
||||||
// Allow outbound because conntrack
|
// Allow outbound because conntrack
|
||||||
require.NoError(t, fw.Drop(p, false, &h, cp, nil))
|
require.NoError(t, fw.Drop(p, nil, false, &h, cp, nil))
|
||||||
|
|
||||||
// test remote mismatch
|
// test remote mismatch
|
||||||
oldRemote := p.RemoteAddr
|
oldRemote := p.RemoteAddr
|
||||||
p.RemoteAddr = netip.MustParseAddr("1.2.3.10")
|
p.RemoteAddr = netip.MustParseAddr("1.2.3.10")
|
||||||
assert.Equal(t, fw.Drop(p, false, &h, cp, nil), ErrInvalidRemoteIP)
|
assert.Equal(t, fw.Drop(p, nil, false, &h, cp, nil), ErrInvalidRemoteIP)
|
||||||
p.RemoteAddr = oldRemote
|
p.RemoteAddr = oldRemote
|
||||||
|
|
||||||
// ensure signer doesn't get in the way of group checks
|
// ensure signer doesn't get in the way of group checks
|
||||||
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, &c)
|
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, &c)
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"nope"}, "", "", "", "", "signer-shasum"))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"nope"}, "", "", "", "", "signer-shasum"))
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"default-group"}, "", "", "", "", "signer-shasum-bad"))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"default-group"}, "", "", "", "", "signer-shasum-bad"))
|
||||||
assert.Equal(t, fw.Drop(p, true, &h, cp, nil), ErrNoMatchingRule)
|
assert.Equal(t, fw.Drop(p, nil, true, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
|
||||||
// test caSha doesn't drop on match
|
// test caSha doesn't drop on match
|
||||||
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, &c)
|
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, &c)
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"nope"}, "", "", "", "", "signer-shasum-bad"))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"nope"}, "", "", "", "", "signer-shasum-bad"))
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"default-group"}, "", "", "", "", "signer-shasum"))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"default-group"}, "", "", "", "", "signer-shasum"))
|
||||||
require.NoError(t, fw.Drop(p, true, &h, cp, nil))
|
require.NoError(t, fw.Drop(p, nil, true, &h, cp, nil))
|
||||||
|
|
||||||
// ensure ca name doesn't get in the way of group checks
|
// ensure ca name doesn't get in the way of group checks
|
||||||
cp.CAs["signer-shasum"] = &cert.CachedCertificate{Certificate: &dummyCert{name: "ca-good"}}
|
cp.CAs["signer-shasum"] = &cert.CachedCertificate{Certificate: &dummyCert{name: "ca-good"}}
|
||||||
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, &c)
|
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, &c)
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"nope"}, "", "", "", "ca-good", ""))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"nope"}, "", "", "", "ca-good", ""))
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"default-group"}, "", "", "", "ca-good-bad", ""))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"default-group"}, "", "", "", "ca-good-bad", ""))
|
||||||
assert.Equal(t, fw.Drop(p, true, &h, cp, nil), ErrNoMatchingRule)
|
assert.Equal(t, fw.Drop(p, nil, true, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
|
||||||
// test caName doesn't drop on match
|
// test caName doesn't drop on match
|
||||||
cp.CAs["signer-shasum"] = &cert.CachedCertificate{Certificate: &dummyCert{name: "ca-good"}}
|
cp.CAs["signer-shasum"] = &cert.CachedCertificate{Certificate: &dummyCert{name: "ca-good"}}
|
||||||
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, &c)
|
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, &c)
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"nope"}, "", "", "", "ca-good-bad", ""))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"nope"}, "", "", "", "ca-good-bad", ""))
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"default-group"}, "", "", "", "ca-good", ""))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"default-group"}, "", "", "", "ca-good", ""))
|
||||||
require.NoError(t, fw.Drop(p, true, &h, cp, nil))
|
require.NoError(t, fw.Drop(p, nil, true, &h, cp, nil))
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestFirewall_DropV6(t *testing.T) {
|
func TestFirewall_DropV6(t *testing.T) {
|
||||||
@@ -291,44 +292,44 @@ func TestFirewall_DropV6(t *testing.T) {
|
|||||||
cp := cert.NewCAPool()
|
cp := cert.NewCAPool()
|
||||||
|
|
||||||
// Drop outbound
|
// Drop outbound
|
||||||
assert.Equal(t, ErrNoMatchingRule, fw.Drop(p, false, &h, cp, nil))
|
assert.Equal(t, ErrNoMatchingRule, fw.Drop(p, nil, false, &h, cp, nil))
|
||||||
// Allow inbound
|
// Allow inbound
|
||||||
resetConntrack(fw)
|
resetConntrack(fw)
|
||||||
require.NoError(t, fw.Drop(p, true, &h, cp, nil))
|
require.NoError(t, fw.Drop(p, nil, true, &h, cp, nil))
|
||||||
// Allow outbound because conntrack
|
// Allow outbound because conntrack
|
||||||
require.NoError(t, fw.Drop(p, false, &h, cp, nil))
|
require.NoError(t, fw.Drop(p, nil, false, &h, cp, nil))
|
||||||
|
|
||||||
// test remote mismatch
|
// test remote mismatch
|
||||||
oldRemote := p.RemoteAddr
|
oldRemote := p.RemoteAddr
|
||||||
p.RemoteAddr = netip.MustParseAddr("fd12::56")
|
p.RemoteAddr = netip.MustParseAddr("fd12::56")
|
||||||
assert.Equal(t, fw.Drop(p, false, &h, cp, nil), ErrInvalidRemoteIP)
|
assert.Equal(t, fw.Drop(p, nil, false, &h, cp, nil), ErrInvalidRemoteIP)
|
||||||
p.RemoteAddr = oldRemote
|
p.RemoteAddr = oldRemote
|
||||||
|
|
||||||
// ensure signer doesn't get in the way of group checks
|
// ensure signer doesn't get in the way of group checks
|
||||||
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, &c)
|
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, &c)
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"nope"}, "", "", "", "", "signer-shasum"))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"nope"}, "", "", "", "", "signer-shasum"))
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"default-group"}, "", "", "", "", "signer-shasum-bad"))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"default-group"}, "", "", "", "", "signer-shasum-bad"))
|
||||||
assert.Equal(t, fw.Drop(p, true, &h, cp, nil), ErrNoMatchingRule)
|
assert.Equal(t, fw.Drop(p, nil, true, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
|
||||||
// test caSha doesn't drop on match
|
// test caSha doesn't drop on match
|
||||||
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, &c)
|
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, &c)
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"nope"}, "", "", "", "", "signer-shasum-bad"))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"nope"}, "", "", "", "", "signer-shasum-bad"))
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"default-group"}, "", "", "", "", "signer-shasum"))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"default-group"}, "", "", "", "", "signer-shasum"))
|
||||||
require.NoError(t, fw.Drop(p, true, &h, cp, nil))
|
require.NoError(t, fw.Drop(p, nil, true, &h, cp, nil))
|
||||||
|
|
||||||
// ensure ca name doesn't get in the way of group checks
|
// ensure ca name doesn't get in the way of group checks
|
||||||
cp.CAs["signer-shasum"] = &cert.CachedCertificate{Certificate: &dummyCert{name: "ca-good"}}
|
cp.CAs["signer-shasum"] = &cert.CachedCertificate{Certificate: &dummyCert{name: "ca-good"}}
|
||||||
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, &c)
|
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, &c)
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"nope"}, "", "", "", "ca-good", ""))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"nope"}, "", "", "", "ca-good", ""))
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"default-group"}, "", "", "", "ca-good-bad", ""))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"default-group"}, "", "", "", "ca-good-bad", ""))
|
||||||
assert.Equal(t, fw.Drop(p, true, &h, cp, nil), ErrNoMatchingRule)
|
assert.Equal(t, fw.Drop(p, nil, true, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
|
||||||
// test caName doesn't drop on match
|
// test caName doesn't drop on match
|
||||||
cp.CAs["signer-shasum"] = &cert.CachedCertificate{Certificate: &dummyCert{name: "ca-good"}}
|
cp.CAs["signer-shasum"] = &cert.CachedCertificate{Certificate: &dummyCert{name: "ca-good"}}
|
||||||
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, &c)
|
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, &c)
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"nope"}, "", "", "", "ca-good-bad", ""))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"nope"}, "", "", "", "ca-good-bad", ""))
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"default-group"}, "", "", "", "ca-good", ""))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"default-group"}, "", "", "", "ca-good", ""))
|
||||||
require.NoError(t, fw.Drop(p, true, &h, cp, nil))
|
require.NoError(t, fw.Drop(p, nil, true, &h, cp, nil))
|
||||||
}
|
}
|
||||||
|
|
||||||
func BenchmarkFirewallTable_match(b *testing.B) {
|
func BenchmarkFirewallTable_match(b *testing.B) {
|
||||||
@@ -536,10 +537,10 @@ func TestFirewall_Drop2(t *testing.T) {
|
|||||||
cp := cert.NewCAPool()
|
cp := cert.NewCAPool()
|
||||||
|
|
||||||
// h1/c1 lacks the proper groups
|
// h1/c1 lacks the proper groups
|
||||||
require.ErrorIs(t, fw.Drop(p, true, &h1, cp, nil), ErrNoMatchingRule)
|
require.ErrorIs(t, fw.Drop(p, nil, true, &h1, cp, nil), ErrNoMatchingRule)
|
||||||
// c has the proper groups
|
// c has the proper groups
|
||||||
resetConntrack(fw)
|
resetConntrack(fw)
|
||||||
require.NoError(t, fw.Drop(p, true, &h, cp, nil))
|
require.NoError(t, fw.Drop(p, nil, true, &h, cp, nil))
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestFirewall_Drop3(t *testing.T) {
|
func TestFirewall_Drop3(t *testing.T) {
|
||||||
@@ -617,18 +618,18 @@ func TestFirewall_Drop3(t *testing.T) {
|
|||||||
cp := cert.NewCAPool()
|
cp := cert.NewCAPool()
|
||||||
|
|
||||||
// c1 should pass because host match
|
// c1 should pass because host match
|
||||||
require.NoError(t, fw.Drop(p, true, &h1, cp, nil))
|
require.NoError(t, fw.Drop(p, nil, true, &h1, cp, nil))
|
||||||
// c2 should pass because ca sha match
|
// c2 should pass because ca sha match
|
||||||
resetConntrack(fw)
|
resetConntrack(fw)
|
||||||
require.NoError(t, fw.Drop(p, true, &h2, cp, nil))
|
require.NoError(t, fw.Drop(p, nil, true, &h2, cp, nil))
|
||||||
// c3 should fail because no match
|
// c3 should fail because no match
|
||||||
resetConntrack(fw)
|
resetConntrack(fw)
|
||||||
assert.Equal(t, fw.Drop(p, true, &h3, cp, nil), ErrNoMatchingRule)
|
assert.Equal(t, fw.Drop(p, nil, true, &h3, cp, nil), ErrNoMatchingRule)
|
||||||
|
|
||||||
// Test a remote address match
|
// Test a remote address match
|
||||||
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, c.Certificate)
|
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, c.Certificate)
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 1, 1, []string{}, "", "1.2.3.4/24", "", "", ""))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 1, 1, []string{}, "", "1.2.3.4/24", "", "", ""))
|
||||||
require.NoError(t, fw.Drop(p, true, &h1, cp, nil))
|
require.NoError(t, fw.Drop(p, nil, true, &h1, cp, nil))
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestFirewall_Drop3V6(t *testing.T) {
|
func TestFirewall_Drop3V6(t *testing.T) {
|
||||||
@@ -666,7 +667,7 @@ func TestFirewall_Drop3V6(t *testing.T) {
|
|||||||
fw := NewFirewall(l, time.Second, time.Minute, time.Hour, c.Certificate)
|
fw := NewFirewall(l, time.Second, time.Minute, time.Hour, c.Certificate)
|
||||||
cp := cert.NewCAPool()
|
cp := cert.NewCAPool()
|
||||||
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 1, 1, []string{}, "", "fd12::34/120", "", "", ""))
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 1, 1, []string{}, "", "fd12::34/120", "", "", ""))
|
||||||
require.NoError(t, fw.Drop(p, true, &h, cp, nil))
|
require.NoError(t, fw.Drop(p, nil, true, &h, cp, nil))
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestFirewall_DropConntrackReload(t *testing.T) {
|
func TestFirewall_DropConntrackReload(t *testing.T) {
|
||||||
@@ -708,12 +709,12 @@ func TestFirewall_DropConntrackReload(t *testing.T) {
|
|||||||
cp := cert.NewCAPool()
|
cp := cert.NewCAPool()
|
||||||
|
|
||||||
// Drop outbound
|
// Drop outbound
|
||||||
assert.Equal(t, fw.Drop(p, false, &h, cp, nil), ErrNoMatchingRule)
|
assert.Equal(t, fw.Drop(p, nil, false, &h, cp, nil), ErrNoMatchingRule)
|
||||||
// Allow inbound
|
// Allow inbound
|
||||||
resetConntrack(fw)
|
resetConntrack(fw)
|
||||||
require.NoError(t, fw.Drop(p, true, &h, cp, nil))
|
require.NoError(t, fw.Drop(p, nil, true, &h, cp, nil))
|
||||||
// Allow outbound because conntrack
|
// Allow outbound because conntrack
|
||||||
require.NoError(t, fw.Drop(p, false, &h, cp, nil))
|
require.NoError(t, fw.Drop(p, nil, false, &h, cp, nil))
|
||||||
|
|
||||||
oldFw := fw
|
oldFw := fw
|
||||||
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, c.Certificate)
|
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, c.Certificate)
|
||||||
@@ -722,7 +723,7 @@ func TestFirewall_DropConntrackReload(t *testing.T) {
|
|||||||
fw.rulesVersion = oldFw.rulesVersion + 1
|
fw.rulesVersion = oldFw.rulesVersion + 1
|
||||||
|
|
||||||
// Allow outbound because conntrack and new rules allow port 10
|
// Allow outbound because conntrack and new rules allow port 10
|
||||||
require.NoError(t, fw.Drop(p, false, &h, cp, nil))
|
require.NoError(t, fw.Drop(p, nil, false, &h, cp, nil))
|
||||||
|
|
||||||
oldFw = fw
|
oldFw = fw
|
||||||
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, c.Certificate)
|
fw = NewFirewall(l, time.Second, time.Minute, time.Hour, c.Certificate)
|
||||||
@@ -731,7 +732,151 @@ func TestFirewall_DropConntrackReload(t *testing.T) {
|
|||||||
fw.rulesVersion = oldFw.rulesVersion + 1
|
fw.rulesVersion = oldFw.rulesVersion + 1
|
||||||
|
|
||||||
// Drop outbound because conntrack doesn't match new ruleset
|
// Drop outbound because conntrack doesn't match new ruleset
|
||||||
assert.Equal(t, fw.Drop(p, false, &h, cp, nil), ErrNoMatchingRule)
|
assert.Equal(t, fw.Drop(p, nil, false, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestFirewall_ICMPPortBehavior(t *testing.T) {
|
||||||
|
l := test.NewLogger()
|
||||||
|
ob := &bytes.Buffer{}
|
||||||
|
l.SetOutput(ob)
|
||||||
|
myVpnNetworksTable := new(bart.Lite)
|
||||||
|
myVpnNetworksTable.Insert(netip.MustParsePrefix("1.1.1.1/8"))
|
||||||
|
|
||||||
|
network := netip.MustParsePrefix("1.2.3.4/24")
|
||||||
|
|
||||||
|
c := cert.CachedCertificate{
|
||||||
|
Certificate: &dummyCert{
|
||||||
|
name: "host1",
|
||||||
|
networks: []netip.Prefix{network},
|
||||||
|
groups: []string{"default-group"},
|
||||||
|
issuer: "signer-shasum",
|
||||||
|
},
|
||||||
|
InvertedGroups: map[string]struct{}{"default-group": {}},
|
||||||
|
}
|
||||||
|
h := HostInfo{
|
||||||
|
ConnectionState: &ConnectionState{
|
||||||
|
peerCert: &c,
|
||||||
|
},
|
||||||
|
vpnAddrs: []netip.Addr{network.Addr()},
|
||||||
|
}
|
||||||
|
h.buildNetworks(myVpnNetworksTable, c.Certificate)
|
||||||
|
|
||||||
|
cp := cert.NewCAPool()
|
||||||
|
|
||||||
|
templ := firewall.Packet{
|
||||||
|
LocalAddr: netip.MustParseAddr("1.2.3.4"),
|
||||||
|
RemoteAddr: netip.MustParseAddr("1.2.3.4"),
|
||||||
|
Protocol: firewall.ProtoICMP,
|
||||||
|
Fragment: false,
|
||||||
|
}
|
||||||
|
|
||||||
|
t.Run("ICMP allowed", func(t *testing.T) {
|
||||||
|
fw := NewFirewall(l, time.Second, time.Minute, time.Hour, c.Certificate)
|
||||||
|
require.NoError(t, fw.AddRule(true, firewall.ProtoICMP, 0, 0, []string{"any"}, "", "", "", "", ""))
|
||||||
|
t.Run("zero ports", func(t *testing.T) {
|
||||||
|
p := templ.Copy()
|
||||||
|
p.LocalPort = 0
|
||||||
|
p.RemotePort = 0
|
||||||
|
// Drop outbound
|
||||||
|
assert.Equal(t, fw.Drop(*p, nil, false, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
// Allow inbound
|
||||||
|
resetConntrack(fw)
|
||||||
|
require.NoError(t, fw.Drop(*p, nil, true, &h, cp, nil))
|
||||||
|
//now also allow outbound
|
||||||
|
require.NoError(t, fw.Drop(*p, nil, false, &h, cp, nil))
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("nonzero ports", func(t *testing.T) {
|
||||||
|
p := templ.Copy()
|
||||||
|
p.LocalPort = 0xabcd
|
||||||
|
p.RemotePort = 0x1234
|
||||||
|
// Drop outbound
|
||||||
|
assert.Equal(t, fw.Drop(*p, nil, false, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
// Allow inbound
|
||||||
|
resetConntrack(fw)
|
||||||
|
require.NoError(t, fw.Drop(*p, nil, true, &h, cp, nil))
|
||||||
|
//now also allow outbound
|
||||||
|
require.NoError(t, fw.Drop(*p, nil, false, &h, cp, nil))
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("Any proto, some ports allowed", func(t *testing.T) {
|
||||||
|
fw := NewFirewall(l, time.Second, time.Minute, time.Hour, c.Certificate)
|
||||||
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 80, 444, []string{"any"}, "", "", "", "", ""))
|
||||||
|
t.Run("zero ports, still blocked", func(t *testing.T) {
|
||||||
|
p := templ.Copy()
|
||||||
|
p.LocalPort = 0
|
||||||
|
p.RemotePort = 0
|
||||||
|
// Drop outbound
|
||||||
|
assert.Equal(t, fw.Drop(*p, nil, false, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
// Allow inbound
|
||||||
|
resetConntrack(fw)
|
||||||
|
assert.Equal(t, fw.Drop(*p, nil, true, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
//now also allow outbound
|
||||||
|
assert.Equal(t, fw.Drop(*p, nil, false, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("nonzero ports, still blocked", func(t *testing.T) {
|
||||||
|
p := templ.Copy()
|
||||||
|
p.LocalPort = 0xabcd
|
||||||
|
p.RemotePort = 0x1234
|
||||||
|
// Drop outbound
|
||||||
|
assert.Equal(t, fw.Drop(*p, nil, false, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
// Allow inbound
|
||||||
|
resetConntrack(fw)
|
||||||
|
assert.Equal(t, fw.Drop(*p, nil, true, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
//now also allow outbound
|
||||||
|
assert.Equal(t, fw.Drop(*p, nil, false, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("nonzero, matching ports, still blocked", func(t *testing.T) {
|
||||||
|
p := templ.Copy()
|
||||||
|
p.LocalPort = 80
|
||||||
|
p.RemotePort = 80
|
||||||
|
// Drop outbound
|
||||||
|
assert.Equal(t, fw.Drop(*p, nil, false, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
// Allow inbound
|
||||||
|
resetConntrack(fw)
|
||||||
|
assert.Equal(t, fw.Drop(*p, nil, true, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
//now also allow outbound
|
||||||
|
assert.Equal(t, fw.Drop(*p, nil, false, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
t.Run("Any proto, any port", func(t *testing.T) {
|
||||||
|
fw := NewFirewall(l, time.Second, time.Minute, time.Hour, c.Certificate)
|
||||||
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"any"}, "", "", "", "", ""))
|
||||||
|
t.Run("zero ports, allowed", func(t *testing.T) {
|
||||||
|
resetConntrack(fw)
|
||||||
|
p := templ.Copy()
|
||||||
|
p.LocalPort = 0
|
||||||
|
p.RemotePort = 0
|
||||||
|
// Drop outbound
|
||||||
|
assert.Equal(t, fw.Drop(*p, nil, false, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
// Allow inbound
|
||||||
|
resetConntrack(fw)
|
||||||
|
require.NoError(t, fw.Drop(*p, nil, true, &h, cp, nil))
|
||||||
|
//now also allow outbound
|
||||||
|
require.NoError(t, fw.Drop(*p, nil, false, &h, cp, nil))
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("nonzero ports, allowed", func(t *testing.T) {
|
||||||
|
resetConntrack(fw)
|
||||||
|
p := templ.Copy()
|
||||||
|
p.LocalPort = 0xabcd
|
||||||
|
p.RemotePort = 0x1234
|
||||||
|
// Drop outbound
|
||||||
|
assert.Equal(t, fw.Drop(*p, nil, false, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
// Allow inbound
|
||||||
|
resetConntrack(fw)
|
||||||
|
require.NoError(t, fw.Drop(*p, nil, true, &h, cp, nil))
|
||||||
|
//now also allow outbound
|
||||||
|
require.NoError(t, fw.Drop(*p, nil, false, &h, cp, nil))
|
||||||
|
//different ID is blocked
|
||||||
|
p.RemotePort++
|
||||||
|
require.Equal(t, fw.Drop(*p, nil, false, &h, cp, nil), ErrNoMatchingRule)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestFirewall_DropIPSpoofing(t *testing.T) {
|
func TestFirewall_DropIPSpoofing(t *testing.T) {
|
||||||
@@ -777,7 +922,7 @@ func TestFirewall_DropIPSpoofing(t *testing.T) {
|
|||||||
Protocol: firewall.ProtoUDP,
|
Protocol: firewall.ProtoUDP,
|
||||||
Fragment: false,
|
Fragment: false,
|
||||||
}
|
}
|
||||||
assert.Equal(t, fw.Drop(p, true, &h1, cp, nil), ErrInvalidRemoteIP)
|
assert.Equal(t, fw.Drop(p, nil, true, &h1, cp, nil), ErrInvalidRemoteIP)
|
||||||
}
|
}
|
||||||
|
|
||||||
func BenchmarkLookup(b *testing.B) {
|
func BenchmarkLookup(b *testing.B) {
|
||||||
@@ -897,7 +1042,7 @@ func TestNewFirewallFromConfig(t *testing.T) {
|
|||||||
l := test.NewLogger()
|
l := test.NewLogger()
|
||||||
// Test a bad rule definition
|
// Test a bad rule definition
|
||||||
c := &dummyCert{}
|
c := &dummyCert{}
|
||||||
cs, err := newCertState(cert.Version2, nil, c, false, cert.Curve_CURVE25519, nil)
|
cs, err := newCertState(l, cert.Version2, nil, c, false, cert.Curve_CURVE25519, nil)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
conf := config.NewC(l)
|
conf := config.NewC(l)
|
||||||
@@ -919,11 +1064,11 @@ func TestNewFirewallFromConfig(t *testing.T) {
|
|||||||
|
|
||||||
// Test code/port error
|
// Test code/port error
|
||||||
conf = config.NewC(l)
|
conf = config.NewC(l)
|
||||||
conf.Settings["firewall"] = map[string]any{"outbound": []any{map[string]any{"code": "a", "host": "testh"}}}
|
conf.Settings["firewall"] = map[string]any{"outbound": []any{map[string]any{"code": "a", "host": "testh", "proto": "any"}}}
|
||||||
_, err = NewFirewallFromConfig(l, cs, conf)
|
_, err = NewFirewallFromConfig(l, cs, conf)
|
||||||
require.EqualError(t, err, "firewall.outbound rule #0; code was not a number; `a`")
|
require.EqualError(t, err, "firewall.outbound rule #0; code was not a number; `a`")
|
||||||
|
|
||||||
conf.Settings["firewall"] = map[string]any{"outbound": []any{map[string]any{"port": "a", "host": "testh"}}}
|
conf.Settings["firewall"] = map[string]any{"outbound": []any{map[string]any{"port": "a", "host": "testh", "proto": "any"}}}
|
||||||
_, err = NewFirewallFromConfig(l, cs, conf)
|
_, err = NewFirewallFromConfig(l, cs, conf)
|
||||||
require.EqualError(t, err, "firewall.outbound rule #0; port was not a number; `a`")
|
require.EqualError(t, err, "firewall.outbound rule #0; port was not a number; `a`")
|
||||||
|
|
||||||
@@ -973,7 +1118,14 @@ func TestAddFirewallRulesFromConfig(t *testing.T) {
|
|||||||
mf = &mockFirewall{}
|
mf = &mockFirewall{}
|
||||||
conf.Settings["firewall"] = map[string]any{"outbound": []any{map[string]any{"port": "1", "proto": "icmp", "host": "a"}}}
|
conf.Settings["firewall"] = map[string]any{"outbound": []any{map[string]any{"port": "1", "proto": "icmp", "host": "a"}}}
|
||||||
require.NoError(t, AddFirewallRulesFromConfig(l, false, conf, mf))
|
require.NoError(t, AddFirewallRulesFromConfig(l, false, conf, mf))
|
||||||
assert.Equal(t, addRuleCall{incoming: false, proto: firewall.ProtoICMP, startPort: 1, endPort: 1, groups: nil, host: "a", ip: "", localIp: ""}, mf.lastCall)
|
assert.Equal(t, addRuleCall{incoming: false, proto: firewall.ProtoICMP, startPort: firewall.PortAny, endPort: firewall.PortAny, groups: nil, host: "a", ip: "", localIp: ""}, mf.lastCall)
|
||||||
|
|
||||||
|
// Test adding icmp rule no port
|
||||||
|
conf = config.NewC(l)
|
||||||
|
mf = &mockFirewall{}
|
||||||
|
conf.Settings["firewall"] = map[string]any{"outbound": []any{map[string]any{"proto": "icmp", "host": "a"}}}
|
||||||
|
require.NoError(t, AddFirewallRulesFromConfig(l, false, conf, mf))
|
||||||
|
assert.Equal(t, addRuleCall{incoming: false, proto: firewall.ProtoICMP, startPort: firewall.PortAny, endPort: firewall.PortAny, groups: nil, host: "a", ip: "", localIp: ""}, mf.lastCall)
|
||||||
|
|
||||||
// Test adding any rule
|
// Test adding any rule
|
||||||
conf = config.NewC(l)
|
conf = config.NewC(l)
|
||||||
@@ -1184,7 +1336,7 @@ func (c *testcase) Test(t *testing.T, fw *Firewall) {
|
|||||||
t.Helper()
|
t.Helper()
|
||||||
cp := cert.NewCAPool()
|
cp := cert.NewCAPool()
|
||||||
resetConntrack(fw)
|
resetConntrack(fw)
|
||||||
err := fw.Drop(c.p, true, c.h, cp, nil)
|
err := fw.Drop(c.p, nil, true, c.h, cp, nil)
|
||||||
if c.err == nil {
|
if c.err == nil {
|
||||||
require.NoError(t, err, "failed to not drop remote address %s", c.p.RemoteAddr)
|
require.NoError(t, err, "failed to not drop remote address %s", c.p.RemoteAddr)
|
||||||
} else {
|
} else {
|
||||||
@@ -1192,7 +1344,7 @@ func (c *testcase) Test(t *testing.T, fw *Firewall) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func buildTestCase(setup testsetup, err error, theirPrefixes ...netip.Prefix) testcase {
|
func buildHostinfo(setup testsetup, theirPrefixes ...netip.Prefix) *HostInfo {
|
||||||
c1 := dummyCert{
|
c1 := dummyCert{
|
||||||
name: "host1",
|
name: "host1",
|
||||||
networks: theirPrefixes,
|
networks: theirPrefixes,
|
||||||
@@ -1212,6 +1364,11 @@ func buildTestCase(setup testsetup, err error, theirPrefixes ...netip.Prefix) te
|
|||||||
h.vpnAddrs[i] = theirPrefixes[i].Addr()
|
h.vpnAddrs[i] = theirPrefixes[i].Addr()
|
||||||
}
|
}
|
||||||
h.buildNetworks(setup.myVpnNetworksTable, &c1)
|
h.buildNetworks(setup.myVpnNetworksTable, &c1)
|
||||||
|
return &h
|
||||||
|
}
|
||||||
|
|
||||||
|
func buildTestCase(setup testsetup, err error, theirPrefixes ...netip.Prefix) testcase {
|
||||||
|
h := buildHostinfo(setup, theirPrefixes...)
|
||||||
p := firewall.Packet{
|
p := firewall.Packet{
|
||||||
LocalAddr: setup.c.Networks()[0].Addr(), //todo?
|
LocalAddr: setup.c.Networks()[0].Addr(), //todo?
|
||||||
RemoteAddr: theirPrefixes[0].Addr(),
|
RemoteAddr: theirPrefixes[0].Addr(),
|
||||||
@@ -1221,9 +1378,9 @@ func buildTestCase(setup testsetup, err error, theirPrefixes ...netip.Prefix) te
|
|||||||
Fragment: false,
|
Fragment: false,
|
||||||
}
|
}
|
||||||
return testcase{
|
return testcase{
|
||||||
h: &h,
|
h: h,
|
||||||
p: p,
|
p: p,
|
||||||
c: &c1,
|
c: h.ConnectionState.peerCert.Certificate,
|
||||||
err: err,
|
err: err,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1245,6 +1402,19 @@ func newSetup(t *testing.T, l *logrus.Logger, myPrefixes ...netip.Prefix) testse
|
|||||||
return newSetupFromCert(t, l, c)
|
return newSetupFromCert(t, l, c)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func newSnatSetup(t *testing.T, l *logrus.Logger, myPrefix netip.Prefix, snatAddr netip.Addr) testsetup {
|
||||||
|
c := dummyCert{
|
||||||
|
name: "me",
|
||||||
|
networks: []netip.Prefix{myPrefix},
|
||||||
|
groups: []string{"default-group"},
|
||||||
|
issuer: "signer-shasum",
|
||||||
|
}
|
||||||
|
|
||||||
|
out := newSetupFromCert(t, l, c)
|
||||||
|
out.fw.snatAddr = snatAddr
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
||||||
func newSetupFromCert(t *testing.T, l *logrus.Logger, c dummyCert) testsetup {
|
func newSetupFromCert(t *testing.T, l *logrus.Logger, c dummyCert) testsetup {
|
||||||
myVpnNetworksTable := new(bart.Lite)
|
myVpnNetworksTable := new(bart.Lite)
|
||||||
for _, prefix := range c.Networks() {
|
for _, prefix := range c.Networks() {
|
||||||
@@ -1380,3 +1550,59 @@ func resetConntrack(fw *Firewall) {
|
|||||||
fw.Conntrack.Conns = map[firewall.Packet]*conn{}
|
fw.Conntrack.Conns = map[firewall.Packet]*conn{}
|
||||||
fw.Conntrack.Unlock()
|
fw.Conntrack.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestFirewall_SNAT(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
l := test.NewLogger()
|
||||||
|
ob := &bytes.Buffer{}
|
||||||
|
l.SetOutput(ob)
|
||||||
|
cp := cert.NewCAPool()
|
||||||
|
myPrefix := netip.MustParsePrefix("1.1.1.1/8")
|
||||||
|
|
||||||
|
MyCert := dummyCert{
|
||||||
|
name: "me",
|
||||||
|
networks: []netip.Prefix{myPrefix},
|
||||||
|
groups: []string{"default-group"},
|
||||||
|
issuer: "signer-shasum",
|
||||||
|
}
|
||||||
|
|
||||||
|
theirPrefix := netip.MustParsePrefix("1.2.2.2/8")
|
||||||
|
snatAddr := netip.MustParseAddr("169.254.55.96")
|
||||||
|
t.Run("allow inbound all matching", func(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
myCert := MyCert.Copy()
|
||||||
|
setup := newSnatSetup(t, l, myPrefix, snatAddr)
|
||||||
|
fw := NewFirewall(l, time.Second, time.Minute, time.Hour, myCert)
|
||||||
|
require.NoError(t, fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"any"}, "", "", "", "", ""))
|
||||||
|
resetConntrack(setup.fw)
|
||||||
|
h := buildHostinfo(setup, theirPrefix)
|
||||||
|
p := firewall.Packet{
|
||||||
|
LocalAddr: setup.c.Networks()[0].Addr(), //todo?
|
||||||
|
RemoteAddr: h.vpnAddrs[0],
|
||||||
|
LocalPort: 10,
|
||||||
|
RemotePort: 90,
|
||||||
|
Protocol: firewall.ProtoUDP,
|
||||||
|
Fragment: false,
|
||||||
|
}
|
||||||
|
require.NoError(t, setup.fw.Drop(p, nil, true, h, cp, nil))
|
||||||
|
})
|
||||||
|
//t.Run("allow inbound unsafe route", func(t *testing.T) {
|
||||||
|
// t.Parallel()
|
||||||
|
// unsafePrefix := netip.MustParsePrefix("192.168.0.0/24")
|
||||||
|
// c := dummyCert{
|
||||||
|
// name: "me",
|
||||||
|
// networks: []netip.Prefix{myPrefix},
|
||||||
|
// unsafeNetworks: []netip.Prefix{unsafePrefix},
|
||||||
|
// groups: []string{"default-group"},
|
||||||
|
// issuer: "signer-shasum",
|
||||||
|
// }
|
||||||
|
// unsafeSetup := newSetupFromCert(t, l, c)
|
||||||
|
// tc := buildTestCase(unsafeSetup, nil, twoPrefixes...)
|
||||||
|
// tc.p.LocalAddr = netip.MustParseAddr("192.168.0.3")
|
||||||
|
// tc.err = ErrNoMatchingRule
|
||||||
|
// tc.Test(t, unsafeSetup.fw) //should hit firewall and bounce off
|
||||||
|
// require.NoError(t, unsafeSetup.fw.AddRule(true, firewall.ProtoAny, 0, 0, []string{"any"}, "", "", unsafePrefix.String(), "", ""))
|
||||||
|
// tc.err = nil
|
||||||
|
// tc.Test(t, unsafeSetup.fw) //should pass
|
||||||
|
//})
|
||||||
|
}
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ go 1.25
|
|||||||
|
|
||||||
require (
|
require (
|
||||||
dario.cat/mergo v1.0.2
|
dario.cat/mergo v1.0.2
|
||||||
|
filippo.io/bigmod v0.1.0
|
||||||
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be
|
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be
|
||||||
github.com/armon/go-radix v1.0.0
|
github.com/armon/go-radix v1.0.0
|
||||||
github.com/cyberdelia/go-metrics-graphite v0.0.0-20161219230853-39f87cc3b432
|
github.com/cyberdelia/go-metrics-graphite v0.0.0-20161219230853-39f87cc3b432
|
||||||
@@ -12,27 +13,27 @@ require (
|
|||||||
github.com/gogo/protobuf v1.3.2
|
github.com/gogo/protobuf v1.3.2
|
||||||
github.com/google/gopacket v1.1.19
|
github.com/google/gopacket v1.1.19
|
||||||
github.com/kardianos/service v1.2.4
|
github.com/kardianos/service v1.2.4
|
||||||
github.com/miekg/dns v1.1.68
|
github.com/miekg/dns v1.1.70
|
||||||
github.com/miekg/pkcs11 v1.1.2-0.20231115102856-9078ad6b9d4b
|
github.com/miekg/pkcs11 v1.1.2-0.20231115102856-9078ad6b9d4b
|
||||||
github.com/nbrownus/go-metrics-prometheus v0.0.0-20210712211119-974a6260965f
|
github.com/nbrownus/go-metrics-prometheus v0.0.0-20210712211119-974a6260965f
|
||||||
github.com/prometheus/client_golang v1.23.2
|
github.com/prometheus/client_golang v1.23.2
|
||||||
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
|
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
|
||||||
github.com/sirupsen/logrus v1.9.3
|
github.com/sirupsen/logrus v1.9.4
|
||||||
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
|
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
|
||||||
github.com/stefanberger/go-pkcs11uri v0.0.0-20230803200340-78284954bff6
|
github.com/stefanberger/go-pkcs11uri v0.0.0-20230803200340-78284954bff6
|
||||||
github.com/stretchr/testify v1.11.1
|
github.com/stretchr/testify v1.11.1
|
||||||
github.com/vishvananda/netlink v1.3.1
|
github.com/vishvananda/netlink v1.3.1
|
||||||
go.yaml.in/yaml/v3 v3.0.4
|
go.yaml.in/yaml/v3 v3.0.4
|
||||||
golang.org/x/crypto v0.45.0
|
golang.org/x/crypto v0.47.0
|
||||||
golang.org/x/exp v0.0.0-20230725093048-515e97ebf090
|
golang.org/x/exp v0.0.0-20230725093048-515e97ebf090
|
||||||
golang.org/x/net v0.47.0
|
golang.org/x/net v0.49.0
|
||||||
golang.org/x/sync v0.19.0
|
golang.org/x/sync v0.19.0
|
||||||
golang.org/x/sys v0.39.0
|
golang.org/x/sys v0.40.0
|
||||||
golang.org/x/term v0.38.0
|
golang.org/x/term v0.39.0
|
||||||
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2
|
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2
|
||||||
golang.zx2c4.com/wireguard v0.0.0-20230325221338-052af4a8072b
|
golang.zx2c4.com/wireguard v0.0.0-20230325221338-052af4a8072b
|
||||||
golang.zx2c4.com/wireguard/windows v0.5.3
|
golang.zx2c4.com/wireguard/windows v0.5.3
|
||||||
google.golang.org/protobuf v1.36.10
|
google.golang.org/protobuf v1.36.11
|
||||||
gopkg.in/yaml.v3 v3.0.1
|
gopkg.in/yaml.v3 v3.0.1
|
||||||
gvisor.dev/gvisor v0.0.0-20240423190808-9d7a357edefe
|
gvisor.dev/gvisor v0.0.0-20240423190808-9d7a357edefe
|
||||||
)
|
)
|
||||||
@@ -49,7 +50,7 @@ require (
|
|||||||
github.com/prometheus/procfs v0.16.1 // indirect
|
github.com/prometheus/procfs v0.16.1 // indirect
|
||||||
github.com/vishvananda/netns v0.0.5 // indirect
|
github.com/vishvananda/netns v0.0.5 // indirect
|
||||||
go.yaml.in/yaml/v2 v2.4.2 // indirect
|
go.yaml.in/yaml/v2 v2.4.2 // indirect
|
||||||
golang.org/x/mod v0.24.0 // indirect
|
golang.org/x/mod v0.31.0 // indirect
|
||||||
golang.org/x/time v0.7.0 // indirect
|
golang.org/x/time v0.5.0 // indirect
|
||||||
golang.org/x/tools v0.33.0 // indirect
|
golang.org/x/tools v0.40.0 // indirect
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
|
cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
|
||||||
dario.cat/mergo v1.0.2 h1:85+piFYR1tMbRrLcDwR18y4UKJ3aH1Tbzi24VRW1TK8=
|
dario.cat/mergo v1.0.2 h1:85+piFYR1tMbRrLcDwR18y4UKJ3aH1Tbzi24VRW1TK8=
|
||||||
dario.cat/mergo v1.0.2/go.mod h1:E/hbnu0NxMFBjpMIE34DRGLWqDy0g5FuKDhCb31ngxA=
|
dario.cat/mergo v1.0.2/go.mod h1:E/hbnu0NxMFBjpMIE34DRGLWqDy0g5FuKDhCb31ngxA=
|
||||||
|
filippo.io/bigmod v0.1.0 h1:UNzDk7y9ADKST+axd9skUpBQeW7fG2KrTZyOE4uGQy8=
|
||||||
|
filippo.io/bigmod v0.1.0/go.mod h1:OjOXDNlClLblvXdwgFFOQFJEocLhhtai8vGLy0JCZlI=
|
||||||
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
|
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
|
||||||
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
|
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
|
||||||
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
|
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
|
||||||
@@ -83,8 +85,8 @@ github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
|
|||||||
github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc=
|
github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc=
|
||||||
github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw=
|
github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw=
|
||||||
github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
|
github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
|
||||||
github.com/miekg/dns v1.1.68 h1:jsSRkNozw7G/mnmXULynzMNIsgY2dHC8LO6U6Ij2JEA=
|
github.com/miekg/dns v1.1.70 h1:DZ4u2AV35VJxdD9Fo9fIWm119BsQL5cZU1cQ9s0LkqA=
|
||||||
github.com/miekg/dns v1.1.68/go.mod h1:fujopn7TB3Pu3JM69XaawiU0wqjpL9/8xGop5UrTPps=
|
github.com/miekg/dns v1.1.70/go.mod h1:+EuEPhdHOsfk6Wk5TT2CzssZdqkmFhf8r+aVyDEToIs=
|
||||||
github.com/miekg/pkcs11 v1.1.2-0.20231115102856-9078ad6b9d4b h1:J/AzCvg5z0Hn1rqZUJjpbzALUmkKX0Zwbc/i4fw7Sfk=
|
github.com/miekg/pkcs11 v1.1.2-0.20231115102856-9078ad6b9d4b h1:J/AzCvg5z0Hn1rqZUJjpbzALUmkKX0Zwbc/i4fw7Sfk=
|
||||||
github.com/miekg/pkcs11 v1.1.2-0.20231115102856-9078ad6b9d4b/go.mod h1:XsNlhZGX73bx86s2hdc/FuaLm2CPZJemRLMA+WTFxgs=
|
github.com/miekg/pkcs11 v1.1.2-0.20231115102856-9078ad6b9d4b/go.mod h1:XsNlhZGX73bx86s2hdc/FuaLm2CPZJemRLMA+WTFxgs=
|
||||||
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
|
||||||
@@ -131,8 +133,8 @@ github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncj
|
|||||||
github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo=
|
github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo=
|
||||||
github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=
|
github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=
|
||||||
github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88=
|
github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88=
|
||||||
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=
|
github.com/sirupsen/logrus v1.9.4 h1:TsZE7l11zFCLZnZ+teH4Umoq5BhEIfIzfRDZ1Uzql2w=
|
||||||
github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
|
github.com/sirupsen/logrus v1.9.4/go.mod h1:ftWc9WdOfJ0a92nsE2jF5u5ZwH8Bv2zdeOC42RjbV2g=
|
||||||
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e h1:MRM5ITcdelLK2j1vwZ3Je0FKVCfqOLp5zO6trqMLYs0=
|
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e h1:MRM5ITcdelLK2j1vwZ3Je0FKVCfqOLp5zO6trqMLYs0=
|
||||||
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e/go.mod h1:XV66xRDqSt+GTGFMVlhk3ULuV0y9ZmzeVGR4mloJI3M=
|
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e/go.mod h1:XV66xRDqSt+GTGFMVlhk3ULuV0y9ZmzeVGR4mloJI3M=
|
||||||
github.com/stefanberger/go-pkcs11uri v0.0.0-20230803200340-78284954bff6 h1:pnnLyeX7o/5aX8qUQ69P/mLojDqwda8hFOCBTmP/6hw=
|
github.com/stefanberger/go-pkcs11uri v0.0.0-20230803200340-78284954bff6 h1:pnnLyeX7o/5aX8qUQ69P/mLojDqwda8hFOCBTmP/6hw=
|
||||||
@@ -162,16 +164,16 @@ golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACk
|
|||||||
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
|
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
|
||||||
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
|
||||||
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4=
|
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4=
|
||||||
golang.org/x/crypto v0.45.0 h1:jMBrvKuj23MTlT0bQEOBcAE0mjg8mK9RXFhRH6nyF3Q=
|
golang.org/x/crypto v0.47.0 h1:V6e3FRj+n4dbpw86FJ8Fv7XVOql7TEwpHapKoMJ/GO8=
|
||||||
golang.org/x/crypto v0.45.0/go.mod h1:XTGrrkGJve7CYK7J8PEww4aY7gM3qMCElcJQ8n8JdX4=
|
golang.org/x/crypto v0.47.0/go.mod h1:ff3Y9VzzKbwSSEzWqJsJVBnWmRwRSHt/6Op5n9bQc4A=
|
||||||
golang.org/x/exp v0.0.0-20230725093048-515e97ebf090 h1:Di6/M8l0O2lCLc6VVRWhgCiApHV8MnQurBnFSHsQtNY=
|
golang.org/x/exp v0.0.0-20230725093048-515e97ebf090 h1:Di6/M8l0O2lCLc6VVRWhgCiApHV8MnQurBnFSHsQtNY=
|
||||||
golang.org/x/exp v0.0.0-20230725093048-515e97ebf090/go.mod h1:FXUEEKJgO7OQYeo8N01OfiKP8RXMtf6e8aTskBGqWdc=
|
golang.org/x/exp v0.0.0-20230725093048-515e97ebf090/go.mod h1:FXUEEKJgO7OQYeo8N01OfiKP8RXMtf6e8aTskBGqWdc=
|
||||||
golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
|
golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
|
||||||
golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
|
golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
|
||||||
golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
|
golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
|
||||||
golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
|
golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
|
||||||
golang.org/x/mod v0.24.0 h1:ZfthKaKaT4NrhGVZHO1/WDTwGES4De8KtWO0SIbNJMU=
|
golang.org/x/mod v0.31.0 h1:HaW9xtz0+kOcWKwli0ZXy79Ix+UW/vOfmWI5QVd2tgI=
|
||||||
golang.org/x/mod v0.24.0/go.mod h1:IXM97Txy2VM4PJ3gI61r1YEk/gAj6zAHN3AdZt6S9Ww=
|
golang.org/x/mod v0.31.0/go.mod h1:43JraMp9cGx1Rx3AqioxrbrhNsLl2l/iNAvuBkrezpg=
|
||||||
golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||||
golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||||
golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||||
@@ -182,8 +184,8 @@ golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLL
|
|||||||
golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
|
golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
|
||||||
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
|
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
|
||||||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
||||||
golang.org/x/net v0.47.0 h1:Mx+4dIFzqraBXUugkia1OOvlD6LemFo1ALMHjrXDOhY=
|
golang.org/x/net v0.49.0 h1:eeHFmOGUTtaaPSGNmjBKpbng9MulQsJURQUAfUwY++o=
|
||||||
golang.org/x/net v0.47.0/go.mod h1:/jNxtkgq5yWUGYkaZGqo27cfGZ1c5Nen03aYrrKpVRU=
|
golang.org/x/net v0.49.0/go.mod h1:/ysNB2EvaqvesRkuLAyjI1ycPZlQHM3q01F02UY/MV8=
|
||||||
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
||||||
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
@@ -206,26 +208,25 @@ golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7w
|
|||||||
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
|
||||||
golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.39.0 h1:CvCKL8MeisomCi6qNZ+wbb0DN9E5AATixKsvNtMoMFk=
|
golang.org/x/sys v0.40.0 h1:DBZZqJ2Rkml6QMQsZywtnjnnGvHza6BTfYFWY9kjEWQ=
|
||||||
golang.org/x/sys v0.39.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
|
golang.org/x/sys v0.40.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
|
||||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||||
golang.org/x/term v0.38.0 h1:PQ5pkm/rLO6HnxFR7N2lJHOZX6Kez5Y1gDSJla6jo7Q=
|
golang.org/x/term v0.39.0 h1:RclSuaJf32jOqZz74CkPA9qFuVTX7vhLlpfj/IGWlqY=
|
||||||
golang.org/x/term v0.38.0/go.mod h1:bSEAKrOT1W+VSu9TSCMtoGEOUcKxOKgl3LE5QEF/xVg=
|
golang.org/x/term v0.39.0/go.mod h1:yxzUCTP/U+FzoxfdKmLaA0RV1WgE0VY7hXBwKtY/4ww=
|
||||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||||
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
|
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
|
||||||
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||||
golang.org/x/time v0.7.0 h1:ntUhktv3OPE6TgYxXWv9vKvUSJyIFJlyohwbkEwPrKQ=
|
golang.org/x/time v0.5.0 h1:o7cqy6amK/52YcAKIPlM3a+Fpj35zvRj2TP+e1xFSfk=
|
||||||
golang.org/x/time v0.7.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM=
|
golang.org/x/time v0.5.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM=
|
||||||
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
||||||
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
|
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
|
||||||
golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
|
golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
|
||||||
golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
|
golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
|
||||||
golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
|
golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
|
||||||
golang.org/x/tools v0.33.0 h1:4qz2S3zmRxbGIhDIAgjxvFutSvH5EfnsYrRBj0UI0bc=
|
golang.org/x/tools v0.40.0 h1:yLkxfA+Qnul4cs9QA3KnlFu0lVmd8JJfoq+E41uSutA=
|
||||||
golang.org/x/tools v0.33.0/go.mod h1:CIJMaWEY88juyUfo7UbgPqbC8rU2OqfAV1h2Qp0oMYI=
|
golang.org/x/tools v0.40.0/go.mod h1:Ik/tzLRlbscWpqqMRjyWYDisX8bG13FrdXp3o4Sr9lc=
|
||||||
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
@@ -244,8 +245,8 @@ google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miE
|
|||||||
google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo=
|
google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo=
|
||||||
google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
|
google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
|
||||||
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
|
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
|
||||||
google.golang.org/protobuf v1.36.10 h1:AYd7cD/uASjIL6Q9LiTjz8JLcrh/88q5UObnmY3aOOE=
|
google.golang.org/protobuf v1.36.11 h1:fV6ZwhNocDyBLK0dj+fg8ektcVegBBuEolpbTQyBNVE=
|
||||||
google.golang.org/protobuf v1.36.10/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco=
|
google.golang.org/protobuf v1.36.11/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco=
|
||||||
gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
|
gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
package nebula
|
package nebula
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"net/netip"
|
"net/netip"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@@ -166,6 +167,13 @@ func ixHandshakeStage1(f *Interface, via ViaSender, packet []byte, h *header.H)
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if !bytes.Equal(remoteCert.Certificate.PublicKey(), ci.H.PeerStatic()) {
|
||||||
|
f.l.WithField("from", via).
|
||||||
|
WithField("handshake", m{"stage": 1, "style": "ix_psk0"}).
|
||||||
|
WithField("cert", remoteCert).Info("public key mismatch between certificate and handshake")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
if remoteCert.Certificate.Version() != ci.myCert.Version() {
|
if remoteCert.Certificate.Version() != ci.myCert.Version() {
|
||||||
// We started off using the wrong certificate version, lets see if we can match the version that was sent to us
|
// We started off using the wrong certificate version, lets see if we can match the version that was sent to us
|
||||||
myCertOtherVersion := cs.getCertificate(remoteCert.Certificate.Version())
|
myCertOtherVersion := cs.getCertificate(remoteCert.Certificate.Version())
|
||||||
@@ -535,6 +543,12 @@ func ixHandshakeStage2(f *Interface, via ViaSender, hh *HandshakeHostInfo, packe
|
|||||||
e.Info("Invalid certificate from host")
|
e.Info("Invalid certificate from host")
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
if !bytes.Equal(remoteCert.Certificate.PublicKey(), ci.H.PeerStatic()) {
|
||||||
|
f.l.WithField("from", via).
|
||||||
|
WithField("handshake", m{"stage": 2, "style": "ix_psk0"}).
|
||||||
|
WithField("cert", remoteCert).Info("public key mismatch between certificate and handshake")
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
if len(remoteCert.Certificate.Networks()) == 0 {
|
if len(remoteCert.Certificate.Networks()) == 0 {
|
||||||
f.l.WithError(err).WithField("from", via).
|
f.l.WithError(err).WithField("from", via).
|
||||||
|
|||||||
@@ -590,7 +590,7 @@ func (hm *HandshakeManager) allocateIndex(hh *HandshakeHostInfo) error {
|
|||||||
hm.Lock()
|
hm.Lock()
|
||||||
defer hm.Unlock()
|
defer hm.Unlock()
|
||||||
|
|
||||||
for i := 0; i < 32; i++ {
|
for range 32 {
|
||||||
index, err := generateIndex(hm.l)
|
index, err := generateIndex(hm.l)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
|||||||
+12
@@ -224,6 +224,9 @@ const (
|
|||||||
NetworkTypeVPNPeer
|
NetworkTypeVPNPeer
|
||||||
// NetworkTypeUnsafe is a network from Certificate.UnsafeNetworks()
|
// NetworkTypeUnsafe is a network from Certificate.UnsafeNetworks()
|
||||||
NetworkTypeUnsafe
|
NetworkTypeUnsafe
|
||||||
|
// NetworkTypeUnverifiedSNATPeer is used to indicate traffic we're willing to route, but never deliver to a NetworkTypeVPN
|
||||||
|
NetworkTypeUnverifiedSNATPeer
|
||||||
|
NetworkTypeInvalidPeer
|
||||||
)
|
)
|
||||||
|
|
||||||
type HostInfo struct {
|
type HostInfo struct {
|
||||||
@@ -277,6 +280,15 @@ type HostInfo struct {
|
|||||||
lastUsed time.Time
|
lastUsed time.Time
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (i *HostInfo) HasOnlyV6Addresses() bool {
|
||||||
|
for _, vpnIp := range i.vpnAddrs {
|
||||||
|
if !vpnIp.Is6() {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
type ViaSender struct {
|
type ViaSender struct {
|
||||||
UdpAddr netip.AddrPort
|
UdpAddr netip.AddrPort
|
||||||
relayHI *HostInfo // relayHI is the host info object of the relay
|
relayHI *HostInfo // relayHI is the host info object of the relay
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
//go:build e2e_testing
|
//go:build e2e_testing
|
||||||
// +build e2e_testing
|
|
||||||
|
|
||||||
package nebula
|
package nebula
|
||||||
|
|
||||||
|
|||||||
@@ -2,18 +2,16 @@ package nebula
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"net/netip"
|
"net/netip"
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/slackhq/nebula/firewall"
|
"github.com/slackhq/nebula/firewall"
|
||||||
"github.com/slackhq/nebula/header"
|
"github.com/slackhq/nebula/header"
|
||||||
"github.com/slackhq/nebula/iputil"
|
"github.com/slackhq/nebula/iputil"
|
||||||
"github.com/slackhq/nebula/noiseutil"
|
"github.com/slackhq/nebula/noiseutil"
|
||||||
"github.com/slackhq/nebula/packet"
|
|
||||||
"github.com/slackhq/nebula/routing"
|
"github.com/slackhq/nebula/routing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (f *Interface) consumeInsidePacket(packet []byte, fwPacket *firewall.Packet, nb []byte, out *packet.UDPPacket, q int, localCache firewall.ConntrackCache, now time.Time) {
|
func (f *Interface) consumeInsidePacket(packet []byte, fwPacket *firewall.Packet, nb, out []byte, q int, localCache firewall.ConntrackCache) {
|
||||||
err := newPacket(packet, false, fwPacket)
|
err := newPacket(packet, false, fwPacket)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if f.l.Level >= logrus.DebugLevel {
|
if f.l.Level >= logrus.DebugLevel {
|
||||||
@@ -50,12 +48,10 @@ func (f *Interface) consumeInsidePacket(packet []byte, fwPacket *firewall.Packet
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
hostinfo, ready := f.getOrHandshakeConsiderRouting(fwPacket, func(hh *HandshakeHostInfo) {
|
hostinfo, ready := f.getHostinfo(packet, fwPacket)
|
||||||
hh.cachePacket(f.l, header.Message, 0, packet, f.sendMessageNow, f.cachedPacketMetrics)
|
|
||||||
})
|
|
||||||
|
|
||||||
if hostinfo == nil {
|
if hostinfo == nil {
|
||||||
f.rejectInside(packet, out.Payload, q) //todo vector?
|
f.rejectInside(packet, out, q)
|
||||||
if f.l.Level >= logrus.DebugLevel {
|
if f.l.Level >= logrus.DebugLevel {
|
||||||
f.l.WithField("vpnAddr", fwPacket.RemoteAddr).
|
f.l.WithField("vpnAddr", fwPacket.RemoteAddr).
|
||||||
WithField("fwPacket", fwPacket).
|
WithField("fwPacket", fwPacket).
|
||||||
@@ -68,11 +64,11 @@ func (f *Interface) consumeInsidePacket(packet []byte, fwPacket *firewall.Packet
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
dropReason := f.firewall.Drop(*fwPacket, false, hostinfo, f.pki.GetCAPool(), localCache, now)
|
dropReason := f.firewall.Drop(*fwPacket, packet, false, hostinfo, f.pki.GetCAPool(), localCache)
|
||||||
if dropReason == nil {
|
if dropReason == nil {
|
||||||
f.sendNoMetricsDelayed(header.Message, 0, hostinfo.ConnectionState, hostinfo, netip.AddrPort{}, packet, nb, out, q)
|
f.sendNoMetrics(header.Message, 0, hostinfo.ConnectionState, hostinfo, netip.AddrPort{}, packet, nb, out, q)
|
||||||
} else {
|
} else {
|
||||||
f.rejectInside(packet, out.Payload, q) //todo vector?
|
f.rejectInside(packet, out, q)
|
||||||
if f.l.Level >= logrus.DebugLevel {
|
if f.l.Level >= logrus.DebugLevel {
|
||||||
hostinfo.logger(f.l).
|
hostinfo.logger(f.l).
|
||||||
WithField("fwPacket", fwPacket).
|
WithField("fwPacket", fwPacket).
|
||||||
@@ -82,6 +78,26 @@ func (f *Interface) consumeInsidePacket(packet []byte, fwPacket *firewall.Packet
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (f *Interface) getHostinfo(packet []byte, fwPacket *firewall.Packet) (*HostInfo, bool) {
|
||||||
|
if f.firewall.ShouldUnSNAT(fwPacket) {
|
||||||
|
//unsnat packet re-writing also happens here, would be nice to not,
|
||||||
|
//but we need to do the unsnat lookup to find the hostinfo so we can run the firewall checks
|
||||||
|
destVpnAddr := f.firewall.unSnat(packet, fwPacket)
|
||||||
|
if destVpnAddr.IsValid() {
|
||||||
|
//because this was a snatted packet, we know it has an on-overlay destination, so no routing should be required.
|
||||||
|
return f.getOrHandshakeNoRouting(destVpnAddr, func(hh *HandshakeHostInfo) {
|
||||||
|
hh.cachePacket(f.l, header.Message, 0, packet, f.sendMessageNow, f.cachedPacketMetrics)
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
return nil, false
|
||||||
|
}
|
||||||
|
} else { //if we didn't need to unsnat
|
||||||
|
return f.getOrHandshakeConsiderRouting(fwPacket, func(hh *HandshakeHostInfo) {
|
||||||
|
hh.cachePacket(f.l, header.Message, 0, packet, f.sendMessageNow, f.cachedPacketMetrics)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (f *Interface) rejectInside(packet []byte, out []byte, q int) {
|
func (f *Interface) rejectInside(packet []byte, out []byte, q int) {
|
||||||
if !f.firewall.InSendReject {
|
if !f.firewall.InSendReject {
|
||||||
return
|
return
|
||||||
@@ -219,7 +235,7 @@ func (f *Interface) sendMessageNow(t header.MessageType, st header.MessageSubTyp
|
|||||||
}
|
}
|
||||||
|
|
||||||
// check if packet is in outbound fw rules
|
// check if packet is in outbound fw rules
|
||||||
dropReason := f.firewall.Drop(*fp, false, hostinfo, f.pki.GetCAPool(), nil, time.Now())
|
dropReason := f.firewall.Drop(*fp, p, false, hostinfo, f.pki.GetCAPool(), nil)
|
||||||
if dropReason != nil {
|
if dropReason != nil {
|
||||||
if f.l.Level >= logrus.DebugLevel {
|
if f.l.Level >= logrus.DebugLevel {
|
||||||
f.l.WithField("fwPacket", fp).
|
f.l.WithField("fwPacket", fp).
|
||||||
@@ -411,81 +427,3 @@ func (f *Interface) sendNoMetrics(t header.MessageType, st header.MessageSubType
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *Interface) sendNoMetricsDelayed(t header.MessageType, st header.MessageSubType, ci *ConnectionState, hostinfo *HostInfo, remote netip.AddrPort, p, nb []byte, out *packet.UDPPacket, q int) {
|
|
||||||
if ci.eKey == nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
useRelay := !remote.IsValid() && !hostinfo.remote.IsValid()
|
|
||||||
fullOut := out.Payload
|
|
||||||
|
|
||||||
if useRelay {
|
|
||||||
if len(out.Payload) < header.Len {
|
|
||||||
// out always has a capacity of mtu, but not always a length greater than the header.Len.
|
|
||||||
// Grow it to make sure the next operation works.
|
|
||||||
out.Payload = out.Payload[:header.Len]
|
|
||||||
}
|
|
||||||
// Save a header's worth of data at the front of the 'out' buffer.
|
|
||||||
out.Payload = out.Payload[header.Len:]
|
|
||||||
}
|
|
||||||
|
|
||||||
if noiseutil.EncryptLockNeeded {
|
|
||||||
// NOTE: for goboring AESGCMTLS we need to lock because of the nonce check
|
|
||||||
ci.writeLock.Lock()
|
|
||||||
}
|
|
||||||
c := ci.messageCounter.Add(1)
|
|
||||||
|
|
||||||
//l.WithField("trace", string(debug.Stack())).Error("out Header ", &Header{Version, t, st, 0, hostinfo.remoteIndexId, c}, p)
|
|
||||||
out.Payload = header.Encode(out.Payload, header.Version, t, st, hostinfo.remoteIndexId, c)
|
|
||||||
f.connectionManager.Out(hostinfo)
|
|
||||||
|
|
||||||
// Query our LH if we haven't since the last time we've been rebound, this will cause the remote to punch against
|
|
||||||
// all our addrs and enable a faster roaming.
|
|
||||||
if t != header.CloseTunnel && hostinfo.lastRebindCount != f.rebindCount {
|
|
||||||
//NOTE: there is an update hole if a tunnel isn't used and exactly 256 rebinds occur before the tunnel is
|
|
||||||
// finally used again. This tunnel would eventually be torn down and recreated if this action didn't help.
|
|
||||||
f.lightHouse.QueryServer(hostinfo.vpnAddrs[0])
|
|
||||||
hostinfo.lastRebindCount = f.rebindCount
|
|
||||||
if f.l.Level >= logrus.DebugLevel {
|
|
||||||
f.l.WithField("vpnAddrs", hostinfo.vpnAddrs).Debug("Lighthouse update triggered for punch due to rebind counter")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var err error
|
|
||||||
out.Payload, err = ci.eKey.EncryptDanger(out.Payload, out.Payload, p, c, nb)
|
|
||||||
if noiseutil.EncryptLockNeeded {
|
|
||||||
ci.writeLock.Unlock()
|
|
||||||
}
|
|
||||||
if err != nil {
|
|
||||||
hostinfo.logger(f.l).WithError(err).
|
|
||||||
WithField("udpAddr", remote).WithField("counter", c).
|
|
||||||
WithField("attemptedCounter", c).
|
|
||||||
Error("Failed to encrypt outgoing packet")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if remote.IsValid() {
|
|
||||||
err = f.writers[q].Prep(out, remote)
|
|
||||||
if err != nil {
|
|
||||||
hostinfo.logger(f.l).WithError(err).WithField("udpAddr", remote).Error("Failed to write outgoing packet")
|
|
||||||
}
|
|
||||||
} else if hostinfo.remote.IsValid() {
|
|
||||||
err = f.writers[q].Prep(out, hostinfo.remote)
|
|
||||||
if err != nil {
|
|
||||||
hostinfo.logger(f.l).WithError(err).WithField("udpAddr", remote).Error("Failed to write outgoing packet")
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// Try to send via a relay
|
|
||||||
for _, relayIP := range hostinfo.relayState.CopyRelayIps() {
|
|
||||||
relayHostInfo, relay, err := f.hostMap.QueryVpnAddrsRelayFor(hostinfo.vpnAddrs, relayIP)
|
|
||||||
if err != nil {
|
|
||||||
hostinfo.relayState.DeleteRelay(relayIP)
|
|
||||||
hostinfo.logger(f.l).WithField("relay", relayIP).WithError(err).Info("sendNoMetrics failed to find HostInfo")
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
//todo vector!!
|
|
||||||
f.SendVia(relayHostInfo, relay, out.Payload, nb, fullOut[:header.Len+len(out.Payload)], true)
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
//go:build darwin || dragonfly || freebsd || netbsd || openbsd
|
//go:build darwin || dragonfly || freebsd || netbsd || openbsd
|
||||||
// +build darwin dragonfly freebsd netbsd openbsd
|
|
||||||
|
|
||||||
package nebula
|
package nebula
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
//go:build !darwin && !dragonfly && !freebsd && !netbsd && !openbsd
|
//go:build !darwin && !dragonfly && !freebsd && !netbsd && !openbsd
|
||||||
// +build !darwin,!dragonfly,!freebsd,!netbsd,!openbsd
|
|
||||||
|
|
||||||
package nebula
|
package nebula
|
||||||
|
|
||||||
|
|||||||
+73
-106
@@ -4,6 +4,7 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
"net/netip"
|
"net/netip"
|
||||||
"os"
|
"os"
|
||||||
"runtime"
|
"runtime"
|
||||||
@@ -17,12 +18,10 @@ import (
|
|||||||
"github.com/slackhq/nebula/firewall"
|
"github.com/slackhq/nebula/firewall"
|
||||||
"github.com/slackhq/nebula/header"
|
"github.com/slackhq/nebula/header"
|
||||||
"github.com/slackhq/nebula/overlay"
|
"github.com/slackhq/nebula/overlay"
|
||||||
"github.com/slackhq/nebula/packet"
|
|
||||||
"github.com/slackhq/nebula/udp"
|
"github.com/slackhq/nebula/udp"
|
||||||
)
|
)
|
||||||
|
|
||||||
const mtu = 9001
|
const mtu = 9001
|
||||||
const batch = 1024 //todo config!
|
|
||||||
|
|
||||||
type InterfaceConfig struct {
|
type InterfaceConfig struct {
|
||||||
HostMap *HostMap
|
HostMap *HostMap
|
||||||
@@ -78,7 +77,8 @@ type Interface struct {
|
|||||||
reQueryEvery atomic.Uint32
|
reQueryEvery atomic.Uint32
|
||||||
reQueryWait atomic.Int64
|
reQueryWait atomic.Int64
|
||||||
|
|
||||||
sendRecvErrorConfig sendRecvErrorConfig
|
sendRecvErrorConfig recvErrorConfig
|
||||||
|
acceptRecvErrorConfig recvErrorConfig
|
||||||
|
|
||||||
// rebindCount is used to decide if an active tunnel should trigger a punch notification through a lighthouse
|
// rebindCount is used to decide if an active tunnel should trigger a punch notification through a lighthouse
|
||||||
rebindCount int8
|
rebindCount int8
|
||||||
@@ -87,18 +87,12 @@ type Interface struct {
|
|||||||
conntrackCacheTimeout time.Duration
|
conntrackCacheTimeout time.Duration
|
||||||
|
|
||||||
writers []udp.Conn
|
writers []udp.Conn
|
||||||
readers []overlay.TunDev
|
readers []io.ReadWriteCloser
|
||||||
|
|
||||||
metricHandshakes metrics.Histogram
|
metricHandshakes metrics.Histogram
|
||||||
messageMetrics *MessageMetrics
|
messageMetrics *MessageMetrics
|
||||||
cachedPacketMetrics *cachedPacketMetrics
|
cachedPacketMetrics *cachedPacketMetrics
|
||||||
|
|
||||||
listenInN int
|
|
||||||
listenOutN int
|
|
||||||
|
|
||||||
listenInMetric metrics.Histogram
|
|
||||||
listenOutMetric metrics.Histogram
|
|
||||||
|
|
||||||
l *logrus.Logger
|
l *logrus.Logger
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -117,34 +111,34 @@ type EncWriter interface {
|
|||||||
GetCertState() *CertState
|
GetCertState() *CertState
|
||||||
}
|
}
|
||||||
|
|
||||||
type sendRecvErrorConfig uint8
|
type recvErrorConfig uint8
|
||||||
|
|
||||||
const (
|
const (
|
||||||
sendRecvErrorAlways sendRecvErrorConfig = iota
|
recvErrorAlways recvErrorConfig = iota
|
||||||
sendRecvErrorNever
|
recvErrorNever
|
||||||
sendRecvErrorPrivate
|
recvErrorPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
func (s sendRecvErrorConfig) ShouldSendRecvError(endpoint netip.AddrPort) bool {
|
func (s recvErrorConfig) ShouldRecvError(endpoint netip.AddrPort) bool {
|
||||||
switch s {
|
switch s {
|
||||||
case sendRecvErrorPrivate:
|
case recvErrorPrivate:
|
||||||
return endpoint.Addr().IsPrivate()
|
return endpoint.Addr().IsPrivate()
|
||||||
case sendRecvErrorAlways:
|
case recvErrorAlways:
|
||||||
return true
|
return true
|
||||||
case sendRecvErrorNever:
|
case recvErrorNever:
|
||||||
return false
|
return false
|
||||||
default:
|
default:
|
||||||
panic(fmt.Errorf("invalid sendRecvErrorConfig value: %d", s))
|
panic(fmt.Errorf("invalid recvErrorConfig value: %d", s))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s sendRecvErrorConfig) String() string {
|
func (s recvErrorConfig) String() string {
|
||||||
switch s {
|
switch s {
|
||||||
case sendRecvErrorAlways:
|
case recvErrorAlways:
|
||||||
return "always"
|
return "always"
|
||||||
case sendRecvErrorNever:
|
case recvErrorNever:
|
||||||
return "never"
|
return "never"
|
||||||
case sendRecvErrorPrivate:
|
case recvErrorPrivate:
|
||||||
return "private"
|
return "private"
|
||||||
default:
|
default:
|
||||||
return fmt.Sprintf("invalid(%d)", s)
|
return fmt.Sprintf("invalid(%d)", s)
|
||||||
@@ -184,7 +178,7 @@ func NewInterface(ctx context.Context, c *InterfaceConfig) (*Interface, error) {
|
|||||||
routines: c.routines,
|
routines: c.routines,
|
||||||
version: c.version,
|
version: c.version,
|
||||||
writers: make([]udp.Conn, c.routines),
|
writers: make([]udp.Conn, c.routines),
|
||||||
readers: make([]overlay.TunDev, c.routines),
|
readers: make([]io.ReadWriteCloser, c.routines),
|
||||||
myVpnNetworks: cs.myVpnNetworks,
|
myVpnNetworks: cs.myVpnNetworks,
|
||||||
myVpnNetworksTable: cs.myVpnNetworksTable,
|
myVpnNetworksTable: cs.myVpnNetworksTable,
|
||||||
myVpnAddrs: cs.myVpnAddrs,
|
myVpnAddrs: cs.myVpnAddrs,
|
||||||
@@ -203,8 +197,6 @@ func NewInterface(ctx context.Context, c *InterfaceConfig) (*Interface, error) {
|
|||||||
|
|
||||||
l: c.l,
|
l: c.l,
|
||||||
}
|
}
|
||||||
ifce.listenInMetric = metrics.GetOrRegisterHistogram("vhost.listenIn.n", nil, metrics.NewExpDecaySample(1028, 0.015))
|
|
||||||
ifce.listenOutMetric = metrics.GetOrRegisterHistogram("vhost.listenOut.n", nil, metrics.NewExpDecaySample(1028, 0.015))
|
|
||||||
|
|
||||||
ifce.tryPromoteEvery.Store(c.tryPromoteEvery)
|
ifce.tryPromoteEvery.Store(c.tryPromoteEvery)
|
||||||
ifce.reQueryEvery.Store(c.reQueryEvery)
|
ifce.reQueryEvery.Store(c.reQueryEvery)
|
||||||
@@ -241,7 +233,7 @@ func (f *Interface) activate() {
|
|||||||
metrics.GetOrRegisterGauge("routines", nil).Update(int64(f.routines))
|
metrics.GetOrRegisterGauge("routines", nil).Update(int64(f.routines))
|
||||||
|
|
||||||
// Prepare n tun queues
|
// Prepare n tun queues
|
||||||
var reader overlay.TunDev = f.inside
|
var reader io.ReadWriteCloser = f.inside
|
||||||
for i := 0; i < f.routines; i++ {
|
for i := 0; i < f.routines; i++ {
|
||||||
if i > 0 {
|
if i > 0 {
|
||||||
reader, err = f.inside.NewMultiQueueReader()
|
reader, err = f.inside.NewMultiQueueReader()
|
||||||
@@ -256,6 +248,7 @@ func (f *Interface) activate() {
|
|||||||
f.inside.Close()
|
f.inside.Close()
|
||||||
f.l.Fatal(err)
|
f.l.Fatal(err)
|
||||||
}
|
}
|
||||||
|
f.firewall.SetSNATAddressFromInterface(f)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *Interface) run() {
|
func (f *Interface) run() {
|
||||||
@@ -270,81 +263,40 @@ func (f *Interface) run() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type Scratches struct {
|
func (f *Interface) listenOut(i int) {
|
||||||
h *header.H
|
|
||||||
nb []byte
|
|
||||||
fwPacket *firewall.Packet
|
|
||||||
scratch []byte
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewScratches() *Scratches {
|
|
||||||
return &Scratches{
|
|
||||||
h: &header.H{},
|
|
||||||
fwPacket: &firewall.Packet{},
|
|
||||||
nb: make([]byte, 12),
|
|
||||||
scratch: make([]byte, udp.MTU),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (f *Interface) listenOut(q int) {
|
|
||||||
runtime.LockOSThread()
|
runtime.LockOSThread()
|
||||||
|
|
||||||
var li udp.Conn
|
var li udp.Conn
|
||||||
if q > 0 {
|
if i > 0 {
|
||||||
li = f.writers[q]
|
li = f.writers[i]
|
||||||
} else {
|
} else {
|
||||||
li = f.outside
|
li = f.outside
|
||||||
}
|
}
|
||||||
|
|
||||||
ctCache := firewall.NewConntrackCacheTicker(f.conntrackCacheTimeout)
|
ctCache := firewall.NewConntrackCacheTicker(f.conntrackCacheTimeout)
|
||||||
lhh := f.lightHouse.NewRequestHandler()
|
lhh := f.lightHouse.NewRequestHandler()
|
||||||
|
plaintext := make([]byte, udp.MTU)
|
||||||
|
h := &header.H{}
|
||||||
|
fwPacket := &firewall.Packet{}
|
||||||
|
nb := make([]byte, 12, 12)
|
||||||
|
|
||||||
outPackets := make([]*packet.OutPacket, batch)
|
li.ListenOut(func(fromUdpAddr netip.AddrPort, payload []byte) {
|
||||||
for i := 0; i < batch; i++ {
|
f.readOutsidePackets(ViaSender{UdpAddr: fromUdpAddr}, plaintext[:0], payload, h, fwPacket, lhh, nb, i, ctCache.Get(f.l))
|
||||||
outPackets[i] = packet.NewOut()
|
|
||||||
}
|
|
||||||
|
|
||||||
scratches := NewScratches()
|
|
||||||
|
|
||||||
toSend := make([][]byte, batch)
|
|
||||||
|
|
||||||
li.ListenOut(func(pkts []*packet.UDPPacket) {
|
|
||||||
toSend = toSend[:0]
|
|
||||||
|
|
||||||
f.readOutsidePacketsMany(pkts, outPackets, lhh, scratches, q, ctCache.Get(f.l), time.Now())
|
|
||||||
//we opportunistically tx, but try to also send stragglers
|
|
||||||
if _, err := f.readers[q].WriteMany(outPackets, q); err != nil {
|
|
||||||
f.l.WithError(err).Error("Failed to send packets")
|
|
||||||
}
|
|
||||||
//todo I broke this
|
|
||||||
//n := len(toSend)
|
|
||||||
//if f.l.Level == logrus.DebugLevel {
|
|
||||||
// f.listenOutMetric.Update(int64(n))
|
|
||||||
//}
|
|
||||||
//f.listenOutN = n
|
|
||||||
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *Interface) listenIn(reader overlay.TunDev, queueNum int) {
|
func (f *Interface) listenIn(reader io.ReadWriteCloser, i int) {
|
||||||
runtime.LockOSThread()
|
runtime.LockOSThread()
|
||||||
|
|
||||||
|
packet := make([]byte, mtu)
|
||||||
|
out := make([]byte, mtu)
|
||||||
fwPacket := &firewall.Packet{}
|
fwPacket := &firewall.Packet{}
|
||||||
nb := make([]byte, 12, 12)
|
nb := make([]byte, 12, 12)
|
||||||
|
|
||||||
conntrackCache := firewall.NewConntrackCacheTicker(f.conntrackCacheTimeout)
|
conntrackCache := firewall.NewConntrackCacheTicker(f.conntrackCacheTimeout)
|
||||||
|
|
||||||
packets := reader.NewPacketArrays(batch)
|
|
||||||
|
|
||||||
outPackets := make([]*packet.UDPPacket, batch)
|
|
||||||
for i := 0; i < batch; i++ {
|
|
||||||
outPackets[i] = packet.New(false) //todo isv4?
|
|
||||||
}
|
|
||||||
|
|
||||||
for {
|
for {
|
||||||
n, err := reader.ReadMany(packets, queueNum)
|
n, err := reader.Read(packet)
|
||||||
|
|
||||||
//todo!!
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if errors.Is(err, os.ErrClosed) && f.closed.Load() {
|
if errors.Is(err, os.ErrClosed) && f.closed.Load() {
|
||||||
return
|
return
|
||||||
@@ -355,27 +307,14 @@ func (f *Interface) listenIn(reader overlay.TunDev, queueNum int) {
|
|||||||
os.Exit(2)
|
os.Exit(2)
|
||||||
}
|
}
|
||||||
|
|
||||||
if f.l.Level == logrus.DebugLevel {
|
f.consumeInsidePacket(packet[:n], fwPacket, nb, out, i, conntrackCache.Get(f.l))
|
||||||
f.listenInMetric.Update(int64(n))
|
|
||||||
}
|
|
||||||
f.listenInN = n
|
|
||||||
|
|
||||||
now := time.Now()
|
|
||||||
for i, pkt := range packets[:n] {
|
|
||||||
outPackets[i].ReadyToSend = false
|
|
||||||
f.consumeInsidePacket(pkt.GetPayload(), fwPacket, nb, outPackets[i], queueNum, conntrackCache.Get(f.l), now)
|
|
||||||
reader.RecycleRxSeg(pkt, i == (n-1), queueNum) //todo handle err?
|
|
||||||
}
|
|
||||||
_, err = f.writers[queueNum].WriteBatch(outPackets[:n])
|
|
||||||
if err != nil {
|
|
||||||
f.l.WithError(err).Error("Error while writing outbound packets")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *Interface) RegisterConfigChangeCallbacks(c *config.C) {
|
func (f *Interface) RegisterConfigChangeCallbacks(c *config.C) {
|
||||||
c.RegisterReloadCallback(f.reloadFirewall)
|
c.RegisterReloadCallback(f.reloadFirewall)
|
||||||
c.RegisterReloadCallback(f.reloadSendRecvError)
|
c.RegisterReloadCallback(f.reloadSendRecvError)
|
||||||
|
c.RegisterReloadCallback(f.reloadAcceptRecvError)
|
||||||
c.RegisterReloadCallback(f.reloadDisconnectInvalid)
|
c.RegisterReloadCallback(f.reloadDisconnectInvalid)
|
||||||
c.RegisterReloadCallback(f.reloadMisc)
|
c.RegisterReloadCallback(f.reloadMisc)
|
||||||
|
|
||||||
@@ -406,6 +345,7 @@ func (f *Interface) reloadFirewall(c *config.C) {
|
|||||||
f.l.WithError(err).Error("Error while creating firewall during reload")
|
f.l.WithError(err).Error("Error while creating firewall during reload")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
fw.SetSNATAddressFromInterface(f)
|
||||||
|
|
||||||
oldFw := f.firewall
|
oldFw := f.firewall
|
||||||
conntrack := oldFw.Conntrack
|
conntrack := oldFw.Conntrack
|
||||||
@@ -439,16 +379,16 @@ func (f *Interface) reloadSendRecvError(c *config.C) {
|
|||||||
|
|
||||||
switch stringValue {
|
switch stringValue {
|
||||||
case "always":
|
case "always":
|
||||||
f.sendRecvErrorConfig = sendRecvErrorAlways
|
f.sendRecvErrorConfig = recvErrorAlways
|
||||||
case "never":
|
case "never":
|
||||||
f.sendRecvErrorConfig = sendRecvErrorNever
|
f.sendRecvErrorConfig = recvErrorNever
|
||||||
case "private":
|
case "private":
|
||||||
f.sendRecvErrorConfig = sendRecvErrorPrivate
|
f.sendRecvErrorConfig = recvErrorPrivate
|
||||||
default:
|
default:
|
||||||
if c.GetBool("listen.send_recv_error", true) {
|
if c.GetBool("listen.send_recv_error", true) {
|
||||||
f.sendRecvErrorConfig = sendRecvErrorAlways
|
f.sendRecvErrorConfig = recvErrorAlways
|
||||||
} else {
|
} else {
|
||||||
f.sendRecvErrorConfig = sendRecvErrorNever
|
f.sendRecvErrorConfig = recvErrorNever
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -457,6 +397,30 @@ func (f *Interface) reloadSendRecvError(c *config.C) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (f *Interface) reloadAcceptRecvError(c *config.C) {
|
||||||
|
if c.InitialLoad() || c.HasChanged("listen.accept_recv_error") {
|
||||||
|
stringValue := c.GetString("listen.accept_recv_error", "always")
|
||||||
|
|
||||||
|
switch stringValue {
|
||||||
|
case "always":
|
||||||
|
f.acceptRecvErrorConfig = recvErrorAlways
|
||||||
|
case "never":
|
||||||
|
f.acceptRecvErrorConfig = recvErrorNever
|
||||||
|
case "private":
|
||||||
|
f.acceptRecvErrorConfig = recvErrorPrivate
|
||||||
|
default:
|
||||||
|
if c.GetBool("listen.accept_recv_error", true) {
|
||||||
|
f.acceptRecvErrorConfig = recvErrorAlways
|
||||||
|
} else {
|
||||||
|
f.acceptRecvErrorConfig = recvErrorNever
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
f.l.WithField("acceptRecvError", f.acceptRecvErrorConfig.String()).
|
||||||
|
Info("Loaded accept_recv_error config")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (f *Interface) reloadMisc(c *config.C) {
|
func (f *Interface) reloadMisc(c *config.C) {
|
||||||
if c.HasChanged("counters.try_promote") {
|
if c.HasChanged("counters.try_promote") {
|
||||||
n := c.GetUint32("counters.try_promote", defaultPromoteEvery)
|
n := c.GetUint32("counters.try_promote", defaultPromoteEvery)
|
||||||
@@ -507,11 +471,6 @@ func (f *Interface) emitStats(ctx context.Context, i time.Duration) {
|
|||||||
} else {
|
} else {
|
||||||
certMaxVersion.Update(int64(certState.v1Cert.Version()))
|
certMaxVersion.Update(int64(certState.v1Cert.Version()))
|
||||||
}
|
}
|
||||||
if f.l.Level != logrus.DebugLevel {
|
|
||||||
f.listenInMetric.Update(int64(f.listenInN))
|
|
||||||
f.listenOutMetric.Update(int64(f.listenOutN))
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -533,6 +492,14 @@ func (f *Interface) Close() error {
|
|||||||
f.l.WithError(err).Error("Error while closing udp socket")
|
f.l.WithError(err).Error("Error while closing udp socket")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
for i, r := range f.readers {
|
||||||
|
if i == 0 {
|
||||||
|
continue // f.readers[0] is f.inside, which we want to save for last
|
||||||
|
}
|
||||||
|
if err := r.Close(); err != nil {
|
||||||
|
f.l.WithError(err).Error("Error while closing tun reader")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Release the tun device
|
// Release the tun device
|
||||||
return f.inside.Close()
|
return f.inside.Close()
|
||||||
|
|||||||
+3
-10
@@ -713,21 +713,14 @@ func (lh *LightHouse) unlockedShouldAddV6(vpnAddr netip.Addr, to *V6AddrPort) bo
|
|||||||
|
|
||||||
func (lh *LightHouse) IsLighthouseAddr(vpnAddr netip.Addr) bool {
|
func (lh *LightHouse) IsLighthouseAddr(vpnAddr netip.Addr) bool {
|
||||||
l := lh.GetLighthouses()
|
l := lh.GetLighthouses()
|
||||||
for i := range l {
|
return slices.Contains(l, vpnAddr)
|
||||||
if l[i] == vpnAddr {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (lh *LightHouse) IsAnyLighthouseAddr(vpnAddrs []netip.Addr) bool {
|
func (lh *LightHouse) IsAnyLighthouseAddr(vpnAddrs []netip.Addr) bool {
|
||||||
l := lh.GetLighthouses()
|
l := lh.GetLighthouses()
|
||||||
for i := range vpnAddrs {
|
for i := range vpnAddrs {
|
||||||
for j := range l {
|
if slices.Contains(l, vpnAddrs[i]) {
|
||||||
if l[j] == vpnAddrs[i] {
|
return true
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
|
|||||||
+8
-9
@@ -1,7 +1,6 @@
|
|||||||
package nebula
|
package nebula
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
|
||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/netip"
|
"net/netip"
|
||||||
@@ -42,14 +41,14 @@ func Test_lhStaticMapping(t *testing.T) {
|
|||||||
c := config.NewC(l)
|
c := config.NewC(l)
|
||||||
c.Settings["lighthouse"] = map[string]any{"hosts": []any{lh1}}
|
c.Settings["lighthouse"] = map[string]any{"hosts": []any{lh1}}
|
||||||
c.Settings["static_host_map"] = map[string]any{lh1: []any{"1.1.1.1:4242"}}
|
c.Settings["static_host_map"] = map[string]any{lh1: []any{"1.1.1.1:4242"}}
|
||||||
_, err := NewLightHouseFromConfig(context.Background(), l, c, cs, nil, nil)
|
_, err := NewLightHouseFromConfig(t.Context(), l, c, cs, nil, nil)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
lh2 := "10.128.0.3"
|
lh2 := "10.128.0.3"
|
||||||
c = config.NewC(l)
|
c = config.NewC(l)
|
||||||
c.Settings["lighthouse"] = map[string]any{"hosts": []any{lh1, lh2}}
|
c.Settings["lighthouse"] = map[string]any{"hosts": []any{lh1, lh2}}
|
||||||
c.Settings["static_host_map"] = map[string]any{lh1: []any{"100.1.1.1:4242"}}
|
c.Settings["static_host_map"] = map[string]any{lh1: []any{"100.1.1.1:4242"}}
|
||||||
_, err = NewLightHouseFromConfig(context.Background(), l, c, cs, nil, nil)
|
_, err = NewLightHouseFromConfig(t.Context(), l, c, cs, nil, nil)
|
||||||
require.EqualError(t, err, "lighthouse 10.128.0.3 does not have a static_host_map entry")
|
require.EqualError(t, err, "lighthouse 10.128.0.3 does not have a static_host_map entry")
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -71,7 +70,7 @@ func TestReloadLighthouseInterval(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
c.Settings["static_host_map"] = map[string]any{lh1: []any{"1.1.1.1:4242"}}
|
c.Settings["static_host_map"] = map[string]any{lh1: []any{"1.1.1.1:4242"}}
|
||||||
lh, err := NewLightHouseFromConfig(context.Background(), l, c, cs, nil, nil)
|
lh, err := NewLightHouseFromConfig(t.Context(), l, c, cs, nil, nil)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
lh.ifce = &mockEncWriter{}
|
lh.ifce = &mockEncWriter{}
|
||||||
|
|
||||||
@@ -99,7 +98,7 @@ func BenchmarkLighthouseHandleRequest(b *testing.B) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
c := config.NewC(l)
|
c := config.NewC(l)
|
||||||
lh, err := NewLightHouseFromConfig(context.Background(), l, c, cs, nil, nil)
|
lh, err := NewLightHouseFromConfig(b.Context(), l, c, cs, nil, nil)
|
||||||
require.NoError(b, err)
|
require.NoError(b, err)
|
||||||
|
|
||||||
hAddr := netip.MustParseAddrPort("4.5.6.7:12345")
|
hAddr := netip.MustParseAddrPort("4.5.6.7:12345")
|
||||||
@@ -202,7 +201,7 @@ func TestLighthouse_Memory(t *testing.T) {
|
|||||||
myVpnNetworks: []netip.Prefix{myVpnNet},
|
myVpnNetworks: []netip.Prefix{myVpnNet},
|
||||||
myVpnNetworksTable: nt,
|
myVpnNetworksTable: nt,
|
||||||
}
|
}
|
||||||
lh, err := NewLightHouseFromConfig(context.Background(), l, c, cs, nil, nil)
|
lh, err := NewLightHouseFromConfig(t.Context(), l, c, cs, nil, nil)
|
||||||
lh.ifce = &mockEncWriter{}
|
lh.ifce = &mockEncWriter{}
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
lhh := lh.NewRequestHandler()
|
lhh := lh.NewRequestHandler()
|
||||||
@@ -288,7 +287,7 @@ func TestLighthouse_reload(t *testing.T) {
|
|||||||
myVpnNetworksTable: nt,
|
myVpnNetworksTable: nt,
|
||||||
}
|
}
|
||||||
|
|
||||||
lh, err := NewLightHouseFromConfig(context.Background(), l, c, cs, nil, nil)
|
lh, err := NewLightHouseFromConfig(t.Context(), l, c, cs, nil, nil)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
nc := map[string]any{
|
nc := map[string]any{
|
||||||
@@ -523,7 +522,7 @@ func TestLighthouse_Dont_Delete_Static_Hosts(t *testing.T) {
|
|||||||
myVpnNetworks: []netip.Prefix{myVpnNet},
|
myVpnNetworks: []netip.Prefix{myVpnNet},
|
||||||
myVpnNetworksTable: nt,
|
myVpnNetworksTable: nt,
|
||||||
}
|
}
|
||||||
lh, err := NewLightHouseFromConfig(context.Background(), l, c, cs, nil, nil)
|
lh, err := NewLightHouseFromConfig(t.Context(), l, c, cs, nil, nil)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
lh.ifce = &mockEncWriter{}
|
lh.ifce = &mockEncWriter{}
|
||||||
|
|
||||||
@@ -589,7 +588,7 @@ func TestLighthouse_DeletesWork(t *testing.T) {
|
|||||||
myVpnNetworks: []netip.Prefix{myVpnNet},
|
myVpnNetworks: []netip.Prefix{myVpnNet},
|
||||||
myVpnNetworksTable: nt,
|
myVpnNetworksTable: nt,
|
||||||
}
|
}
|
||||||
lh, err := NewLightHouseFromConfig(context.Background(), l, c, cs, nil, nil)
|
lh, err := NewLightHouseFromConfig(t.Context(), l, c, cs, nil, nil)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
lh.ifce = &mockEncWriter{}
|
lh.ifce = &mockEncWriter{}
|
||||||
|
|
||||||
|
|||||||
@@ -105,11 +105,7 @@ func Main(c *config.C, configTest bool, buildVersion string, logger *logrus.Logg
|
|||||||
// deprecated and undocumented
|
// deprecated and undocumented
|
||||||
tunQueues := c.GetInt("tun.routines", 1)
|
tunQueues := c.GetInt("tun.routines", 1)
|
||||||
udpQueues := c.GetInt("listen.routines", 1)
|
udpQueues := c.GetInt("listen.routines", 1)
|
||||||
if tunQueues > udpQueues {
|
routines = max(tunQueues, udpQueues)
|
||||||
routines = tunQueues
|
|
||||||
} else {
|
|
||||||
routines = udpQueues
|
|
||||||
}
|
|
||||||
if routines != 1 {
|
if routines != 1 {
|
||||||
l.WithField("routines", routines).Warn("Setting tun.routines and listen.routines is deprecated. Use `routines` instead")
|
l.WithField("routines", routines).Warn("Setting tun.routines and listen.routines is deprecated. Use `routines` instead")
|
||||||
}
|
}
|
||||||
@@ -135,7 +131,8 @@ func Main(c *config.C, configTest bool, buildVersion string, logger *logrus.Logg
|
|||||||
deviceFactory = overlay.NewDeviceFromConfig
|
deviceFactory = overlay.NewDeviceFromConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
tun, err = deviceFactory(c, l, pki.getCertState().myVpnNetworks, routines)
|
cs := pki.getCertState()
|
||||||
|
tun, err = deviceFactory(c, l, cs.myVpnNetworks, cs.GetDefaultCertificate().UnsafeNetworks(), routines)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, util.ContextualizeIfNeeded("Failed to get a tun/tap device", err)
|
return nil, util.ContextualizeIfNeeded("Failed to get a tun/tap device", err)
|
||||||
}
|
}
|
||||||
@@ -265,6 +262,7 @@ func Main(c *config.C, configTest bool, buildVersion string, logger *logrus.Logg
|
|||||||
ifce.RegisterConfigChangeCallbacks(c)
|
ifce.RegisterConfigChangeCallbacks(c)
|
||||||
ifce.reloadDisconnectInvalid(c)
|
ifce.reloadDisconnectInvalid(c)
|
||||||
ifce.reloadSendRecvError(c)
|
ifce.reloadSendRecvError(c)
|
||||||
|
ifce.reloadAcceptRecvError(c)
|
||||||
|
|
||||||
handshakeManager.f = ifce
|
handshakeManager.f = ifce
|
||||||
go handshakeManager.Run(ctx)
|
go handshakeManager.Run(ctx)
|
||||||
|
|||||||
+1
-1
@@ -22,7 +22,7 @@ const EncryptLockNeeded = true
|
|||||||
// NewGCMTLS is no longer exposed in go1.19+, so we need to link it in
|
// NewGCMTLS is no longer exposed in go1.19+, so we need to link it in
|
||||||
// See: https://github.com/golang/go/issues/56326
|
// See: https://github.com/golang/go/issues/56326
|
||||||
//
|
//
|
||||||
// NewGCMTLS is the internal method used with boringcrypto that provices a
|
// NewGCMTLS is the internal method used with boringcrypto that provides a
|
||||||
// validated mode of AES-GCM which enforces the nonce is strictly
|
// validated mode of AES-GCM which enforces the nonce is strictly
|
||||||
// monotonically increasing. This is the TLS 1.2 specification for nonce
|
// monotonically increasing. This is the TLS 1.2 specification for nonce
|
||||||
// generation (which also matches the method used by the Noise Protocol)
|
// generation (which also matches the method used by the Noise Protocol)
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
//go:build !boringcrypto
|
//go:build !boringcrypto
|
||||||
// +build !boringcrypto
|
|
||||||
|
|
||||||
package nebula
|
package nebula
|
||||||
|
|
||||||
|
|||||||
+153
-169
@@ -7,7 +7,6 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/google/gopacket/layers"
|
"github.com/google/gopacket/layers"
|
||||||
"github.com/slackhq/nebula/packet"
|
|
||||||
"golang.org/x/net/ipv6"
|
"golang.org/x/net/ipv6"
|
||||||
|
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
@@ -20,108 +19,30 @@ const (
|
|||||||
minFwPacketLen = 4
|
minFwPacketLen = 4
|
||||||
)
|
)
|
||||||
|
|
||||||
// handleRelayPackets handles relay packets. Returns false if there's nothing left to do, true for continuing to process an unwrapped TerminalType packet
|
func (f *Interface) readOutsidePackets(via ViaSender, out []byte, packet []byte, h *header.H, fwPacket *firewall.Packet, lhf *LightHouseHandler, nb []byte, q int, localCache firewall.ConntrackCache) {
|
||||||
// scratch must be large enough to contain a packet to be relayed if needed
|
err := h.Parse(packet)
|
||||||
func (f *Interface) handleRelayPackets(via ViaSender, hostinfo *HostInfo, segment []byte, scratch []byte, h *header.H, nb []byte) ([]byte, *ViaSender, bool) {
|
|
||||||
var err error
|
|
||||||
// The entire body is sent as AD, not encrypted.
|
|
||||||
// The packet consists of a 16-byte parsed Nebula header, Associated Data-protected payload, and a trailing 16-byte AEAD signature value.
|
|
||||||
// The packet is guaranteed to be at least 16 bytes at this point, b/c it got past the h.Parse() call above. If it's
|
|
||||||
// otherwise malformed (meaning, there is no trailing 16 byte AEAD value), then this will result in at worst a 0-length slice
|
|
||||||
// which will gracefully fail in the DecryptDanger call.
|
|
||||||
signedPayload := segment[:len(segment)-hostinfo.ConnectionState.dKey.Overhead()]
|
|
||||||
signatureValue := segment[len(segment)-hostinfo.ConnectionState.dKey.Overhead():]
|
|
||||||
scratch, err = hostinfo.ConnectionState.dKey.DecryptDanger(scratch, signedPayload, signatureValue, h.MessageCounter, nb)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, nil, false
|
// Hole punch packets are 0 or 1 byte big, so lets ignore printing those errors
|
||||||
}
|
if len(packet) > 1 {
|
||||||
// Successfully validated the thing. Get rid of the Relay header.
|
f.l.WithField("packet", packet).Infof("Error while parsing inbound packet from %s: %s", via, err)
|
||||||
signedPayload = signedPayload[header.Len:]
|
|
||||||
// Pull the Roaming parts up here, and return in all call paths.
|
|
||||||
f.handleHostRoaming(hostinfo, via)
|
|
||||||
// Track usage of both the HostInfo and the Relay for the received & authenticated packet
|
|
||||||
f.connectionManager.In(hostinfo)
|
|
||||||
f.connectionManager.RelayUsed(h.RemoteIndex)
|
|
||||||
|
|
||||||
relay, ok := hostinfo.relayState.QueryRelayForByIdx(h.RemoteIndex)
|
|
||||||
if !ok {
|
|
||||||
// The only way this happens is if hostmap has an index to the correct HostInfo, but the HostInfo is missing
|
|
||||||
// its internal mapping. This should never happen.
|
|
||||||
hostinfo.logger(f.l).WithFields(logrus.Fields{"vpnAddrs": hostinfo.vpnAddrs, "remoteIndex": h.RemoteIndex}).Error("HostInfo missing remote relay index")
|
|
||||||
return nil, nil, false
|
|
||||||
}
|
|
||||||
|
|
||||||
switch relay.Type {
|
|
||||||
case TerminalType:
|
|
||||||
// If I am the target of this relay, process the unwrapped packet
|
|
||||||
// We need to re-write our variables to ensure this segment is correctly parsed.
|
|
||||||
// We could set up for a recursive call here, but this makes it easier to prove that we'll never stack-overflow
|
|
||||||
|
|
||||||
//mirrors the top of readOutsideSegment
|
|
||||||
err = h.Parse(signedPayload)
|
|
||||||
if err != nil {
|
|
||||||
// Hole punch packets are 0 or 1 byte big, so let's ignore printing those errors
|
|
||||||
if len(signedPayload) > 1 {
|
|
||||||
f.l.WithField("packet", segment).Infof("Error while parsing inbound packet from %s: %s", via, err)
|
|
||||||
}
|
|
||||||
return nil, nil, false
|
|
||||||
}
|
|
||||||
newVia := &ViaSender{
|
|
||||||
UdpAddr: via.UdpAddr,
|
|
||||||
relayHI: hostinfo,
|
|
||||||
remoteIdx: relay.RemoteIndex,
|
|
||||||
relay: relay,
|
|
||||||
IsRelayed: true,
|
|
||||||
}
|
|
||||||
//continue flowing through readOutsideSegment()
|
|
||||||
return signedPayload, newVia, true
|
|
||||||
case ForwardingType:
|
|
||||||
// Find the target HostInfo relay object
|
|
||||||
targetHI, targetRelay, err := f.hostMap.QueryVpnAddrsRelayFor(hostinfo.vpnAddrs, relay.PeerAddr)
|
|
||||||
if err != nil {
|
|
||||||
hostinfo.logger(f.l).WithField("relayTo", relay.PeerAddr).WithError(err).WithField("hostinfo.vpnAddrs", hostinfo.vpnAddrs).Info("Failed to find target host info by ip")
|
|
||||||
return nil, nil, false
|
|
||||||
}
|
|
||||||
|
|
||||||
// If that relay is Established, forward the payload through it
|
|
||||||
if targetRelay.State == Established {
|
|
||||||
switch targetRelay.Type {
|
|
||||||
case ForwardingType:
|
|
||||||
// Forward this packet through the relay tunnel, and find the target HostInfo
|
|
||||||
f.SendVia(targetHI, targetRelay, signedPayload, nb, scratch[:0], false) //todo it would be nice to queue this up and do it later, or at least avoid a memcpy of signedPayload
|
|
||||||
case TerminalType:
|
|
||||||
hostinfo.logger(f.l).Error("Unexpected Relay Type of Terminal")
|
|
||||||
default:
|
|
||||||
hostinfo.logger(f.l).WithField("targetRelay.Type", targetRelay.Type).Error("Unexpected Relay Type")
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
hostinfo.logger(f.l).WithFields(logrus.Fields{"relayTo": relay.PeerAddr, "relayFrom": hostinfo.vpnAddrs[0], "targetRelayState": targetRelay.State}).Info("Unexpected target relay state")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nil, nil, false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (f *Interface) readOutsideSegment(via ViaSender, segment []byte, out *packet.OutPacket, lhf *LightHouseHandler, s *Scratches, q int, localCache firewall.ConntrackCache, now time.Time) {
|
|
||||||
h := s.h
|
|
||||||
err := h.Parse(segment)
|
|
||||||
if err != nil {
|
|
||||||
// Hole punch packets are 0 or 1 byte big, so let's ignore printing those errors
|
|
||||||
if len(segment) > 1 {
|
|
||||||
f.l.WithField("packet", segment).Infof("Error while parsing inbound packet from %s: %s", via, err)
|
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//l.Error("in packet ", header, packet[HeaderLen:])
|
||||||
|
if !via.IsRelayed {
|
||||||
|
if f.myVpnNetworksTable.Contains(via.UdpAddr.Addr()) {
|
||||||
|
if f.l.Level >= logrus.DebugLevel {
|
||||||
|
f.l.WithField("from", via).Debug("Refusing to process double encrypted packet")
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
var hostinfo *HostInfo
|
var hostinfo *HostInfo
|
||||||
// verify if we've seen this index before, otherwise respond to the handshake initiation
|
// verify if we've seen this index before, otherwise respond to the handshake initiation
|
||||||
if h.Type == header.Message && h.Subtype == header.MessageRelay {
|
if h.Type == header.Message && h.Subtype == header.MessageRelay {
|
||||||
hostinfo = f.hostMap.QueryRelayIndex(h.RemoteIndex)
|
hostinfo = f.hostMap.QueryRelayIndex(h.RemoteIndex)
|
||||||
newSegment, newVia, keepGoing := f.handleRelayPackets(via, hostinfo, segment, s.scratch, h, s.nb)
|
|
||||||
if !keepGoing {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
via = *newVia
|
|
||||||
segment = newSegment
|
|
||||||
} else {
|
} else {
|
||||||
hostinfo = f.hostMap.QueryIndex(h.RemoteIndex)
|
hostinfo = f.hostMap.QueryIndex(h.RemoteIndex)
|
||||||
}
|
}
|
||||||
@@ -139,13 +60,74 @@ func (f *Interface) readOutsideSegment(via ViaSender, segment []byte, out *packe
|
|||||||
|
|
||||||
switch h.Subtype {
|
switch h.Subtype {
|
||||||
case header.MessageNone:
|
case header.MessageNone:
|
||||||
if !f.decryptToTunDelayWrite(hostinfo, h.MessageCounter, out, segment, s.fwPacket, s.nb, q, localCache, now) {
|
if !f.decryptToTun(hostinfo, h.MessageCounter, out, packet, fwPacket, nb, q, localCache) {
|
||||||
out.DestroyLastSegment() //prevent a rejected segment from being used
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
case header.MessageRelay:
|
case header.MessageRelay:
|
||||||
f.l.Error("relayed messages cannot contain relay messages, dropping packet")
|
// The entire body is sent as AD, not encrypted.
|
||||||
return
|
// The packet consists of a 16-byte parsed Nebula header, Associated Data-protected payload, and a trailing 16-byte AEAD signature value.
|
||||||
|
// The packet is guaranteed to be at least 16 bytes at this point, b/c it got past the h.Parse() call above. If it's
|
||||||
|
// otherwise malformed (meaning, there is no trailing 16 byte AEAD value), then this will result in at worst a 0-length slice
|
||||||
|
// which will gracefully fail in the DecryptDanger call.
|
||||||
|
signedPayload := packet[:len(packet)-hostinfo.ConnectionState.dKey.Overhead()]
|
||||||
|
signatureValue := packet[len(packet)-hostinfo.ConnectionState.dKey.Overhead():]
|
||||||
|
out, err = hostinfo.ConnectionState.dKey.DecryptDanger(out, signedPayload, signatureValue, h.MessageCounter, nb)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// Successfully validated the thing. Get rid of the Relay header.
|
||||||
|
signedPayload = signedPayload[header.Len:]
|
||||||
|
// Pull the Roaming parts up here, and return in all call paths.
|
||||||
|
f.handleHostRoaming(hostinfo, via)
|
||||||
|
// Track usage of both the HostInfo and the Relay for the received & authenticated packet
|
||||||
|
f.connectionManager.In(hostinfo)
|
||||||
|
f.connectionManager.RelayUsed(h.RemoteIndex)
|
||||||
|
|
||||||
|
relay, ok := hostinfo.relayState.QueryRelayForByIdx(h.RemoteIndex)
|
||||||
|
if !ok {
|
||||||
|
// The only way this happens is if hostmap has an index to the correct HostInfo, but the HostInfo is missing
|
||||||
|
// its internal mapping. This should never happen.
|
||||||
|
hostinfo.logger(f.l).WithFields(logrus.Fields{"vpnAddrs": hostinfo.vpnAddrs, "remoteIndex": h.RemoteIndex}).Error("HostInfo missing remote relay index")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
switch relay.Type {
|
||||||
|
case TerminalType:
|
||||||
|
// If I am the target of this relay, process the unwrapped packet
|
||||||
|
// From this recursive point, all these variables are 'burned'. We shouldn't rely on them again.
|
||||||
|
via = ViaSender{
|
||||||
|
UdpAddr: via.UdpAddr,
|
||||||
|
relayHI: hostinfo,
|
||||||
|
remoteIdx: relay.RemoteIndex,
|
||||||
|
relay: relay,
|
||||||
|
IsRelayed: true,
|
||||||
|
}
|
||||||
|
f.readOutsidePackets(via, out[:0], signedPayload, h, fwPacket, lhf, nb, q, localCache)
|
||||||
|
return
|
||||||
|
case ForwardingType:
|
||||||
|
// Find the target HostInfo relay object
|
||||||
|
targetHI, targetRelay, err := f.hostMap.QueryVpnAddrsRelayFor(hostinfo.vpnAddrs, relay.PeerAddr)
|
||||||
|
if err != nil {
|
||||||
|
hostinfo.logger(f.l).WithField("relayTo", relay.PeerAddr).WithError(err).WithField("hostinfo.vpnAddrs", hostinfo.vpnAddrs).Info("Failed to find target host info by ip")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// If that relay is Established, forward the payload through it
|
||||||
|
if targetRelay.State == Established {
|
||||||
|
switch targetRelay.Type {
|
||||||
|
case ForwardingType:
|
||||||
|
// Forward this packet through the relay tunnel
|
||||||
|
// Find the target HostInfo
|
||||||
|
f.SendVia(targetHI, targetRelay, signedPayload, nb, out, false)
|
||||||
|
return
|
||||||
|
case TerminalType:
|
||||||
|
hostinfo.logger(f.l).Error("Unexpected Relay Type of Terminal")
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
hostinfo.logger(f.l).WithFields(logrus.Fields{"relayTo": relay.PeerAddr, "relayFrom": hostinfo.vpnAddrs[0], "targetRelayState": targetRelay.State}).Info("Unexpected target relay state")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
case header.LightHouse:
|
case header.LightHouse:
|
||||||
@@ -154,14 +136,15 @@ func (f *Interface) readOutsideSegment(via ViaSender, segment []byte, out *packe
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
d, err := f.decrypt(hostinfo, h.MessageCounter, s.scratch, segment, h, s.nb)
|
d, err := f.decrypt(hostinfo, h.MessageCounter, out, packet, h, nb)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
hostinfo.logger(f.l).WithError(err).WithField("udpAddr", via.UdpAddr).
|
hostinfo.logger(f.l).WithError(err).WithField("from", via).
|
||||||
WithField("packet", segment).
|
WithField("packet", packet).
|
||||||
Error("Failed to decrypt lighthouse packet")
|
Error("Failed to decrypt lighthouse packet")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//TODO: assert via is not relayed
|
||||||
lhf.HandleRequest(via.UdpAddr, hostinfo.vpnAddrs, d, f)
|
lhf.HandleRequest(via.UdpAddr, hostinfo.vpnAddrs, d, f)
|
||||||
|
|
||||||
// Fallthrough to the bottom to record incoming traffic
|
// Fallthrough to the bottom to record incoming traffic
|
||||||
@@ -172,10 +155,10 @@ func (f *Interface) readOutsideSegment(via ViaSender, segment []byte, out *packe
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
d, err := f.decrypt(hostinfo, h.MessageCounter, s.scratch, segment, h, s.nb)
|
d, err := f.decrypt(hostinfo, h.MessageCounter, out, packet, h, nb)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
hostinfo.logger(f.l).WithError(err).WithField("udpAddr", via).
|
hostinfo.logger(f.l).WithError(err).WithField("from", via).
|
||||||
WithField("packet", segment).
|
WithField("packet", packet).
|
||||||
Error("Failed to decrypt test packet")
|
Error("Failed to decrypt test packet")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -184,7 +167,7 @@ func (f *Interface) readOutsideSegment(via ViaSender, segment []byte, out *packe
|
|||||||
// This testRequest might be from TryPromoteBest, so we should roam
|
// This testRequest might be from TryPromoteBest, so we should roam
|
||||||
// to the new IP address before responding
|
// to the new IP address before responding
|
||||||
f.handleHostRoaming(hostinfo, via)
|
f.handleHostRoaming(hostinfo, via)
|
||||||
f.send(header.Test, header.TestReply, ci, hostinfo, d, s.nb, s.scratch)
|
f.send(header.Test, header.TestReply, ci, hostinfo, d, nb, out)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fallthrough to the bottom to record incoming traffic
|
// Fallthrough to the bottom to record incoming traffic
|
||||||
@@ -194,7 +177,7 @@ func (f *Interface) readOutsideSegment(via ViaSender, segment []byte, out *packe
|
|||||||
|
|
||||||
case header.Handshake:
|
case header.Handshake:
|
||||||
f.messageMetrics.Rx(h.Type, h.Subtype, 1)
|
f.messageMetrics.Rx(h.Type, h.Subtype, 1)
|
||||||
f.handshakeManager.HandleIncoming(via, segment, h)
|
f.handshakeManager.HandleIncoming(via, packet, h)
|
||||||
return
|
return
|
||||||
|
|
||||||
case header.RecvError:
|
case header.RecvError:
|
||||||
@@ -208,7 +191,7 @@ func (f *Interface) readOutsideSegment(via ViaSender, segment []byte, out *packe
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
hostinfo.logger(f.l).WithField("udpAddr", via).
|
hostinfo.logger(f.l).WithField("from", via).
|
||||||
Info("Close tunnel received, tearing down.")
|
Info("Close tunnel received, tearing down.")
|
||||||
|
|
||||||
f.closeTunnel(hostinfo)
|
f.closeTunnel(hostinfo)
|
||||||
@@ -219,10 +202,10 @@ func (f *Interface) readOutsideSegment(via ViaSender, segment []byte, out *packe
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
d, err := f.decrypt(hostinfo, h.MessageCounter, s.scratch, segment, h, s.nb)
|
d, err := f.decrypt(hostinfo, h.MessageCounter, out, packet, h, nb)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
hostinfo.logger(f.l).WithError(err).WithField("udpAddr", via).
|
hostinfo.logger(f.l).WithError(err).WithField("from", via).
|
||||||
WithField("packet", segment).
|
WithField("packet", packet).
|
||||||
Error("Failed to decrypt Control packet")
|
Error("Failed to decrypt Control packet")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -240,28 +223,6 @@ func (f *Interface) readOutsideSegment(via ViaSender, segment []byte, out *packe
|
|||||||
f.connectionManager.In(hostinfo)
|
f.connectionManager.In(hostinfo)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *Interface) readOutsidePacketsMany(packets []*packet.UDPPacket, out []*packet.OutPacket, lhf *LightHouseHandler, s *Scratches, q int, localCache firewall.ConntrackCache, now time.Time) {
|
|
||||||
for i, pkt := range packets {
|
|
||||||
via := ViaSender{UdpAddr: pkt.AddrPort()}
|
|
||||||
|
|
||||||
//l.Error("in packet ", header, packet[HeaderLen:])
|
|
||||||
if f.myVpnNetworksTable.Contains(via.UdpAddr.Addr()) {
|
|
||||||
if f.l.Level >= logrus.DebugLevel {
|
|
||||||
f.l.WithField("from", via).Debug("Refusing to process double encrypted packet")
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
for segment := range pkt.Segments() {
|
|
||||||
f.readOutsideSegment(via, segment, out[i], lhf, s, q, localCache, now)
|
|
||||||
}
|
|
||||||
//_, err := f.readers[q].WriteOne(out[i], false, q)
|
|
||||||
//if err != nil {
|
|
||||||
// f.l.WithError(err).Error("Failed to write packet")
|
|
||||||
//}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// closeTunnel closes a tunnel locally, it does not send a closeTunnel packet to the remote
|
// closeTunnel closes a tunnel locally, it does not send a closeTunnel packet to the remote
|
||||||
func (f *Interface) closeTunnel(hostInfo *HostInfo) {
|
func (f *Interface) closeTunnel(hostInfo *HostInfo) {
|
||||||
final := f.hostMap.DeleteHostInfo(hostInfo)
|
final := f.hostMap.DeleteHostInfo(hostInfo)
|
||||||
@@ -332,11 +293,11 @@ func newPacket(data []byte, incoming bool, fp *firewall.Packet) error {
|
|||||||
return ErrPacketTooShort
|
return ErrPacketTooShort
|
||||||
}
|
}
|
||||||
|
|
||||||
//version := int((data[0] >> 4) & 0x0f)
|
version := int((data[0] >> 4) & 0x0f)
|
||||||
switch data[0] & 0xf0 {
|
switch version {
|
||||||
case ipv4.Version << 4:
|
case ipv4.Version:
|
||||||
return parseV4(data, incoming, fp)
|
return parseV4(data, incoming, fp)
|
||||||
case ipv6.Version << 4:
|
case ipv6.Version:
|
||||||
return parseV6(data, incoming, fp)
|
return parseV6(data, incoming, fp)
|
||||||
}
|
}
|
||||||
return ErrUnknownIPVersion
|
return ErrUnknownIPVersion
|
||||||
@@ -366,13 +327,29 @@ func parseV6(data []byte, incoming bool, fp *firewall.Packet) error {
|
|||||||
proto := layers.IPProtocol(data[protoAt])
|
proto := layers.IPProtocol(data[protoAt])
|
||||||
|
|
||||||
switch proto {
|
switch proto {
|
||||||
case layers.IPProtocolICMPv6, layers.IPProtocolESP, layers.IPProtocolNoNextHeader:
|
case layers.IPProtocolESP, layers.IPProtocolNoNextHeader:
|
||||||
fp.Protocol = uint8(proto)
|
fp.Protocol = uint8(proto)
|
||||||
fp.RemotePort = 0
|
fp.RemotePort = 0
|
||||||
fp.LocalPort = 0
|
fp.LocalPort = 0
|
||||||
fp.Fragment = false
|
fp.Fragment = false
|
||||||
return nil
|
return nil
|
||||||
|
|
||||||
|
case layers.IPProtocolICMPv6:
|
||||||
|
if dataLen < offset+6 {
|
||||||
|
return ErrIPv6PacketTooShort
|
||||||
|
}
|
||||||
|
fp.Protocol = uint8(proto)
|
||||||
|
fp.LocalPort = 0 //incoming vs outgoing doesn't matter for icmpv6
|
||||||
|
icmptype := data[offset+1]
|
||||||
|
switch icmptype {
|
||||||
|
case layers.ICMPv6TypeEchoRequest, layers.ICMPv6TypeEchoReply:
|
||||||
|
fp.RemotePort = binary.BigEndian.Uint16(data[offset+4 : offset+6]) //identifier
|
||||||
|
default:
|
||||||
|
fp.RemotePort = 0
|
||||||
|
}
|
||||||
|
fp.Fragment = false
|
||||||
|
return nil
|
||||||
|
|
||||||
case layers.IPProtocolTCP, layers.IPProtocolUDP:
|
case layers.IPProtocolTCP, layers.IPProtocolUDP:
|
||||||
if dataLen < offset+4 {
|
if dataLen < offset+4 {
|
||||||
return ErrIPv6PacketTooShort
|
return ErrIPv6PacketTooShort
|
||||||
@@ -462,34 +439,38 @@ func parseV4(data []byte, incoming bool, fp *firewall.Packet) error {
|
|||||||
|
|
||||||
// Accounting for a variable header length, do we have enough data for our src/dst tuples?
|
// Accounting for a variable header length, do we have enough data for our src/dst tuples?
|
||||||
minLen := ihl
|
minLen := ihl
|
||||||
if !fp.Fragment && fp.Protocol != firewall.ProtoICMP {
|
if !fp.Fragment {
|
||||||
minLen += minFwPacketLen
|
if fp.Protocol == firewall.ProtoICMP {
|
||||||
|
minLen += minFwPacketLen + 2
|
||||||
|
} else {
|
||||||
|
minLen += minFwPacketLen
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(data) < minLen {
|
if len(data) < minLen {
|
||||||
return ErrIPv4InvalidHeaderLength
|
return ErrIPv4InvalidHeaderLength
|
||||||
}
|
}
|
||||||
|
|
||||||
// Firewall packets are locally oriented
|
if incoming { // Firewall packets are locally oriented
|
||||||
if incoming {
|
|
||||||
fp.RemoteAddr, _ = netip.AddrFromSlice(data[12:16])
|
fp.RemoteAddr, _ = netip.AddrFromSlice(data[12:16])
|
||||||
fp.LocalAddr, _ = netip.AddrFromSlice(data[16:20])
|
fp.LocalAddr, _ = netip.AddrFromSlice(data[16:20])
|
||||||
if fp.Fragment || fp.Protocol == firewall.ProtoICMP {
|
|
||||||
fp.RemotePort = 0
|
|
||||||
fp.LocalPort = 0
|
|
||||||
} else {
|
|
||||||
fp.RemotePort = binary.BigEndian.Uint16(data[ihl : ihl+2])
|
|
||||||
fp.LocalPort = binary.BigEndian.Uint16(data[ihl+2 : ihl+4])
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
fp.LocalAddr, _ = netip.AddrFromSlice(data[12:16])
|
fp.LocalAddr, _ = netip.AddrFromSlice(data[12:16])
|
||||||
fp.RemoteAddr, _ = netip.AddrFromSlice(data[16:20])
|
fp.RemoteAddr, _ = netip.AddrFromSlice(data[16:20])
|
||||||
if fp.Fragment || fp.Protocol == firewall.ProtoICMP {
|
}
|
||||||
fp.RemotePort = 0
|
|
||||||
fp.LocalPort = 0
|
if fp.Fragment {
|
||||||
} else {
|
fp.RemotePort = 0
|
||||||
fp.LocalPort = binary.BigEndian.Uint16(data[ihl : ihl+2])
|
fp.LocalPort = 0
|
||||||
fp.RemotePort = binary.BigEndian.Uint16(data[ihl+2 : ihl+4])
|
} else if fp.Protocol == firewall.ProtoICMP { //note that orientation doesn't matter on ICMP
|
||||||
}
|
fp.RemotePort = binary.BigEndian.Uint16(data[ihl+4 : ihl+6]) //identifier
|
||||||
|
fp.LocalPort = 0 //code would be uint16(data[ihl+1])
|
||||||
|
} else if incoming {
|
||||||
|
fp.RemotePort = binary.BigEndian.Uint16(data[ihl : ihl+2]) //src port
|
||||||
|
fp.LocalPort = binary.BigEndian.Uint16(data[ihl+2 : ihl+4]) //dst port
|
||||||
|
} else {
|
||||||
|
fp.LocalPort = binary.BigEndian.Uint16(data[ihl : ihl+2]) //src port
|
||||||
|
fp.RemotePort = binary.BigEndian.Uint16(data[ihl+2 : ihl+4]) //dst port
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
@@ -511,23 +492,16 @@ func (f *Interface) decrypt(hostinfo *HostInfo, mc uint64, out []byte, packet []
|
|||||||
return out, nil
|
return out, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *Interface) decryptToTunDelayWrite(hostinfo *HostInfo, messageCounter uint64, out *packet.OutPacket, inSegment []byte, fwPacket *firewall.Packet, nb []byte, q int, localCache firewall.ConntrackCache, now time.Time) bool {
|
func (f *Interface) decryptToTun(hostinfo *HostInfo, messageCounter uint64, out []byte, packet []byte, fwPacket *firewall.Packet, nb []byte, q int, localCache firewall.ConntrackCache) bool {
|
||||||
var err error
|
var err error
|
||||||
|
|
||||||
seg, err := f.readers[q].AllocSeg(out, q)
|
out, err = hostinfo.ConnectionState.dKey.DecryptDanger(out, packet[:header.Len], packet[header.Len:], messageCounter, nb)
|
||||||
if err != nil {
|
|
||||||
f.l.WithError(err).Errorln("decryptToTunDelayWrite: failed to allocate segment")
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
out.SegmentPayloads[seg] = out.SegmentPayloads[seg][:0]
|
|
||||||
out.SegmentPayloads[seg], err = hostinfo.ConnectionState.dKey.DecryptDanger(out.SegmentPayloads[seg], inSegment[:header.Len], inSegment[header.Len:], messageCounter, nb)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
hostinfo.logger(f.l).WithError(err).Error("Failed to decrypt packet")
|
hostinfo.logger(f.l).WithError(err).Error("Failed to decrypt packet")
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
err = newPacket(out.SegmentPayloads[seg], true, fwPacket)
|
err = newPacket(out, true, fwPacket)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
hostinfo.logger(f.l).WithError(err).WithField("packet", out).
|
hostinfo.logger(f.l).WithError(err).WithField("packet", out).
|
||||||
Warnf("Error while validating inbound packet")
|
Warnf("Error while validating inbound packet")
|
||||||
@@ -540,11 +514,11 @@ func (f *Interface) decryptToTunDelayWrite(hostinfo *HostInfo, messageCounter ui
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
dropReason := f.firewall.Drop(*fwPacket, true, hostinfo, f.pki.GetCAPool(), localCache, now)
|
dropReason := f.firewall.Drop(*fwPacket, out, true, hostinfo, f.pki.GetCAPool(), localCache)
|
||||||
if dropReason != nil {
|
if dropReason != nil {
|
||||||
// NOTE: We give `packet` as the `out` here since we already decrypted from it and we don't need it anymore
|
// NOTE: We give `packet` as the `out` here since we already decrypted from it and we don't need it anymore
|
||||||
// This gives us a buffer to build the reject packet in
|
// This gives us a buffer to build the reject packet in
|
||||||
f.rejectOutside(out.SegmentPayloads[seg], hostinfo.ConnectionState, hostinfo, nb, inSegment, q)
|
f.rejectOutside(out, hostinfo.ConnectionState, hostinfo, nb, packet, q)
|
||||||
if f.l.Level >= logrus.DebugLevel {
|
if f.l.Level >= logrus.DebugLevel {
|
||||||
hostinfo.logger(f.l).WithField("fwPacket", fwPacket).
|
hostinfo.logger(f.l).WithField("fwPacket", fwPacket).
|
||||||
WithField("reason", dropReason).
|
WithField("reason", dropReason).
|
||||||
@@ -554,12 +528,15 @@ func (f *Interface) decryptToTunDelayWrite(hostinfo *HostInfo, messageCounter ui
|
|||||||
}
|
}
|
||||||
|
|
||||||
f.connectionManager.In(hostinfo)
|
f.connectionManager.In(hostinfo)
|
||||||
out.Segments[seg] = out.Segments[seg][:len(out.SegmentHeaders[seg])+len(out.SegmentPayloads[seg])]
|
_, err = f.readers[q].Write(out)
|
||||||
|
if err != nil {
|
||||||
|
f.l.WithError(err).Error("Failed to write to tun")
|
||||||
|
}
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *Interface) maybeSendRecvError(endpoint netip.AddrPort, index uint32) {
|
func (f *Interface) maybeSendRecvError(endpoint netip.AddrPort, index uint32) {
|
||||||
if f.sendRecvErrorConfig.ShouldSendRecvError(endpoint) {
|
if f.sendRecvErrorConfig.ShouldRecvError(endpoint) {
|
||||||
f.sendRecvError(endpoint, index)
|
f.sendRecvError(endpoint, index)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -577,6 +554,13 @@ func (f *Interface) sendRecvError(endpoint netip.AddrPort, index uint32) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (f *Interface) handleRecvError(addr netip.AddrPort, h *header.H) {
|
func (f *Interface) handleRecvError(addr netip.AddrPort, h *header.H) {
|
||||||
|
if !f.acceptRecvErrorConfig.ShouldRecvError(addr) {
|
||||||
|
f.l.WithField("index", h.RemoteIndex).
|
||||||
|
WithField("udpAddr", addr).
|
||||||
|
Debug("Recv error received, ignoring")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
if f.l.Level >= logrus.DebugLevel {
|
if f.l.Level >= logrus.DebugLevel {
|
||||||
f.l.WithField("index", h.RemoteIndex).
|
f.l.WithField("index", h.RemoteIndex).
|
||||||
WithField("udpAddr", addr).
|
WithField("udpAddr", addr).
|
||||||
|
|||||||
+17
-10
@@ -155,6 +155,7 @@ func Test_newPacket_v6(t *testing.T) {
|
|||||||
// next layer, missing length byte
|
// next layer, missing length byte
|
||||||
err = newPacket(buffer.Bytes()[:49], true, p)
|
err = newPacket(buffer.Bytes()[:49], true, p)
|
||||||
require.ErrorIs(t, err, ErrIPv6CouldNotFindPayload)
|
require.ErrorIs(t, err, ErrIPv6CouldNotFindPayload)
|
||||||
|
err = nil
|
||||||
|
|
||||||
// A good ICMP packet
|
// A good ICMP packet
|
||||||
ip = layers.IPv6{
|
ip = layers.IPv6{
|
||||||
@@ -165,20 +166,26 @@ func Test_newPacket_v6(t *testing.T) {
|
|||||||
DstIP: net.IPv6linklocalallnodes,
|
DstIP: net.IPv6linklocalallnodes,
|
||||||
}
|
}
|
||||||
|
|
||||||
icmp := layers.ICMPv6{}
|
icmp := layers.ICMPv6{
|
||||||
|
TypeCode: layers.ICMPv6TypeEchoRequest,
|
||||||
buffer.Clear()
|
Checksum: 0x1234,
|
||||||
err = gopacket.SerializeLayers(buffer, opt, &ip, &icmp)
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
err = newPacket(buffer.Bytes(), true, p)
|
buffer.Clear()
|
||||||
require.NoError(t, err)
|
require.NoError(t, gopacket.SerializeLayers(buffer, opt, &ip, &icmp))
|
||||||
|
require.Error(t, newPacket(buffer.Bytes(), true, p))
|
||||||
|
|
||||||
|
buffer.Clear()
|
||||||
|
echo := layers.ICMPv6Echo{
|
||||||
|
Identifier: 0xabcd,
|
||||||
|
SeqNumber: 1234,
|
||||||
|
}
|
||||||
|
require.NoError(t, gopacket.SerializeLayers(buffer, opt, &ip, &icmp, &echo))
|
||||||
|
require.NoError(t, newPacket(buffer.Bytes(), true, p))
|
||||||
assert.Equal(t, uint8(layers.IPProtocolICMPv6), p.Protocol)
|
assert.Equal(t, uint8(layers.IPProtocolICMPv6), p.Protocol)
|
||||||
assert.Equal(t, netip.MustParseAddr("ff02::2"), p.RemoteAddr)
|
assert.Equal(t, netip.MustParseAddr("ff02::2"), p.RemoteAddr)
|
||||||
assert.Equal(t, netip.MustParseAddr("ff02::1"), p.LocalAddr)
|
assert.Equal(t, netip.MustParseAddr("ff02::1"), p.LocalAddr)
|
||||||
assert.Equal(t, uint16(0), p.RemotePort)
|
assert.Equal(t, uint16(0xabcd), p.RemotePort)
|
||||||
assert.Equal(t, uint16(0), p.LocalPort)
|
assert.Equal(t, uint16(0), p.LocalPort)
|
||||||
assert.False(t, p.Fragment)
|
assert.False(t, p.Fragment)
|
||||||
|
|
||||||
@@ -574,7 +581,7 @@ func BenchmarkParseV6(b *testing.B) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
evilBytes := buffer.Bytes()
|
evilBytes := buffer.Bytes()
|
||||||
for i := 0; i < 200; i++ {
|
for range 200 {
|
||||||
evilBytes = append(evilBytes, hopHeader...)
|
evilBytes = append(evilBytes, hopHeader...)
|
||||||
}
|
}
|
||||||
evilBytes = append(evilBytes, lastHopHeader...)
|
evilBytes = append(evilBytes, lastHopHeader...)
|
||||||
|
|||||||
+6
-2
@@ -1,17 +1,21 @@
|
|||||||
package overlay
|
package overlay
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"io"
|
||||||
"net/netip"
|
"net/netip"
|
||||||
|
|
||||||
"github.com/slackhq/nebula/routing"
|
"github.com/slackhq/nebula/routing"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Device interface {
|
type Device interface {
|
||||||
TunDev
|
io.ReadWriteCloser
|
||||||
Activate() error
|
Activate() error
|
||||||
Networks() []netip.Prefix
|
Networks() []netip.Prefix
|
||||||
|
UnsafeNetworks() []netip.Prefix
|
||||||
|
UnsafeIPv4OriginAddress() netip.Prefix
|
||||||
|
SNATAddress() netip.Prefix
|
||||||
Name() string
|
Name() string
|
||||||
RoutesFor(netip.Addr) routing.Gateways
|
RoutesFor(netip.Addr) routing.Gateways
|
||||||
SupportsMultiqueue() bool
|
SupportsMultiqueue() bool
|
||||||
NewMultiQueueReader() (TunDev, error)
|
NewMultiQueueReader() (io.ReadWriteCloser, error)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,91 +0,0 @@
|
|||||||
package eventfd
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/binary"
|
|
||||||
"syscall"
|
|
||||||
|
|
||||||
"golang.org/x/sys/unix"
|
|
||||||
)
|
|
||||||
|
|
||||||
type EventFD struct {
|
|
||||||
fd int
|
|
||||||
buf [8]byte
|
|
||||||
}
|
|
||||||
|
|
||||||
func New() (EventFD, error) {
|
|
||||||
fd, err := unix.Eventfd(0, unix.EFD_NONBLOCK)
|
|
||||||
if err != nil {
|
|
||||||
return EventFD{}, err
|
|
||||||
}
|
|
||||||
return EventFD{
|
|
||||||
fd: fd,
|
|
||||||
buf: [8]byte{},
|
|
||||||
}, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *EventFD) Kick() error {
|
|
||||||
binary.LittleEndian.PutUint64(e.buf[:], 1) //is this right???
|
|
||||||
_, err := syscall.Write(int(e.fd), e.buf[:])
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *EventFD) Close() error {
|
|
||||||
if e.fd != 0 {
|
|
||||||
return unix.Close(e.fd)
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *EventFD) FD() int {
|
|
||||||
return e.fd
|
|
||||||
}
|
|
||||||
|
|
||||||
type Epoll struct {
|
|
||||||
fd int
|
|
||||||
buf [8]byte
|
|
||||||
events []syscall.EpollEvent
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewEpoll() (Epoll, error) {
|
|
||||||
fd, err := unix.EpollCreate1(0)
|
|
||||||
if err != nil {
|
|
||||||
return Epoll{}, err
|
|
||||||
}
|
|
||||||
return Epoll{
|
|
||||||
fd: fd,
|
|
||||||
buf: [8]byte{},
|
|
||||||
events: make([]syscall.EpollEvent, 1),
|
|
||||||
}, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (ep *Epoll) AddEvent(fdToAdd int) error {
|
|
||||||
event := syscall.EpollEvent{
|
|
||||||
Events: syscall.EPOLLIN,
|
|
||||||
Fd: int32(fdToAdd),
|
|
||||||
}
|
|
||||||
return syscall.EpollCtl(ep.fd, syscall.EPOLL_CTL_ADD, fdToAdd, &event)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (ep *Epoll) Block() (int, error) {
|
|
||||||
n, err := syscall.EpollWait(ep.fd, ep.events, -1)
|
|
||||||
if err != nil {
|
|
||||||
//goland:noinspection GoDirectComparisonOfErrors
|
|
||||||
if err == syscall.EINTR {
|
|
||||||
return 0, nil //??
|
|
||||||
}
|
|
||||||
return -1, err
|
|
||||||
}
|
|
||||||
return n, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (ep *Epoll) Clear() error {
|
|
||||||
_, err := syscall.Read(int(ep.events[0].Fd), ep.buf[:])
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
func (ep *Epoll) Close() error {
|
|
||||||
if ep.fd != 0 {
|
|
||||||
return unix.Close(ep.fd)
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
package overlay
|
|
||||||
|
|
||||||
//import (
|
|
||||||
// "github.com/slackhq/nebula/util/virtio"
|
|
||||||
//)
|
|
||||||
|
|
||||||
//type VirtIOPacket struct {
|
|
||||||
// Payload []byte
|
|
||||||
// Header virtio.NetHdr
|
|
||||||
// Chains []uint16
|
|
||||||
// ChainRefs [][]byte
|
|
||||||
//}
|
|
||||||
//
|
|
||||||
//func NewVIO() *VirtIOPacket {
|
|
||||||
// out := new(VirtIOPacket)
|
|
||||||
// out.Payload = nil
|
|
||||||
// out.ChainRefs = make([][]byte, 0, 4)
|
|
||||||
// out.Chains = make([]uint16, 0, 8)
|
|
||||||
// return out
|
|
||||||
//}
|
|
||||||
//
|
|
||||||
//func (v *VirtIOPacket) Reset() {
|
|
||||||
// v.Payload = nil
|
|
||||||
// v.ChainRefs = v.ChainRefs[:0]
|
|
||||||
// v.Chains = v.Chains[:0]
|
|
||||||
//}
|
|
||||||
|
|
||||||
// TunPacket is formerly VirtIOPacket
|
|
||||||
type TunPacket interface {
|
|
||||||
SetPayload([]byte)
|
|
||||||
GetPayload() []byte
|
|
||||||
}
|
|
||||||
type OutPacket interface {
|
|
||||||
SetPayload([]byte)
|
|
||||||
GetPayload() []byte
|
|
||||||
}
|
|
||||||
+99
-21
@@ -1,6 +1,7 @@
|
|||||||
package overlay
|
package overlay
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"crypto/rand"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"net"
|
"net"
|
||||||
@@ -8,44 +9,39 @@ import (
|
|||||||
|
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/slackhq/nebula/config"
|
"github.com/slackhq/nebula/config"
|
||||||
"github.com/slackhq/nebula/packet"
|
|
||||||
"github.com/slackhq/nebula/util"
|
"github.com/slackhq/nebula/util"
|
||||||
)
|
)
|
||||||
|
|
||||||
const DefaultMTU = 1300
|
const DefaultMTU = 1300
|
||||||
|
|
||||||
type TunDev interface {
|
type NameError struct {
|
||||||
io.WriteCloser
|
Name string
|
||||||
NewPacketArrays(batchSize int) []TunPacket
|
Underlying error
|
||||||
|
}
|
||||||
|
|
||||||
ReadMany(x []TunPacket, q int) (int, error)
|
func (e *NameError) Error() string {
|
||||||
RecycleRxSeg(pkt TunPacket, kick bool, q int) error
|
return fmt.Sprintf("could not set tun device name: %s because %s", e.Name, e.Underlying)
|
||||||
|
|
||||||
//todo this interface sux
|
|
||||||
AllocSeg(pkt *packet.OutPacket, q int) (int, error)
|
|
||||||
WriteOne(x *packet.OutPacket, kick bool, q int) (int, error)
|
|
||||||
WriteMany(x []*packet.OutPacket, q int) (int, error)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: We may be able to remove routines
|
// TODO: We may be able to remove routines
|
||||||
type DeviceFactory func(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, routines int) (Device, error)
|
type DeviceFactory func(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, unsafeNetworks []netip.Prefix, routines int) (Device, error)
|
||||||
|
|
||||||
func NewDeviceFromConfig(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, routines int) (Device, error) {
|
func NewDeviceFromConfig(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, unsafeNetworks []netip.Prefix, routines int) (Device, error) {
|
||||||
switch {
|
switch {
|
||||||
case c.GetBool("tun.disabled", false):
|
case c.GetBool("tun.disabled", false):
|
||||||
t := newDisabledTun(vpnNetworks, c.GetInt("tun.tx_queue", 500), c.GetBool("stats.message_metrics", false), l)
|
tun := newDisabledTun(vpnNetworks, c.GetInt("tun.tx_queue", 500), c.GetBool("stats.message_metrics", false), l)
|
||||||
return t, nil
|
return tun, nil
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return newTun(c, l, vpnNetworks, routines > 1)
|
return newTun(c, l, vpnNetworks, unsafeNetworks, routines > 1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//func NewFdDeviceFromConfig(fd *int) DeviceFactory {
|
func NewFdDeviceFromConfig(fd *int) DeviceFactory {
|
||||||
// return func(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, routines int) (Device, error) {
|
return func(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, unsafeNetworks []netip.Prefix, routines int) (Device, error) {
|
||||||
// return newTunFromFd(c, l, *fd, vpnNetworks)
|
return newTunFromFd(c, l, *fd, vpnNetworks, unsafeNetworks)
|
||||||
// }
|
}
|
||||||
//}
|
}
|
||||||
|
|
||||||
func getAllRoutesFromConfig(c *config.C, vpnNetworks []netip.Prefix, initial bool) (bool, []Route, error) {
|
func getAllRoutesFromConfig(c *config.C, vpnNetworks []netip.Prefix, initial bool) (bool, []Route, error) {
|
||||||
if !initial && !c.HasChanged("tun.routes") && !c.HasChanged("tun.unsafe_routes") {
|
if !initial && !c.HasChanged("tun.routes") && !c.HasChanged("tun.unsafe_routes") {
|
||||||
@@ -135,3 +131,85 @@ func selectGateway(dest netip.Prefix, gateways []netip.Prefix) (netip.Prefix, er
|
|||||||
|
|
||||||
return netip.Prefix{}, fmt.Errorf("no gateway found for %v in the list of vpn networks", dest)
|
return netip.Prefix{}, fmt.Errorf("no gateway found for %v in the list of vpn networks", dest)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// genLinkLocal generates a random IPv4 link-local address.
|
||||||
|
// If randomizer is nil, it uses rand.Reader to find two random bytes
|
||||||
|
func genLinkLocal(randomizer io.Reader) netip.Prefix {
|
||||||
|
if randomizer == nil {
|
||||||
|
randomizer = rand.Reader
|
||||||
|
}
|
||||||
|
octets := []byte{169, 254, 0, 0}
|
||||||
|
_, _ = randomizer.Read(octets[2:4])
|
||||||
|
return coerceLinkLocal(octets)
|
||||||
|
}
|
||||||
|
|
||||||
|
func coerceLinkLocal(octets []byte) netip.Prefix {
|
||||||
|
if octets[3] == 0 {
|
||||||
|
octets[3] = 1 //please no .0 addresses
|
||||||
|
} else if octets[2] == 255 && octets[3] == 255 {
|
||||||
|
octets[3] = 254 //please no broadcast addresses
|
||||||
|
}
|
||||||
|
out, _ := netip.AddrFromSlice(octets)
|
||||||
|
return netip.PrefixFrom(out, 32)
|
||||||
|
}
|
||||||
|
|
||||||
|
// prepareUnsafeOriginAddr provides the IPv4 address used on IPv6-only clients that need to access IPv4 unsafe routes
|
||||||
|
func prepareUnsafeOriginAddr(d Device, l *logrus.Logger, c *config.C, routes []Route) netip.Prefix {
|
||||||
|
if !d.Networks()[0].Addr().Is6() {
|
||||||
|
return netip.Prefix{} //if we have an IPv4 assignment within the overlay, we don't need an unsafe origin address
|
||||||
|
}
|
||||||
|
|
||||||
|
needed := false
|
||||||
|
for _, route := range routes { //or if we have a route defined into an IPv4 range
|
||||||
|
if route.Cidr.Addr().Is4() {
|
||||||
|
needed = true //todo should this only apply to unsafe routes? almost certainly
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if !needed {
|
||||||
|
return netip.Prefix{}
|
||||||
|
}
|
||||||
|
|
||||||
|
//todo better config name for sure
|
||||||
|
if a := c.GetString("tun.unsafe_origin_address_for_4over6", ""); a != "" {
|
||||||
|
out, err := netip.ParseAddr(a)
|
||||||
|
if err != nil {
|
||||||
|
l.WithField("value", a).WithError(err).Warn("failed to parse tun.unsafe_origin_address_for_4over6, will use a random value")
|
||||||
|
} else if !out.Is4() || !out.IsLinkLocalUnicast() {
|
||||||
|
l.WithField("value", out).Warn("tun.unsafe_origin_address_for_4over6 must be an IPv4 address")
|
||||||
|
} else if out.IsValid() {
|
||||||
|
return netip.PrefixFrom(out, 32)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return genLinkLocal(nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
// prepareSnatAddr provides the address that an IPv6-only unsafe router should use to SNAT traffic before handing it to the operating system
|
||||||
|
func prepareSnatAddr(d Device, l *logrus.Logger, c *config.C) netip.Prefix {
|
||||||
|
if !d.Networks()[0].Addr().Is6() {
|
||||||
|
return netip.Prefix{} //if we have an IPv4 assignment within the overlay, we don't need a snat address
|
||||||
|
}
|
||||||
|
|
||||||
|
needed := false
|
||||||
|
for _, un := range d.UnsafeNetworks() { //if we are an unsafe router for an IPv4 range
|
||||||
|
if un.Addr().Is4() {
|
||||||
|
needed = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if !needed {
|
||||||
|
return netip.Prefix{}
|
||||||
|
}
|
||||||
|
|
||||||
|
if a := c.GetString("tun.snat_address_for_4over6", ""); a != "" {
|
||||||
|
out, err := netip.ParseAddr(a)
|
||||||
|
if err != nil {
|
||||||
|
l.WithField("value", a).WithError(err).Warn("failed to parse tun.snat_address_for_4over6, will use a random value")
|
||||||
|
} else if !out.Is4() || !out.IsLinkLocalUnicast() {
|
||||||
|
l.WithField("value", out).Warn("tun.snat_address_for_4over6 must be an IPv4 address")
|
||||||
|
} else if out.IsValid() {
|
||||||
|
return netip.PrefixFrom(out, 32)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return genLinkLocal(nil)
|
||||||
|
}
|
||||||
|
|||||||
+24
-7
@@ -19,14 +19,16 @@ import (
|
|||||||
|
|
||||||
type tun struct {
|
type tun struct {
|
||||||
io.ReadWriteCloser
|
io.ReadWriteCloser
|
||||||
fd int
|
fd int
|
||||||
vpnNetworks []netip.Prefix
|
vpnNetworks []netip.Prefix
|
||||||
Routes atomic.Pointer[[]Route]
|
unsafeNetworks []netip.Prefix
|
||||||
routeTree atomic.Pointer[bart.Table[routing.Gateways]]
|
unsafeIPv4Origin netip.Prefix
|
||||||
l *logrus.Logger
|
Routes atomic.Pointer[[]Route]
|
||||||
|
routeTree atomic.Pointer[bart.Table[routing.Gateways]]
|
||||||
|
l *logrus.Logger
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTunFromFd(c *config.C, l *logrus.Logger, deviceFd int, vpnNetworks []netip.Prefix) (*tun, error) {
|
func newTunFromFd(c *config.C, l *logrus.Logger, deviceFd int, vpnNetworks []netip.Prefix, unsafeNetworks []netip.Prefix) (*tun, error) {
|
||||||
// XXX Android returns an fd in non-blocking mode which is necessary for shutdown to work properly.
|
// XXX Android returns an fd in non-blocking mode which is necessary for shutdown to work properly.
|
||||||
// Be sure not to call file.Fd() as it will set the fd to blocking mode.
|
// Be sure not to call file.Fd() as it will set the fd to blocking mode.
|
||||||
file := os.NewFile(uintptr(deviceFd), "/dev/net/tun")
|
file := os.NewFile(uintptr(deviceFd), "/dev/net/tun")
|
||||||
@@ -35,6 +37,7 @@ func newTunFromFd(c *config.C, l *logrus.Logger, deviceFd int, vpnNetworks []net
|
|||||||
ReadWriteCloser: file,
|
ReadWriteCloser: file,
|
||||||
fd: deviceFd,
|
fd: deviceFd,
|
||||||
vpnNetworks: vpnNetworks,
|
vpnNetworks: vpnNetworks,
|
||||||
|
unsafeNetworks: unsafeNetworks,
|
||||||
l: l,
|
l: l,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -53,7 +56,7 @@ func newTunFromFd(c *config.C, l *logrus.Logger, deviceFd int, vpnNetworks []net
|
|||||||
return t, nil
|
return t, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTun(_ *config.C, _ *logrus.Logger, _ []netip.Prefix, _ bool) (*tun, error) {
|
func newTun(_ *config.C, _ *logrus.Logger, _ []netip.Prefix, _ []netip.Prefix, _ bool) (*tun, error) {
|
||||||
return nil, fmt.Errorf("newTun not supported in Android")
|
return nil, fmt.Errorf("newTun not supported in Android")
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -76,6 +79,8 @@ func (t *tun) reload(c *config.C, initial bool) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
t.unsafeIPv4Origin = prepareUnsafeOriginAddr(t, t.l, c, routes)
|
||||||
|
|
||||||
routeTree, err := makeRouteTree(t.l, routes, false)
|
routeTree, err := makeRouteTree(t.l, routes, false)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@@ -91,6 +96,18 @@ func (t *tun) Networks() []netip.Prefix {
|
|||||||
return t.vpnNetworks
|
return t.vpnNetworks
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t *tun) UnsafeNetworks() []netip.Prefix {
|
||||||
|
return t.unsafeNetworks
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *tun) UnsafeIPv4OriginAddress() netip.Prefix {
|
||||||
|
return t.unsafeIPv4Origin
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *tun) SNATAddress() netip.Prefix {
|
||||||
|
return netip.Prefix{}
|
||||||
|
}
|
||||||
|
|
||||||
func (t *tun) Name() string {
|
func (t *tun) Name() string {
|
||||||
return "android"
|
return "android"
|
||||||
}
|
}
|
||||||
|
|||||||
+33
-9
@@ -24,13 +24,15 @@ import (
|
|||||||
|
|
||||||
type tun struct {
|
type tun struct {
|
||||||
io.ReadWriteCloser
|
io.ReadWriteCloser
|
||||||
Device string
|
Device string
|
||||||
vpnNetworks []netip.Prefix
|
vpnNetworks []netip.Prefix
|
||||||
DefaultMTU int
|
unsafeNetworks []netip.Prefix
|
||||||
Routes atomic.Pointer[[]Route]
|
unsafeIPv4Origin netip.Prefix
|
||||||
routeTree atomic.Pointer[bart.Table[routing.Gateways]]
|
DefaultMTU int
|
||||||
linkAddr *netroute.LinkAddr
|
Routes atomic.Pointer[[]Route]
|
||||||
l *logrus.Logger
|
routeTree atomic.Pointer[bart.Table[routing.Gateways]]
|
||||||
|
linkAddr *netroute.LinkAddr
|
||||||
|
l *logrus.Logger
|
||||||
|
|
||||||
// cache out buffer since we need to prepend 4 bytes for tun metadata
|
// cache out buffer since we need to prepend 4 bytes for tun metadata
|
||||||
out []byte
|
out []byte
|
||||||
@@ -79,7 +81,7 @@ type ifreqAlias6 struct {
|
|||||||
Lifetime addrLifetime
|
Lifetime addrLifetime
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, _ bool) (*tun, error) {
|
func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, unsafeNetworks []netip.Prefix, _ bool) (*tun, error) {
|
||||||
name := c.GetString("tun.dev", "")
|
name := c.GetString("tun.dev", "")
|
||||||
ifIndex := -1
|
ifIndex := -1
|
||||||
if name != "" && name != "utun" {
|
if name != "" && name != "utun" {
|
||||||
@@ -127,6 +129,7 @@ func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, _ bool) (
|
|||||||
ReadWriteCloser: os.NewFile(uintptr(fd), ""),
|
ReadWriteCloser: os.NewFile(uintptr(fd), ""),
|
||||||
Device: name,
|
Device: name,
|
||||||
vpnNetworks: vpnNetworks,
|
vpnNetworks: vpnNetworks,
|
||||||
|
unsafeNetworks: unsafeNetworks,
|
||||||
DefaultMTU: c.GetInt("tun.mtu", DefaultMTU),
|
DefaultMTU: c.GetInt("tun.mtu", DefaultMTU),
|
||||||
l: l,
|
l: l,
|
||||||
}
|
}
|
||||||
@@ -153,7 +156,7 @@ func (t *tun) deviceBytes() (o [16]byte) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTunFromFd(_ *config.C, _ *logrus.Logger, _ int, _ []netip.Prefix) (*tun, error) {
|
func newTunFromFd(_ *config.C, _ *logrus.Logger, _ int, _ []netip.Prefix, _ []netip.Prefix) (*tun, error) {
|
||||||
return nil, fmt.Errorf("newTunFromFd not supported in Darwin")
|
return nil, fmt.Errorf("newTunFromFd not supported in Darwin")
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -213,6 +216,11 @@ func (t *tun) Activate() error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if t.unsafeIPv4Origin.IsValid() && t.unsafeIPv4Origin.Addr().Is4() {
|
||||||
|
if err = t.activate4(t.unsafeIPv4Origin); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Run the interface
|
// Run the interface
|
||||||
ifrf.Flags = ifrf.Flags | unix.IFF_UP | unix.IFF_RUNNING
|
ifrf.Flags = ifrf.Flags | unix.IFF_UP | unix.IFF_RUNNING
|
||||||
@@ -314,6 +322,10 @@ func (t *tun) reload(c *config.C, initial bool) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if initial {
|
||||||
|
t.unsafeIPv4Origin = prepareUnsafeOriginAddr(t, t.l, c, routes)
|
||||||
|
}
|
||||||
|
|
||||||
routeTree, err := makeRouteTree(t.l, routes, false)
|
routeTree, err := makeRouteTree(t.l, routes, false)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@@ -545,6 +557,18 @@ func (t *tun) Networks() []netip.Prefix {
|
|||||||
return t.vpnNetworks
|
return t.vpnNetworks
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t *tun) UnsafeNetworks() []netip.Prefix {
|
||||||
|
return t.unsafeNetworks
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *tun) UnsafeIPv4OriginAddress() netip.Prefix {
|
||||||
|
return t.unsafeIPv4Origin
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *tun) SNATAddress() netip.Prefix {
|
||||||
|
return netip.Prefix{}
|
||||||
|
}
|
||||||
|
|
||||||
func (t *tun) Name() string {
|
func (t *tun) Name() string {
|
||||||
return t.Device
|
return t.Device
|
||||||
}
|
}
|
||||||
|
|||||||
+12
-31
@@ -9,8 +9,6 @@ import (
|
|||||||
"github.com/rcrowley/go-metrics"
|
"github.com/rcrowley/go-metrics"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/slackhq/nebula/iputil"
|
"github.com/slackhq/nebula/iputil"
|
||||||
"github.com/slackhq/nebula/overlay/virtqueue"
|
|
||||||
"github.com/slackhq/nebula/packet"
|
|
||||||
"github.com/slackhq/nebula/routing"
|
"github.com/slackhq/nebula/routing"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -24,14 +22,6 @@ type disabledTun struct {
|
|||||||
l *logrus.Logger
|
l *logrus.Logger
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *disabledTun) NewPacketArrays(batchSize int) []TunPacket {
|
|
||||||
panic("implement me") //TODO
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*disabledTun) RecycleRxSeg(pkt TunPacket, kick bool, q int) error {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func newDisabledTun(vpnNetworks []netip.Prefix, queueLen int, metricsEnabled bool, l *logrus.Logger) *disabledTun {
|
func newDisabledTun(vpnNetworks []netip.Prefix, queueLen int, metricsEnabled bool, l *logrus.Logger) *disabledTun {
|
||||||
tun := &disabledTun{
|
tun := &disabledTun{
|
||||||
vpnNetworks: vpnNetworks,
|
vpnNetworks: vpnNetworks,
|
||||||
@@ -50,10 +40,6 @@ func newDisabledTun(vpnNetworks []netip.Prefix, queueLen int, metricsEnabled boo
|
|||||||
return tun
|
return tun
|
||||||
}
|
}
|
||||||
|
|
||||||
func (*disabledTun) GetQueues() []*virtqueue.SplitQueue {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*disabledTun) Activate() error {
|
func (*disabledTun) Activate() error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@@ -66,6 +52,17 @@ func (t *disabledTun) Networks() []netip.Prefix {
|
|||||||
return t.vpnNetworks
|
return t.vpnNetworks
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (*disabledTun) UnsafeNetworks() []netip.Prefix {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
func (*disabledTun) SNATAddress() netip.Prefix {
|
||||||
|
return netip.Prefix{}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*disabledTun) UnsafeIPv4OriginAddress() netip.Prefix {
|
||||||
|
return netip.Prefix{}
|
||||||
|
}
|
||||||
|
|
||||||
func (*disabledTun) Name() string {
|
func (*disabledTun) Name() string {
|
||||||
return "disabled"
|
return "disabled"
|
||||||
}
|
}
|
||||||
@@ -123,23 +120,7 @@ func (t *disabledTun) SupportsMultiqueue() bool {
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *disabledTun) AllocSeg(pkt *packet.OutPacket, q int) (int, error) {
|
func (t *disabledTun) NewMultiQueueReader() (io.ReadWriteCloser, error) {
|
||||||
return 0, fmt.Errorf("tun_disabled: AllocSeg not implemented")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *disabledTun) WriteOne(x *packet.OutPacket, kick bool, q int) (int, error) {
|
|
||||||
return 0, fmt.Errorf("tun_disabled: WriteOne not implemented")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *disabledTun) WriteMany(x []*packet.OutPacket, q int) (int, error) {
|
|
||||||
return 0, fmt.Errorf("tun_disabled: WriteMany not implemented")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *disabledTun) ReadMany(b []TunPacket, _ int) (int, error) {
|
|
||||||
return t.Read(b[0].GetPayload())
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *disabledTun) NewMultiQueueReader() (TunDev, error) {
|
|
||||||
return t, nil
|
return t, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+35
-16
@@ -86,14 +86,16 @@ type ifreqAlias6 struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type tun struct {
|
type tun struct {
|
||||||
Device string
|
Device string
|
||||||
vpnNetworks []netip.Prefix
|
vpnNetworks []netip.Prefix
|
||||||
MTU int
|
unsafeNetworks []netip.Prefix
|
||||||
Routes atomic.Pointer[[]Route]
|
unsafeIPv4Origin netip.Prefix
|
||||||
routeTree atomic.Pointer[bart.Table[routing.Gateways]]
|
MTU int
|
||||||
linkAddr *netroute.LinkAddr
|
Routes atomic.Pointer[[]Route]
|
||||||
l *logrus.Logger
|
routeTree atomic.Pointer[bart.Table[routing.Gateways]]
|
||||||
devFd int
|
linkAddr *netroute.LinkAddr
|
||||||
|
l *logrus.Logger
|
||||||
|
devFd int
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *tun) Read(to []byte) (int, error) {
|
func (t *tun) Read(to []byte) (int, error) {
|
||||||
@@ -199,11 +201,11 @@ func (t *tun) Close() error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTunFromFd(_ *config.C, _ *logrus.Logger, _ int, _ []netip.Prefix) (*tun, error) {
|
func newTunFromFd(_ *config.C, _ *logrus.Logger, _ int, _ []netip.Prefix, _ []netip.Prefix) (*tun, error) {
|
||||||
return nil, fmt.Errorf("newTunFromFd not supported in FreeBSD")
|
return nil, fmt.Errorf("newTunFromFd not supported in FreeBSD")
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, _ bool) (*tun, error) {
|
func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, unsafeNetworks []netip.Prefix, _ bool) (*tun, error) {
|
||||||
// Try to open existing tun device
|
// Try to open existing tun device
|
||||||
var fd int
|
var fd int
|
||||||
var err error
|
var err error
|
||||||
@@ -266,15 +268,16 @@ func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, _ bool) (
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Set the device name
|
// Set the device name
|
||||||
ioctl(fd, syscall.SIOCSIFNAME, uintptr(unsafe.Pointer(&ifrr)))
|
_ = ioctl(fd, syscall.SIOCSIFNAME, uintptr(unsafe.Pointer(&ifrr)))
|
||||||
}
|
}
|
||||||
|
|
||||||
t := &tun{
|
t := &tun{
|
||||||
Device: deviceName,
|
Device: deviceName,
|
||||||
vpnNetworks: vpnNetworks,
|
vpnNetworks: vpnNetworks,
|
||||||
MTU: c.GetInt("tun.mtu", DefaultMTU),
|
unsafeNetworks: unsafeNetworks,
|
||||||
l: l,
|
MTU: c.GetInt("tun.mtu", DefaultMTU),
|
||||||
devFd: fd,
|
l: l,
|
||||||
|
devFd: fd,
|
||||||
}
|
}
|
||||||
|
|
||||||
err = t.reload(c, true)
|
err = t.reload(c, true)
|
||||||
@@ -410,6 +413,10 @@ func (t *tun) reload(c *config.C, initial bool) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if initial {
|
||||||
|
t.unsafeIPv4Origin = prepareUnsafeOriginAddr(t, t.l, c, routes)
|
||||||
|
}
|
||||||
|
|
||||||
routeTree, err := makeRouteTree(t.l, routes, false)
|
routeTree, err := makeRouteTree(t.l, routes, false)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@@ -446,6 +453,18 @@ func (t *tun) Networks() []netip.Prefix {
|
|||||||
return t.vpnNetworks
|
return t.vpnNetworks
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t *tun) UnsafeNetworks() []netip.Prefix {
|
||||||
|
return t.unsafeNetworks
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *tun) UnsafeIPv4OriginAddress() netip.Prefix {
|
||||||
|
return t.unsafeIPv4Origin
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *tun) SNATAddress() netip.Prefix {
|
||||||
|
return netip.Prefix{}
|
||||||
|
}
|
||||||
|
|
||||||
func (t *tun) Name() string {
|
func (t *tun) Name() string {
|
||||||
return t.Device
|
return t.Device
|
||||||
}
|
}
|
||||||
|
|||||||
+23
-6
@@ -22,20 +22,23 @@ import (
|
|||||||
|
|
||||||
type tun struct {
|
type tun struct {
|
||||||
io.ReadWriteCloser
|
io.ReadWriteCloser
|
||||||
vpnNetworks []netip.Prefix
|
vpnNetworks []netip.Prefix
|
||||||
Routes atomic.Pointer[[]Route]
|
unsafeNetworks []netip.Prefix
|
||||||
routeTree atomic.Pointer[bart.Table[routing.Gateways]]
|
unsafeIPv4Origin netip.Prefix
|
||||||
l *logrus.Logger
|
Routes atomic.Pointer[[]Route]
|
||||||
|
routeTree atomic.Pointer[bart.Table[routing.Gateways]]
|
||||||
|
l *logrus.Logger
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTun(_ *config.C, _ *logrus.Logger, _ []netip.Prefix, _ bool) (*tun, error) {
|
func newTun(_ *config.C, _ *logrus.Logger, _ []netip.Prefix, _ []netip.Prefix, _ bool) (*tun, error) {
|
||||||
return nil, fmt.Errorf("newTun not supported in iOS")
|
return nil, fmt.Errorf("newTun not supported in iOS")
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTunFromFd(c *config.C, l *logrus.Logger, deviceFd int, vpnNetworks []netip.Prefix) (*tun, error) {
|
func newTunFromFd(c *config.C, l *logrus.Logger, deviceFd int, vpnNetworks []netip.Prefix, unsafeNetworks []netip.Prefix) (*tun, error) {
|
||||||
file := os.NewFile(uintptr(deviceFd), "/dev/tun")
|
file := os.NewFile(uintptr(deviceFd), "/dev/tun")
|
||||||
t := &tun{
|
t := &tun{
|
||||||
vpnNetworks: vpnNetworks,
|
vpnNetworks: vpnNetworks,
|
||||||
|
unsafeNetworks: unsafeNetworks,
|
||||||
ReadWriteCloser: &tunReadCloser{f: file},
|
ReadWriteCloser: &tunReadCloser{f: file},
|
||||||
l: l,
|
l: l,
|
||||||
}
|
}
|
||||||
@@ -69,6 +72,8 @@ func (t *tun) reload(c *config.C, initial bool) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
t.unsafeIPv4Origin = prepareUnsafeOriginAddr(t, t.l, c, routes)
|
||||||
|
|
||||||
routeTree, err := makeRouteTree(t.l, routes, false)
|
routeTree, err := makeRouteTree(t.l, routes, false)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@@ -147,6 +152,18 @@ func (t *tun) Networks() []netip.Prefix {
|
|||||||
return t.vpnNetworks
|
return t.vpnNetworks
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t *tun) UnsafeNetworks() []netip.Prefix {
|
||||||
|
return t.unsafeNetworks
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *tun) UnsafeIPv4OriginAddress() netip.Prefix {
|
||||||
|
return t.unsafeIPv4Origin
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *tun) SNATAddress() netip.Prefix {
|
||||||
|
return netip.Prefix{}
|
||||||
|
}
|
||||||
|
|
||||||
func (t *tun) Name() string {
|
func (t *tun) Name() string {
|
||||||
return "iOS"
|
return "iOS"
|
||||||
}
|
}
|
||||||
|
|||||||
+136
-165
@@ -4,12 +4,13 @@
|
|||||||
package overlay
|
package overlay
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
"net"
|
"net"
|
||||||
"net/netip"
|
"net/netip"
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
"sync"
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
"time"
|
"time"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
@@ -17,26 +18,23 @@ import (
|
|||||||
"github.com/gaissmai/bart"
|
"github.com/gaissmai/bart"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/slackhq/nebula/config"
|
"github.com/slackhq/nebula/config"
|
||||||
"github.com/slackhq/nebula/overlay/vhostnet"
|
|
||||||
"github.com/slackhq/nebula/packet"
|
|
||||||
"github.com/slackhq/nebula/routing"
|
"github.com/slackhq/nebula/routing"
|
||||||
"github.com/slackhq/nebula/util"
|
"github.com/slackhq/nebula/util"
|
||||||
"github.com/slackhq/nebula/util/virtio"
|
|
||||||
"github.com/vishvananda/netlink"
|
"github.com/vishvananda/netlink"
|
||||||
"golang.org/x/sys/unix"
|
"golang.org/x/sys/unix"
|
||||||
)
|
)
|
||||||
|
|
||||||
type tun struct {
|
type tun struct {
|
||||||
file *os.File
|
io.ReadWriteCloser
|
||||||
fd int
|
fd int
|
||||||
vdev []*vhostnet.Device
|
Device string
|
||||||
Device string
|
vpnNetworks []netip.Prefix
|
||||||
vpnNetworks []netip.Prefix
|
unsafeNetworks []netip.Prefix
|
||||||
MaxMTU int
|
MaxMTU int
|
||||||
DefaultMTU int
|
DefaultMTU int
|
||||||
TXQueueLen int
|
TXQueueLen int
|
||||||
deviceIndex int
|
deviceIndex int
|
||||||
ioctlFd uintptr
|
ioctlFd uintptr
|
||||||
|
|
||||||
Routes atomic.Pointer[[]Route]
|
Routes atomic.Pointer[[]Route]
|
||||||
routeTree atomic.Pointer[bart.Table[routing.Gateways]]
|
routeTree atomic.Pointer[bart.Table[routing.Gateways]]
|
||||||
@@ -44,14 +42,33 @@ type tun struct {
|
|||||||
useSystemRoutes bool
|
useSystemRoutes bool
|
||||||
useSystemRoutesBufferSize int
|
useSystemRoutesBufferSize int
|
||||||
|
|
||||||
isV6 bool
|
// These are routes learned from `tun.use_system_route_table`
|
||||||
l *logrus.Logger
|
// stored here to make it easier to restore them after a reload
|
||||||
|
routesFromSystem map[netip.Prefix]routing.Gateways
|
||||||
|
routesFromSystemLock sync.Mutex
|
||||||
|
|
||||||
|
snatAddr netip.Prefix
|
||||||
|
unsafeIPv4Origin netip.Prefix
|
||||||
|
|
||||||
|
l *logrus.Logger
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *tun) Networks() []netip.Prefix {
|
func (t *tun) Networks() []netip.Prefix {
|
||||||
return t.vpnNetworks
|
return t.vpnNetworks
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t *tun) UnsafeNetworks() []netip.Prefix {
|
||||||
|
return t.unsafeNetworks
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *tun) UnsafeIPv4OriginAddress() netip.Prefix {
|
||||||
|
return t.unsafeIPv4Origin
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *tun) SNATAddress() netip.Prefix {
|
||||||
|
return t.snatAddr
|
||||||
|
}
|
||||||
|
|
||||||
type ifReq struct {
|
type ifReq struct {
|
||||||
Name [16]byte
|
Name [16]byte
|
||||||
Flags uint16
|
Flags uint16
|
||||||
@@ -70,10 +87,10 @@ type ifreqQLEN struct {
|
|||||||
pad [8]byte
|
pad [8]byte
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTunFromFd(c *config.C, l *logrus.Logger, deviceFd int, vpnNetworks []netip.Prefix) (*tun, error) {
|
func newTunFromFd(c *config.C, l *logrus.Logger, deviceFd int, vpnNetworks []netip.Prefix, unsafeNetworks []netip.Prefix) (*tun, error) {
|
||||||
file := os.NewFile(uintptr(deviceFd), "/dev/net/tun")
|
file := os.NewFile(uintptr(deviceFd), "/dev/net/tun")
|
||||||
|
|
||||||
t, err := newTunGeneric(c, l, file, vpnNetworks)
|
t, err := newTunGeneric(c, l, file, vpnNetworks, unsafeNetworks)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
@@ -83,7 +100,7 @@ func newTunFromFd(c *config.C, l *logrus.Logger, deviceFd int, vpnNetworks []net
|
|||||||
return t, nil
|
return t, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, multiqueue bool) (*tun, error) {
|
func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, unsafeNetworks []netip.Prefix, multiqueue bool) (*tun, error) {
|
||||||
fd, err := unix.Open("/dev/net/tun", os.O_RDWR, 0)
|
fd, err := unix.Open("/dev/net/tun", os.O_RDWR, 0)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// If /dev/net/tun doesn't exist, try to create it (will happen in docker)
|
// If /dev/net/tun doesn't exist, try to create it (will happen in docker)
|
||||||
@@ -107,67 +124,43 @@ func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, multiqueu
|
|||||||
}
|
}
|
||||||
|
|
||||||
var req ifReq
|
var req ifReq
|
||||||
req.Flags = uint16(unix.IFF_TUN | unix.IFF_NO_PI | unix.IFF_TUN_EXCL | unix.IFF_VNET_HDR | unix.IFF_NAPI)
|
req.Flags = uint16(unix.IFF_TUN | unix.IFF_NO_PI)
|
||||||
if multiqueue {
|
if multiqueue {
|
||||||
req.Flags |= unix.IFF_MULTI_QUEUE
|
req.Flags |= unix.IFF_MULTI_QUEUE
|
||||||
}
|
}
|
||||||
copy(req.Name[:], c.GetString("tun.dev", ""))
|
nameStr := c.GetString("tun.dev", "")
|
||||||
|
copy(req.Name[:], nameStr)
|
||||||
if err = ioctl(uintptr(fd), uintptr(unix.TUNSETIFF), uintptr(unsafe.Pointer(&req))); err != nil {
|
if err = ioctl(uintptr(fd), uintptr(unix.TUNSETIFF), uintptr(unsafe.Pointer(&req))); err != nil {
|
||||||
return nil, err
|
return nil, &NameError{
|
||||||
|
Name: nameStr,
|
||||||
|
Underlying: err,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
name := strings.Trim(string(req.Name[:]), "\x00")
|
name := strings.Trim(string(req.Name[:]), "\x00")
|
||||||
|
|
||||||
if err = unix.SetNonblock(fd, true); err != nil {
|
|
||||||
_ = unix.Close(fd)
|
|
||||||
return nil, fmt.Errorf("make file descriptor non-blocking: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
file := os.NewFile(uintptr(fd), "/dev/net/tun")
|
file := os.NewFile(uintptr(fd), "/dev/net/tun")
|
||||||
|
t, err := newTunGeneric(c, l, file, vpnNetworks, unsafeNetworks)
|
||||||
err = unix.IoctlSetPointerInt(fd, unix.TUNSETVNETHDRSZ, virtio.NetHdrSize)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("set vnethdr size: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
flags := 0
|
|
||||||
//flags = //unix.TUN_F_CSUM //| unix.TUN_F_TSO4 | unix.TUN_F_USO4 | unix.TUN_F_TSO6 | unix.TUN_F_USO6
|
|
||||||
err = unix.IoctlSetInt(fd, unix.TUNSETOFFLOAD, flags)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("set offloads: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
t, err := newTunGeneric(c, l, file, vpnNetworks)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
t.fd = fd
|
|
||||||
t.Device = name
|
t.Device = name
|
||||||
|
|
||||||
vdev, err := vhostnet.NewDevice(
|
|
||||||
vhostnet.WithBackendFD(fd),
|
|
||||||
vhostnet.WithQueueSize(8192), //todo config
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
t.vdev = []*vhostnet.Device{vdev}
|
|
||||||
|
|
||||||
return t, nil
|
return t, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTunGeneric(c *config.C, l *logrus.Logger, file *os.File, vpnNetworks []netip.Prefix) (*tun, error) {
|
func newTunGeneric(c *config.C, l *logrus.Logger, file *os.File, vpnNetworks []netip.Prefix, unsafeNetworks []netip.Prefix) (*tun, error) {
|
||||||
t := &tun{
|
t := &tun{
|
||||||
file: file,
|
ReadWriteCloser: file,
|
||||||
fd: int(file.Fd()),
|
fd: int(file.Fd()),
|
||||||
vpnNetworks: vpnNetworks,
|
vpnNetworks: vpnNetworks,
|
||||||
|
unsafeNetworks: unsafeNetworks,
|
||||||
TXQueueLen: c.GetInt("tun.tx_queue", 500),
|
TXQueueLen: c.GetInt("tun.tx_queue", 500),
|
||||||
useSystemRoutes: c.GetBool("tun.use_system_route_table", false),
|
useSystemRoutes: c.GetBool("tun.use_system_route_table", false),
|
||||||
useSystemRoutesBufferSize: c.GetInt("tun.use_system_route_table_buffer_size", 0),
|
useSystemRoutesBufferSize: c.GetInt("tun.use_system_route_table_buffer_size", 0),
|
||||||
|
routesFromSystem: map[netip.Prefix]routing.Gateways{},
|
||||||
l: l,
|
l: l,
|
||||||
}
|
}
|
||||||
if len(vpnNetworks) != 0 {
|
|
||||||
t.isV6 = vpnNetworks[0].Addr().Is6() //todo what about multi-IP?
|
|
||||||
}
|
|
||||||
|
|
||||||
err := t.reload(c, true)
|
err := t.reload(c, true)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -184,14 +177,6 @@ func newTunGeneric(c *config.C, l *logrus.Logger, file *os.File, vpnNetworks []n
|
|||||||
return t, nil
|
return t, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *tun) NewPacketArrays(batchSize int) []TunPacket {
|
|
||||||
inPackets := make([]TunPacket, batchSize)
|
|
||||||
for i := 0; i < batchSize; i++ {
|
|
||||||
inPackets[i] = vhostnet.NewVIO()
|
|
||||||
}
|
|
||||||
return inPackets
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *tun) reload(c *config.C, initial bool) error {
|
func (t *tun) reload(c *config.C, initial bool) error {
|
||||||
routeChange, routes, err := getAllRoutesFromConfig(c, t.vpnNetworks, initial)
|
routeChange, routes, err := getAllRoutesFromConfig(c, t.vpnNetworks, initial)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -202,11 +187,23 @@ func (t *tun) reload(c *config.C, initial bool) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if initial {
|
||||||
|
t.unsafeIPv4Origin = prepareUnsafeOriginAddr(t, t.l, c, routes) //todo MUST be different from t.snatAddr!
|
||||||
|
t.snatAddr = prepareSnatAddr(t, t.l, c)
|
||||||
|
}
|
||||||
|
|
||||||
routeTree, err := makeRouteTree(t.l, routes, true)
|
routeTree, err := makeRouteTree(t.l, routes, true)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Bring along any routes learned from the system route table on reload
|
||||||
|
t.routesFromSystemLock.Lock()
|
||||||
|
for dst, gw := range t.routesFromSystem {
|
||||||
|
routeTree.Insert(dst, gw)
|
||||||
|
}
|
||||||
|
t.routesFromSystemLock.Unlock()
|
||||||
|
|
||||||
oldDefaultMTU := t.DefaultMTU
|
oldDefaultMTU := t.DefaultMTU
|
||||||
oldMaxMTU := t.MaxMTU
|
oldMaxMTU := t.MaxMTU
|
||||||
newDefaultMTU := c.GetInt("tun.mtu", DefaultMTU)
|
newDefaultMTU := c.GetInt("tun.mtu", DefaultMTU)
|
||||||
@@ -263,7 +260,7 @@ func (t *tun) SupportsMultiqueue() bool {
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *tun) NewMultiQueueReader() (TunDev, error) {
|
func (t *tun) NewMultiQueueReader() (io.ReadWriteCloser, error) {
|
||||||
fd, err := unix.Open("/dev/net/tun", os.O_RDWR, 0)
|
fd, err := unix.Open("/dev/net/tun", os.O_RDWR, 0)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
@@ -276,17 +273,9 @@ func (t *tun) NewMultiQueueReader() (TunDev, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
vdev, err := vhostnet.NewDevice(
|
file := os.NewFile(uintptr(fd), "/dev/net/tun")
|
||||||
vhostnet.WithBackendFD(fd),
|
|
||||||
vhostnet.WithQueueSize(8192), //todo config
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
t.vdev = append(t.vdev, vdev)
|
return file, nil
|
||||||
|
|
||||||
return t, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *tun) RoutesFor(ip netip.Addr) routing.Gateways {
|
func (t *tun) RoutesFor(ip netip.Addr) routing.Gateways {
|
||||||
@@ -294,6 +283,29 @@ func (t *tun) RoutesFor(ip netip.Addr) routing.Gateways {
|
|||||||
return r
|
return r
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t *tun) Write(b []byte) (int, error) {
|
||||||
|
var nn int
|
||||||
|
maximum := len(b)
|
||||||
|
|
||||||
|
for {
|
||||||
|
n, err := unix.Write(t.fd, b[nn:maximum])
|
||||||
|
if n > 0 {
|
||||||
|
nn += n
|
||||||
|
}
|
||||||
|
if nn == len(b) {
|
||||||
|
return nn, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
return nn, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if n == 0 {
|
||||||
|
return nn, io.ErrUnexpectedEOF
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (t *tun) deviceBytes() (o [16]byte) {
|
func (t *tun) deviceBytes() (o [16]byte) {
|
||||||
for i, c := range t.Device {
|
for i, c := range t.Device {
|
||||||
o[i] = byte(c)
|
o[i] = byte(c)
|
||||||
@@ -323,6 +335,17 @@ func (t *tun) addIPs(link netlink.Link) error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if t.unsafeIPv4Origin.IsValid() {
|
||||||
|
newAddrs = append(newAddrs, &netlink.Addr{
|
||||||
|
IPNet: &net.IPNet{
|
||||||
|
IP: t.unsafeIPv4Origin.Addr().AsSlice(),
|
||||||
|
Mask: net.CIDRMask(t.unsafeIPv4Origin.Bits(), t.unsafeIPv4Origin.Addr().BitLen()),
|
||||||
|
},
|
||||||
|
Label: t.unsafeIPv4Origin.Addr().Zone(),
|
||||||
|
})
|
||||||
|
t.l.WithField("address", t.unsafeIPv4Origin).Info("Adding origin address for IPv4 unsafe_routes")
|
||||||
|
}
|
||||||
|
|
||||||
//add all new addresses
|
//add all new addresses
|
||||||
for i := range newAddrs {
|
for i := range newAddrs {
|
||||||
//AddrReplace still adds new IPs, but if their properties change it will change them as well
|
//AddrReplace still adds new IPs, but if their properties change it will change them as well
|
||||||
@@ -410,7 +433,13 @@ func (t *tun) Activate() error {
|
|||||||
//set route MTU
|
//set route MTU
|
||||||
for i := range t.vpnNetworks {
|
for i := range t.vpnNetworks {
|
||||||
if err = t.setDefaultRoute(t.vpnNetworks[i]); err != nil {
|
if err = t.setDefaultRoute(t.vpnNetworks[i]); err != nil {
|
||||||
return fmt.Errorf("failed to set default route MTU: %w", err)
|
return fmt.Errorf("failed to set default route MTU for %s: %w", t.vpnNetworks[i], err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if t.unsafeIPv4Origin.IsValid() {
|
||||||
|
if err = t.setDefaultRoute(t.unsafeIPv4Origin); err != nil {
|
||||||
|
return fmt.Errorf("failed to set default route MTU for %s: %w", t.unsafeIPv4Origin, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -437,6 +466,23 @@ func (t *tun) setMTU() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t *tun) setSnatRoute() error {
|
||||||
|
dr := &net.IPNet{
|
||||||
|
IP: t.snatAddr.Masked().Addr().AsSlice(),
|
||||||
|
Mask: net.CIDRMask(t.snatAddr.Bits(), t.snatAddr.Addr().BitLen()),
|
||||||
|
}
|
||||||
|
|
||||||
|
nr := netlink.Route{
|
||||||
|
LinkIndex: t.deviceIndex,
|
||||||
|
Dst: dr,
|
||||||
|
Scope: unix.RT_SCOPE_LINK,
|
||||||
|
//Protocol: unix.RTPROT_KERNEL,
|
||||||
|
Table: unix.RT_TABLE_MAIN,
|
||||||
|
Type: unix.RTN_UNICAST,
|
||||||
|
}
|
||||||
|
return netlink.RouteReplace(&nr)
|
||||||
|
}
|
||||||
|
|
||||||
func (t *tun) setDefaultRoute(cidr netip.Prefix) error {
|
func (t *tun) setDefaultRoute(cidr netip.Prefix) error {
|
||||||
dr := &net.IPNet{
|
dr := &net.IPNet{
|
||||||
IP: cidr.Masked().Addr().AsSlice(),
|
IP: cidr.Masked().Addr().AsSlice(),
|
||||||
@@ -513,6 +559,13 @@ func (t *tun) addRoutes(logErrors bool) error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if t.snatAddr.IsValid() {
|
||||||
|
//at least for Linux, we need to set a return route for the SNATted traffic in order to satisfy the reverse-path filter,
|
||||||
|
//and to help the kernel deliver our reply traffic to the tun device.
|
||||||
|
//however, it is important that we do not actually /assign/ the SNAT address,
|
||||||
|
//since link-local addresses will not be routed between interfaces without significant trickery.
|
||||||
|
return t.setSnatRoute()
|
||||||
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -701,14 +754,18 @@ func (t *tun) updateRoutes(r netlink.RouteUpdate) {
|
|||||||
|
|
||||||
newTree := t.routeTree.Load().Clone()
|
newTree := t.routeTree.Load().Clone()
|
||||||
|
|
||||||
|
t.routesFromSystemLock.Lock()
|
||||||
if r.Type == unix.RTM_NEWROUTE {
|
if r.Type == unix.RTM_NEWROUTE {
|
||||||
t.l.WithField("destination", dst).WithField("via", gateways).Info("Adding route")
|
t.l.WithField("destination", dst).WithField("via", gateways).Info("Adding route")
|
||||||
|
t.routesFromSystem[dst] = gateways
|
||||||
newTree.Insert(dst, gateways)
|
newTree.Insert(dst, gateways)
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
t.l.WithField("destination", dst).WithField("via", gateways).Info("Removing route")
|
t.l.WithField("destination", dst).WithField("via", gateways).Info("Removing route")
|
||||||
|
delete(t.routesFromSystem, dst)
|
||||||
newTree.Delete(dst)
|
newTree.Delete(dst)
|
||||||
}
|
}
|
||||||
|
t.routesFromSystemLock.Unlock()
|
||||||
t.routeTree.Store(newTree)
|
t.routeTree.Store(newTree)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -717,100 +774,14 @@ func (t *tun) Close() error {
|
|||||||
close(t.routeChan)
|
close(t.routeChan)
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, v := range t.vdev {
|
if t.ReadWriteCloser != nil {
|
||||||
if v != nil {
|
_ = t.ReadWriteCloser.Close()
|
||||||
_ = v.Close()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if t.file != nil {
|
|
||||||
_ = t.file.Close()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if t.ioctlFd > 0 {
|
if t.ioctlFd > 0 {
|
||||||
_ = os.NewFile(t.ioctlFd, "ioctlFd").Close()
|
_ = os.NewFile(t.ioctlFd, "ioctlFd").Close()
|
||||||
|
t.ioctlFd = 0
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *tun) ReadMany(p []TunPacket, q int) (int, error) {
|
|
||||||
err := t.vdev[q].ReceiveQueue.WaitForUsedElements(context.TODO())
|
|
||||||
if err != nil {
|
|
||||||
return 0, err
|
|
||||||
}
|
|
||||||
i := 0
|
|
||||||
for i = 0; i < len(p); i++ {
|
|
||||||
item, ok := t.vdev[q].ReceiveQueue.TakeSingleNoBlock()
|
|
||||||
if !ok {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
pkt := p[i].(*vhostnet.VirtIOPacket) //todo I'm not happy about this but I don't want to change how memory is "owned" rn
|
|
||||||
_, err = t.vdev[q].ProcessRxChain(pkt, item)
|
|
||||||
if err != nil {
|
|
||||||
return i, err
|
|
||||||
}
|
|
||||||
i++
|
|
||||||
}
|
|
||||||
return i, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *tun) Write(b []byte) (int, error) {
|
|
||||||
maximum := len(b) //we are RXing
|
|
||||||
|
|
||||||
//todo garbagey
|
|
||||||
out := packet.NewOut()
|
|
||||||
x, err := t.AllocSeg(out, 0)
|
|
||||||
if err != nil {
|
|
||||||
return 0, err
|
|
||||||
}
|
|
||||||
copy(out.SegmentPayloads[x], b)
|
|
||||||
err = t.vdev[0].TransmitPacket(out, true)
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
t.l.WithError(err).Error("Transmitting packet")
|
|
||||||
return 0, err
|
|
||||||
}
|
|
||||||
return maximum, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *tun) AllocSeg(pkt *packet.OutPacket, q int) (int, error) {
|
|
||||||
idx, buf, err := t.vdev[q].GetPacketForTx()
|
|
||||||
if err != nil {
|
|
||||||
return 0, err
|
|
||||||
}
|
|
||||||
x := pkt.UseSegment(idx, buf, t.isV6)
|
|
||||||
return x, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *tun) WriteOne(x *packet.OutPacket, kick bool, q int) (int, error) {
|
|
||||||
if err := t.vdev[q].TransmitPacket(x, kick); err != nil {
|
|
||||||
t.l.WithError(err).Error("Transmitting packet")
|
|
||||||
return 0, err
|
|
||||||
}
|
|
||||||
return 1, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *tun) WriteMany(x []*packet.OutPacket, q int) (int, error) {
|
|
||||||
maximum := len(x) //we are RXing
|
|
||||||
if maximum == 0 {
|
|
||||||
return 0, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
err := t.vdev[q].TransmitPackets(x)
|
|
||||||
if err != nil {
|
|
||||||
t.l.WithError(err).Error("Transmitting packet")
|
|
||||||
return 0, err
|
|
||||||
}
|
|
||||||
return maximum, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *tun) RecycleRxSeg(pkt TunPacket, kick bool, q int) error {
|
|
||||||
if pkt.GetPayload() == nil {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
vpkt := pkt.(*vhostnet.VirtIOPacket)
|
|
||||||
err := t.vdev[q].ReceiveQueue.OfferDescriptorChains([]uint16{vpkt.Chain}, kick)
|
|
||||||
vpkt.Reset() //intentionally ignoring err!
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|||||||
+28
-10
@@ -58,23 +58,25 @@ type addrLifetime struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type tun struct {
|
type tun struct {
|
||||||
Device string
|
Device string
|
||||||
vpnNetworks []netip.Prefix
|
vpnNetworks []netip.Prefix
|
||||||
MTU int
|
unsafeNetworks []netip.Prefix
|
||||||
Routes atomic.Pointer[[]Route]
|
unsafeIPv4Origin netip.Prefix
|
||||||
routeTree atomic.Pointer[bart.Table[routing.Gateways]]
|
MTU int
|
||||||
l *logrus.Logger
|
Routes atomic.Pointer[[]Route]
|
||||||
f *os.File
|
routeTree atomic.Pointer[bart.Table[routing.Gateways]]
|
||||||
fd int
|
l *logrus.Logger
|
||||||
|
f *os.File
|
||||||
|
fd int
|
||||||
}
|
}
|
||||||
|
|
||||||
var deviceNameRE = regexp.MustCompile(`^tun[0-9]+$`)
|
var deviceNameRE = regexp.MustCompile(`^tun[0-9]+$`)
|
||||||
|
|
||||||
func newTunFromFd(_ *config.C, _ *logrus.Logger, _ int, _ []netip.Prefix) (*tun, error) {
|
func newTunFromFd(_ *config.C, _ *logrus.Logger, _ int, _ []netip.Prefix, _ []netip.Prefix) (*tun, error) {
|
||||||
return nil, fmt.Errorf("newTunFromFd not supported in NetBSD")
|
return nil, fmt.Errorf("newTunFromFd not supported in NetBSD")
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, _ bool) (*tun, error) {
|
func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, unsafeNetworks []netip.Prefix, _ bool) (*tun, error) {
|
||||||
// Try to open tun device
|
// Try to open tun device
|
||||||
var err error
|
var err error
|
||||||
deviceName := c.GetString("tun.dev", "")
|
deviceName := c.GetString("tun.dev", "")
|
||||||
@@ -350,6 +352,10 @@ func (t *tun) reload(c *config.C, initial bool) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if initial {
|
||||||
|
t.unsafeIPv4Origin = prepareUnsafeOriginAddr(t, t.l, c, routes)
|
||||||
|
}
|
||||||
|
|
||||||
routeTree, err := makeRouteTree(t.l, routes, false)
|
routeTree, err := makeRouteTree(t.l, routes, false)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@@ -386,6 +392,18 @@ func (t *tun) Networks() []netip.Prefix {
|
|||||||
return t.vpnNetworks
|
return t.vpnNetworks
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t *tun) UnsafeNetworks() []netip.Prefix {
|
||||||
|
return t.unsafeNetworks
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *tun) UnsafeIPv4OriginAddress() netip.Prefix {
|
||||||
|
return t.unsafeIPv4Origin
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *tun) SNATAddress() netip.Prefix {
|
||||||
|
return netip.Prefix{}
|
||||||
|
}
|
||||||
|
|
||||||
func (t *tun) Name() string {
|
func (t *tun) Name() string {
|
||||||
return t.Device
|
return t.Device
|
||||||
}
|
}
|
||||||
|
|||||||
+35
-16
@@ -49,25 +49,27 @@ type ifreq struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type tun struct {
|
type tun struct {
|
||||||
Device string
|
Device string
|
||||||
vpnNetworks []netip.Prefix
|
vpnNetworks []netip.Prefix
|
||||||
MTU int
|
unsafeNetworks []netip.Prefix
|
||||||
Routes atomic.Pointer[[]Route]
|
unsafeIPv4Origin netip.Prefix
|
||||||
routeTree atomic.Pointer[bart.Table[routing.Gateways]]
|
MTU int
|
||||||
l *logrus.Logger
|
Routes atomic.Pointer[[]Route]
|
||||||
f *os.File
|
routeTree atomic.Pointer[bart.Table[routing.Gateways]]
|
||||||
fd int
|
l *logrus.Logger
|
||||||
|
f *os.File
|
||||||
|
fd int
|
||||||
// cache out buffer since we need to prepend 4 bytes for tun metadata
|
// cache out buffer since we need to prepend 4 bytes for tun metadata
|
||||||
out []byte
|
out []byte
|
||||||
}
|
}
|
||||||
|
|
||||||
var deviceNameRE = regexp.MustCompile(`^tun[0-9]+$`)
|
var deviceNameRE = regexp.MustCompile(`^tun[0-9]+$`)
|
||||||
|
|
||||||
func newTunFromFd(_ *config.C, _ *logrus.Logger, _ int, _ []netip.Prefix) (*tun, error) {
|
func newTunFromFd(_ *config.C, _ *logrus.Logger, _ int, _ []netip.Prefix, _ []netip.Prefix) (*tun, error) {
|
||||||
return nil, fmt.Errorf("newTunFromFd not supported in openbsd")
|
return nil, fmt.Errorf("newTunFromFd not supported in openbsd")
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, _ bool) (*tun, error) {
|
func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, unsafeNetworks []netip.Prefix, _ bool) (*tun, error) {
|
||||||
// Try to open tun device
|
// Try to open tun device
|
||||||
var err error
|
var err error
|
||||||
deviceName := c.GetString("tun.dev", "")
|
deviceName := c.GetString("tun.dev", "")
|
||||||
@@ -89,12 +91,13 @@ func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, _ bool) (
|
|||||||
}
|
}
|
||||||
|
|
||||||
t := &tun{
|
t := &tun{
|
||||||
f: os.NewFile(uintptr(fd), ""),
|
f: os.NewFile(uintptr(fd), ""),
|
||||||
fd: fd,
|
fd: fd,
|
||||||
Device: deviceName,
|
Device: deviceName,
|
||||||
vpnNetworks: vpnNetworks,
|
vpnNetworks: vpnNetworks,
|
||||||
MTU: c.GetInt("tun.mtu", DefaultMTU),
|
unsafeNetworks: unsafeNetworks,
|
||||||
l: l,
|
MTU: c.GetInt("tun.mtu", DefaultMTU),
|
||||||
|
l: l,
|
||||||
}
|
}
|
||||||
|
|
||||||
err = t.reload(c, true)
|
err = t.reload(c, true)
|
||||||
@@ -270,6 +273,10 @@ func (t *tun) reload(c *config.C, initial bool) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if initial {
|
||||||
|
t.unsafeIPv4Origin = prepareUnsafeOriginAddr(t, t.l, c, routes)
|
||||||
|
}
|
||||||
|
|
||||||
routeTree, err := makeRouteTree(t.l, routes, false)
|
routeTree, err := makeRouteTree(t.l, routes, false)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@@ -306,6 +313,18 @@ func (t *tun) Networks() []netip.Prefix {
|
|||||||
return t.vpnNetworks
|
return t.vpnNetworks
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t *tun) UnsafeNetworks() []netip.Prefix {
|
||||||
|
return t.unsafeNetworks
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *tun) UnsafeIPv4OriginAddress() netip.Prefix {
|
||||||
|
return t.unsafeIPv4Origin
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *tun) SNATAddress() netip.Prefix {
|
||||||
|
return netip.Prefix{}
|
||||||
|
}
|
||||||
|
|
||||||
func (t *tun) Name() string {
|
func (t *tun) Name() string {
|
||||||
return t.Device
|
return t.Device
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,179 @@
|
|||||||
|
package overlay
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io"
|
||||||
|
"net/netip"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
"github.com/slackhq/nebula/config"
|
||||||
|
"github.com/slackhq/nebula/routing"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
)
|
||||||
|
|
||||||
|
// mockDevice is a minimal Device implementation for testing prepareUnsafeOriginAddr.
|
||||||
|
type mockDevice struct {
|
||||||
|
networks []netip.Prefix
|
||||||
|
unsafeNetworks []netip.Prefix
|
||||||
|
snatAddr netip.Prefix
|
||||||
|
unsafeSnatAddr netip.Prefix
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *mockDevice) Read([]byte) (int, error) { return 0, nil }
|
||||||
|
func (d *mockDevice) Write([]byte) (int, error) { return 0, nil }
|
||||||
|
func (d *mockDevice) Close() error { return nil }
|
||||||
|
func (d *mockDevice) Activate() error { return nil }
|
||||||
|
func (d *mockDevice) Networks() []netip.Prefix { return d.networks }
|
||||||
|
func (d *mockDevice) UnsafeNetworks() []netip.Prefix { return d.unsafeNetworks }
|
||||||
|
func (d *mockDevice) SNATAddress() netip.Prefix { return d.snatAddr }
|
||||||
|
func (d *mockDevice) UnsafeIPv4OriginAddress() netip.Prefix { return d.unsafeSnatAddr }
|
||||||
|
func (d *mockDevice) Name() string { return "mock" }
|
||||||
|
func (d *mockDevice) RoutesFor(netip.Addr) routing.Gateways { return routing.Gateways{} }
|
||||||
|
func (d *mockDevice) SupportsMultiqueue() bool { return false }
|
||||||
|
func (d *mockDevice) NewMultiQueueReader() (io.ReadWriteCloser, error) { return nil, nil }
|
||||||
|
|
||||||
|
func TestPrepareSnatAddr_V4Primary_NoSnat(t *testing.T) {
|
||||||
|
l := logrus.New()
|
||||||
|
l.SetLevel(logrus.PanicLevel)
|
||||||
|
c := config.NewC(l)
|
||||||
|
|
||||||
|
// If the device has an IPv4 primary address, no SNAT needed
|
||||||
|
d := &mockDevice{
|
||||||
|
networks: []netip.Prefix{netip.MustParsePrefix("10.0.0.1/24")},
|
||||||
|
}
|
||||||
|
result := prepareUnsafeOriginAddr(d, l, c, nil)
|
||||||
|
assert.Equal(t, netip.Prefix{}, result, "should not assign SNAT addr when device has IPv4 primary")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPrepareSnatAddr_V6Primary_NoUnsafeOrRoutes(t *testing.T) {
|
||||||
|
l := logrus.New()
|
||||||
|
l.SetLevel(logrus.PanicLevel)
|
||||||
|
c := config.NewC(l)
|
||||||
|
|
||||||
|
// IPv6 primary but no unsafe networks or IPv4 routes
|
||||||
|
d := &mockDevice{
|
||||||
|
networks: []netip.Prefix{netip.MustParsePrefix("fd00::1/128")},
|
||||||
|
}
|
||||||
|
result := prepareUnsafeOriginAddr(d, l, c, nil)
|
||||||
|
assert.Equal(t, netip.Prefix{}, result, "should not assign SNAT addr without IPv4 unsafe networks or routes")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPrepareSnatAddr_V6Primary_WithV4Unsafe(t *testing.T) {
|
||||||
|
l := logrus.New()
|
||||||
|
l.SetLevel(logrus.PanicLevel)
|
||||||
|
c := config.NewC(l)
|
||||||
|
|
||||||
|
// IPv6 primary with IPv4 unsafe network -> should get SNAT addr
|
||||||
|
d := &mockDevice{
|
||||||
|
networks: []netip.Prefix{netip.MustParsePrefix("fd00::1/128")},
|
||||||
|
unsafeNetworks: []netip.Prefix{netip.MustParsePrefix("192.168.0.0/16")},
|
||||||
|
}
|
||||||
|
result := prepareSnatAddr(d, l, c)
|
||||||
|
require.True(t, result.IsValid(), "should assign SNAT addr")
|
||||||
|
assert.True(t, result.Addr().Is4(), "SNAT addr should be IPv4")
|
||||||
|
assert.True(t, result.Addr().IsLinkLocalUnicast(), "SNAT addr should be link-local")
|
||||||
|
assert.Equal(t, 32, result.Bits(), "SNAT addr should be /32")
|
||||||
|
|
||||||
|
result = prepareUnsafeOriginAddr(d, l, c, nil)
|
||||||
|
require.False(t, result.IsValid(), "no routes = no origin addr needed")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPrepareUnsafeOriginAddr_V6Primary_WithV4Route(t *testing.T) {
|
||||||
|
l := logrus.New()
|
||||||
|
l.SetLevel(logrus.PanicLevel)
|
||||||
|
c := config.NewC(l)
|
||||||
|
|
||||||
|
// IPv6 primary with IPv4 route -> should get SNAT addr
|
||||||
|
d := &mockDevice{
|
||||||
|
networks: []netip.Prefix{netip.MustParsePrefix("fd00::1/128")},
|
||||||
|
}
|
||||||
|
routes := []Route{
|
||||||
|
{Cidr: netip.MustParsePrefix("10.0.0.0/8")},
|
||||||
|
}
|
||||||
|
result := prepareUnsafeOriginAddr(d, l, c, routes)
|
||||||
|
require.True(t, result.IsValid(), "should assign SNAT addr when IPv4 route exists")
|
||||||
|
assert.True(t, result.Addr().Is4())
|
||||||
|
assert.True(t, result.Addr().IsLinkLocalUnicast())
|
||||||
|
|
||||||
|
result = prepareSnatAddr(d, l, c)
|
||||||
|
require.False(t, result.IsValid(), "no UnsafeNetworks = no snat addr needed")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPrepareSnatAddr_V6Primary_V6UnsafeOnly(t *testing.T) {
|
||||||
|
l := logrus.New()
|
||||||
|
l.SetLevel(logrus.PanicLevel)
|
||||||
|
c := config.NewC(l)
|
||||||
|
|
||||||
|
// IPv6 primary with only IPv6 unsafe network -> no SNAT needed
|
||||||
|
d := &mockDevice{
|
||||||
|
networks: []netip.Prefix{netip.MustParsePrefix("fd00::1/128")},
|
||||||
|
unsafeNetworks: []netip.Prefix{netip.MustParsePrefix("fd01::/64")},
|
||||||
|
}
|
||||||
|
result := prepareUnsafeOriginAddr(d, l, c, nil)
|
||||||
|
assert.Equal(t, netip.Prefix{}, result, "should not assign SNAT addr for IPv6-only unsafe networks")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPrepareSnatAddr_ManualAddress(t *testing.T) {
|
||||||
|
l := logrus.New()
|
||||||
|
l.SetLevel(logrus.PanicLevel)
|
||||||
|
c := config.NewC(l)
|
||||||
|
c.Settings["tun"] = map[string]any{
|
||||||
|
"snat_address_for_4over6": "169.254.42.42",
|
||||||
|
}
|
||||||
|
|
||||||
|
d := &mockDevice{
|
||||||
|
networks: []netip.Prefix{netip.MustParsePrefix("fd00::1/128")},
|
||||||
|
unsafeNetworks: []netip.Prefix{netip.MustParsePrefix("192.168.0.0/16")},
|
||||||
|
}
|
||||||
|
result := prepareSnatAddr(d, l, c)
|
||||||
|
require.True(t, result.IsValid())
|
||||||
|
assert.Equal(t, netip.MustParseAddr("169.254.42.42"), result.Addr())
|
||||||
|
assert.Equal(t, 32, result.Bits())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPrepareSnatAddr_InvalidManualAddress_Fallback(t *testing.T) {
|
||||||
|
l := logrus.New()
|
||||||
|
l.SetLevel(logrus.PanicLevel)
|
||||||
|
c := config.NewC(l)
|
||||||
|
c.Settings["tun"] = map[string]any{
|
||||||
|
"snat_address_for_4over6": "not-an-ip",
|
||||||
|
}
|
||||||
|
|
||||||
|
d := &mockDevice{
|
||||||
|
networks: []netip.Prefix{netip.MustParsePrefix("fd00::1/128")},
|
||||||
|
unsafeNetworks: []netip.Prefix{netip.MustParsePrefix("192.168.0.0/16")},
|
||||||
|
}
|
||||||
|
result := prepareSnatAddr(d, l, c)
|
||||||
|
// Should fall back to auto-assignment
|
||||||
|
require.True(t, result.IsValid(), "should fall back to auto-assigned address")
|
||||||
|
assert.True(t, result.Addr().Is4())
|
||||||
|
assert.True(t, result.Addr().IsLinkLocalUnicast())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPrepareSnatAddr_AutoGenerated_Range(t *testing.T) {
|
||||||
|
l := logrus.New()
|
||||||
|
l.SetLevel(logrus.PanicLevel)
|
||||||
|
c := config.NewC(l)
|
||||||
|
|
||||||
|
d := &mockDevice{
|
||||||
|
networks: []netip.Prefix{netip.MustParsePrefix("fd00::1/128")},
|
||||||
|
unsafeNetworks: []netip.Prefix{netip.MustParsePrefix("192.168.0.0/16")},
|
||||||
|
}
|
||||||
|
|
||||||
|
// Generate several addresses and verify they're all in the expected range
|
||||||
|
for i := 0; i < 100; i++ {
|
||||||
|
result := prepareSnatAddr(d, l, c)
|
||||||
|
require.True(t, result.IsValid())
|
||||||
|
addr := result.Addr()
|
||||||
|
octets := addr.As4()
|
||||||
|
assert.Equal(t, byte(169), octets[0], "first octet should be 169")
|
||||||
|
assert.Equal(t, byte(254), octets[1], "second octet should be 254")
|
||||||
|
// Should not have .0 in the last octet
|
||||||
|
assert.NotEqual(t, byte(0), octets[3], "last octet should not be 0")
|
||||||
|
// Should not be 169.254.255.255 (broadcast)
|
||||||
|
if octets[2] == 255 {
|
||||||
|
assert.NotEqual(t, byte(255), octets[3], "should not be broadcast address")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
package overlay
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"net/netip"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestLinkLocal(t *testing.T) {
|
||||||
|
r := bytes.NewReader([]byte{42, 99})
|
||||||
|
result := genLinkLocal(r)
|
||||||
|
assert.Equal(t, netip.MustParsePrefix("169.254.42.99/32"), result, "genLinkLocal with a deterministic randomizer")
|
||||||
|
|
||||||
|
result = genLinkLocal(nil)
|
||||||
|
assert.True(t, result.IsValid(), "genLinkLocal with nil randomizer should be valid")
|
||||||
|
assert.True(t, result.Addr().IsLinkLocalUnicast(), "genLinkLocal with nil randomizer should be link-local")
|
||||||
|
|
||||||
|
result = coerceLinkLocal([]byte{169, 254, 100, 50})
|
||||||
|
assert.Equal(t, netip.MustParsePrefix("169.254.100.50/32"), result, "coerceLinkLocal should pass through normal values")
|
||||||
|
|
||||||
|
result = coerceLinkLocal([]byte{169, 254, 0, 0})
|
||||||
|
assert.Equal(t, netip.MustParsePrefix("169.254.0.1/32"), result, "coerceLinkLocal should bump .0 last octet to .1")
|
||||||
|
|
||||||
|
result = coerceLinkLocal([]byte{169, 254, 255, 255})
|
||||||
|
assert.Equal(t, netip.MustParsePrefix("169.254.255.254/32"), result, "coerceLinkLocal should bump broadcast 255.255 to 255.254")
|
||||||
|
|
||||||
|
result = coerceLinkLocal([]byte{169, 254, 0, 1})
|
||||||
|
assert.Equal(t, netip.MustParsePrefix("169.254.0.1/32"), result, "coerceLinkLocal should leave .1 last octet unchanged")
|
||||||
|
|
||||||
|
result = coerceLinkLocal([]byte{169, 254, 255, 254})
|
||||||
|
assert.Equal(t, netip.MustParsePrefix("169.254.255.254/32"), result, "coerceLinkLocal should leave 255.254 unchanged")
|
||||||
|
|
||||||
|
result = coerceLinkLocal([]byte{169, 254, 255, 100})
|
||||||
|
assert.Equal(t, netip.MustParsePrefix("169.254.255.100/32"), result, "coerceLinkLocal should leave 255.100 unchanged")
|
||||||
|
}
|
||||||
+50
-77
@@ -13,24 +13,25 @@ import (
|
|||||||
"github.com/gaissmai/bart"
|
"github.com/gaissmai/bart"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/slackhq/nebula/config"
|
"github.com/slackhq/nebula/config"
|
||||||
"github.com/slackhq/nebula/packet"
|
|
||||||
"github.com/slackhq/nebula/routing"
|
"github.com/slackhq/nebula/routing"
|
||||||
)
|
)
|
||||||
|
|
||||||
type TestTun struct {
|
type TestTun struct {
|
||||||
Device string
|
Device string
|
||||||
vpnNetworks []netip.Prefix
|
vpnNetworks []netip.Prefix
|
||||||
Routes []Route
|
unsafeNetworks []netip.Prefix
|
||||||
routeTree *bart.Table[routing.Gateways]
|
snatAddr netip.Prefix
|
||||||
l *logrus.Logger
|
unsafeIPv4Origin netip.Prefix
|
||||||
|
Routes []Route
|
||||||
|
routeTree *bart.Table[routing.Gateways]
|
||||||
|
l *logrus.Logger
|
||||||
|
|
||||||
closed atomic.Bool
|
closed atomic.Bool
|
||||||
rxPackets chan []byte // Packets to receive into nebula
|
rxPackets chan []byte // Packets to receive into nebula
|
||||||
TxPackets chan []byte // Packets transmitted outside by nebula
|
TxPackets chan []byte // Packets transmitted outside by nebula
|
||||||
buffers [][]byte
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, _ bool) (*TestTun, error) {
|
func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, unsafeNetworks []netip.Prefix, _ bool) (*TestTun, error) {
|
||||||
_, routes, err := getAllRoutesFromConfig(c, vpnNetworks, true)
|
_, routes, err := getAllRoutesFromConfig(c, vpnNetworks, true)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
@@ -40,18 +41,22 @@ func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, _ bool) (
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return &TestTun{
|
tt := &TestTun{
|
||||||
Device: c.GetString("tun.dev", ""),
|
Device: c.GetString("tun.dev", ""),
|
||||||
vpnNetworks: vpnNetworks,
|
vpnNetworks: vpnNetworks,
|
||||||
Routes: routes,
|
unsafeNetworks: unsafeNetworks,
|
||||||
routeTree: routeTree,
|
Routes: routes,
|
||||||
l: l,
|
routeTree: routeTree,
|
||||||
rxPackets: make(chan []byte, 10),
|
l: l,
|
||||||
TxPackets: make(chan []byte, 10),
|
rxPackets: make(chan []byte, 10),
|
||||||
}, nil
|
TxPackets: make(chan []byte, 10),
|
||||||
|
}
|
||||||
|
tt.unsafeIPv4Origin = prepareUnsafeOriginAddr(tt, l, c, routes)
|
||||||
|
tt.snatAddr = prepareSnatAddr(tt, tt.l, c)
|
||||||
|
return tt, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTunFromFd(_ *config.C, _ *logrus.Logger, _ int, _ []netip.Prefix) (*TestTun, error) {
|
func newTunFromFd(_ *config.C, _ *logrus.Logger, _ int, _ []netip.Prefix, _ []netip.Prefix) (*TestTun, error) {
|
||||||
return nil, fmt.Errorf("newTunFromFd not supported")
|
return nil, fmt.Errorf("newTunFromFd not supported")
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -106,68 +111,15 @@ func (t *TestTun) Name() string {
|
|||||||
return t.Device
|
return t.Device
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *TestTun) ReadMany(x []TunPacket, q int) (int, error) {
|
func (t *TestTun) Write(b []byte) (n int, err error) {
|
||||||
p, ok := <-t.rxPackets
|
|
||||||
if !ok {
|
|
||||||
return 0, os.ErrClosed
|
|
||||||
}
|
|
||||||
x[0].Payload = p
|
|
||||||
return 1, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *TestTun) AllocSeg(pkt *packet.OutPacket, q int) (int, error) {
|
|
||||||
buf := make([]byte, 9000)
|
|
||||||
t.buffers = append(t.buffers, buf)
|
|
||||||
idx := len(t.buffers) - 1
|
|
||||||
isV6 := false //todo?
|
|
||||||
x := pkt.UseSegment(uint16(idx), buf, isV6)
|
|
||||||
return x, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *TestTun) Write(b []byte) (int, error) {
|
|
||||||
//todo garbagey
|
|
||||||
out := packet.NewOut()
|
|
||||||
x, err := t.AllocSeg(out, 0)
|
|
||||||
if err != nil {
|
|
||||||
return 0, err
|
|
||||||
}
|
|
||||||
copy(out.SegmentPayloads[x], b)
|
|
||||||
return t.WriteOne(out, true, 0)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *TestTun) WriteOne(x *packet.OutPacket, kick bool, q int) (int, error) {
|
|
||||||
if t.closed.Load() {
|
if t.closed.Load() {
|
||||||
return 0, io.ErrClosedPipe
|
return 0, io.ErrClosedPipe
|
||||||
}
|
}
|
||||||
if len(x.SegmentIDs) == 0 {
|
|
||||||
return 0, nil
|
|
||||||
}
|
|
||||||
for i, _ := range x.SegmentIDs {
|
|
||||||
t.TxPackets <- x.SegmentPayloads[i]
|
|
||||||
}
|
|
||||||
//todo if kick, delete alloced seg
|
|
||||||
|
|
||||||
return 1, nil
|
packet := make([]byte, len(b), len(b))
|
||||||
}
|
copy(packet, b)
|
||||||
|
t.TxPackets <- packet
|
||||||
func (t *TestTun) WriteMany(x []*packet.OutPacket, q int) (int, error) {
|
return len(b), nil
|
||||||
if len(x) == 0 {
|
|
||||||
return 0, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, pkt := range x {
|
|
||||||
_, err := t.WriteOne(pkt, true, q)
|
|
||||||
if err != nil {
|
|
||||||
return 0, err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return len(x), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *TestTun) RecycleRxSeg(pkt *TunPacket, kick bool, q int) error {
|
|
||||||
//todo this ought to maybe track something
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *TestTun) Close() error {
|
func (t *TestTun) Close() error {
|
||||||
@@ -178,10 +130,31 @@ func (t *TestTun) Close() error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t *TestTun) Read(b []byte) (int, error) {
|
||||||
|
p, ok := <-t.rxPackets
|
||||||
|
if !ok {
|
||||||
|
return 0, os.ErrClosed
|
||||||
|
}
|
||||||
|
copy(b, p)
|
||||||
|
return len(p), nil
|
||||||
|
}
|
||||||
|
|
||||||
func (t *TestTun) SupportsMultiqueue() bool {
|
func (t *TestTun) SupportsMultiqueue() bool {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *TestTun) NewMultiQueueReader() (TunDev, error) {
|
func (t *TestTun) NewMultiQueueReader() (io.ReadWriteCloser, error) {
|
||||||
return nil, fmt.Errorf("TODO: multiqueue not implemented")
|
return nil, fmt.Errorf("TODO: multiqueue not implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t *TestTun) UnsafeNetworks() []netip.Prefix {
|
||||||
|
return t.unsafeNetworks
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *TestTun) UnsafeIPv4OriginAddress() netip.Prefix {
|
||||||
|
return t.unsafeIPv4Origin
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *TestTun) SNATAddress() netip.Prefix {
|
||||||
|
return t.snatAddr
|
||||||
|
}
|
||||||
|
|||||||
+41
-14
@@ -28,21 +28,23 @@ import (
|
|||||||
const tunGUIDLabel = "Fixed Nebula Windows GUID v1"
|
const tunGUIDLabel = "Fixed Nebula Windows GUID v1"
|
||||||
|
|
||||||
type winTun struct {
|
type winTun struct {
|
||||||
Device string
|
Device string
|
||||||
vpnNetworks []netip.Prefix
|
vpnNetworks []netip.Prefix
|
||||||
MTU int
|
unsafeNetworks []netip.Prefix
|
||||||
Routes atomic.Pointer[[]Route]
|
unsafeIPv4Origin netip.Prefix
|
||||||
routeTree atomic.Pointer[bart.Table[routing.Gateways]]
|
MTU int
|
||||||
l *logrus.Logger
|
Routes atomic.Pointer[[]Route]
|
||||||
|
routeTree atomic.Pointer[bart.Table[routing.Gateways]]
|
||||||
|
l *logrus.Logger
|
||||||
|
|
||||||
tun *wintun.NativeTun
|
tun *wintun.NativeTun
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTunFromFd(_ *config.C, _ *logrus.Logger, _ int, _ []netip.Prefix) (Device, error) {
|
func newTunFromFd(_ *config.C, _ *logrus.Logger, _ int, _ []netip.Prefix, _ []netip.Prefix) (Device, error) {
|
||||||
return nil, fmt.Errorf("newTunFromFd not supported in Windows")
|
return nil, fmt.Errorf("newTunFromFd not supported in Windows")
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, _ bool) (*winTun, error) {
|
func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, unsafeNetworks []netip.Prefix, _ bool) (*winTun, error) {
|
||||||
err := checkWinTunExists()
|
err := checkWinTunExists()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("can not load the wintun driver: %w", err)
|
return nil, fmt.Errorf("can not load the wintun driver: %w", err)
|
||||||
@@ -55,10 +57,11 @@ func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, _ bool) (
|
|||||||
}
|
}
|
||||||
|
|
||||||
t := &winTun{
|
t := &winTun{
|
||||||
Device: deviceName,
|
Device: deviceName,
|
||||||
vpnNetworks: vpnNetworks,
|
vpnNetworks: vpnNetworks,
|
||||||
MTU: c.GetInt("tun.mtu", DefaultMTU),
|
unsafeNetworks: unsafeNetworks,
|
||||||
l: l,
|
MTU: c.GetInt("tun.mtu", DefaultMTU),
|
||||||
|
l: l,
|
||||||
}
|
}
|
||||||
|
|
||||||
err = t.reload(c, true)
|
err = t.reload(c, true)
|
||||||
@@ -74,7 +77,10 @@ func newTun(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, _ bool) (
|
|||||||
l.WithError(err).Debug("Failed to create wintun device, retrying")
|
l.WithError(err).Debug("Failed to create wintun device, retrying")
|
||||||
tunDevice, err = wintun.CreateTUNWithRequestedGUID(deviceName, guid, t.MTU)
|
tunDevice, err = wintun.CreateTUNWithRequestedGUID(deviceName, guid, t.MTU)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("create TUN device failed: %w", err)
|
return nil, &NameError{
|
||||||
|
Name: deviceName,
|
||||||
|
Underlying: fmt.Errorf("create TUN device failed: %w", err),
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
t.tun = tunDevice.(*wintun.NativeTun)
|
t.tun = tunDevice.(*wintun.NativeTun)
|
||||||
@@ -99,6 +105,10 @@ func (t *winTun) reload(c *config.C, initial bool) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if initial {
|
||||||
|
t.unsafeIPv4Origin = prepareUnsafeOriginAddr(t, t.l, c, routes)
|
||||||
|
}
|
||||||
|
|
||||||
routeTree, err := makeRouteTree(t.l, routes, false)
|
routeTree, err := makeRouteTree(t.l, routes, false)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@@ -129,7 +139,12 @@ func (t *winTun) reload(c *config.C, initial bool) error {
|
|||||||
func (t *winTun) Activate() error {
|
func (t *winTun) Activate() error {
|
||||||
luid := winipcfg.LUID(t.tun.LUID())
|
luid := winipcfg.LUID(t.tun.LUID())
|
||||||
|
|
||||||
err := luid.SetIPAddresses(t.vpnNetworks)
|
prefixes := t.vpnNetworks
|
||||||
|
if t.unsafeIPv4Origin.IsValid() {
|
||||||
|
prefixes = append(prefixes, t.unsafeIPv4Origin)
|
||||||
|
}
|
||||||
|
|
||||||
|
err := luid.SetIPAddresses(prefixes)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("failed to set address: %w", err)
|
return fmt.Errorf("failed to set address: %w", err)
|
||||||
}
|
}
|
||||||
@@ -222,6 +237,18 @@ func (t *winTun) Networks() []netip.Prefix {
|
|||||||
return t.vpnNetworks
|
return t.vpnNetworks
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t *winTun) UnsafeNetworks() []netip.Prefix {
|
||||||
|
return t.unsafeNetworks
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *winTun) UnsafeIPv4OriginAddress() netip.Prefix {
|
||||||
|
return t.unsafeIPv4Origin
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *winTun) SNATAddress() netip.Prefix {
|
||||||
|
return netip.Prefix{}
|
||||||
|
}
|
||||||
|
|
||||||
func (t *winTun) Name() string {
|
func (t *winTun) Name() string {
|
||||||
return t.Device
|
return t.Device
|
||||||
}
|
}
|
||||||
|
|||||||
+9
-35
@@ -1,17 +1,15 @@
|
|||||||
package overlay
|
package overlay
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"io"
|
"io"
|
||||||
"net/netip"
|
"net/netip"
|
||||||
|
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/slackhq/nebula/config"
|
"github.com/slackhq/nebula/config"
|
||||||
"github.com/slackhq/nebula/packet"
|
|
||||||
"github.com/slackhq/nebula/routing"
|
"github.com/slackhq/nebula/routing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func NewUserDeviceFromConfig(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, routines int) (Device, error) {
|
func NewUserDeviceFromConfig(c *config.C, l *logrus.Logger, vpnNetworks []netip.Prefix, unsafeNetworks []netip.Prefix, routines int) (Device, error) {
|
||||||
return NewUserDevice(vpnNetworks)
|
return NewUserDevice(vpnNetworks)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -38,19 +36,15 @@ type UserDevice struct {
|
|||||||
inboundWriter *io.PipeWriter
|
inboundWriter *io.PipeWriter
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *UserDevice) NewPacketArrays(batchSize int) []TunPacket {
|
func (d *UserDevice) UnsafeNetworks() []netip.Prefix {
|
||||||
//inPackets := make([]TunPacket, batchSize)
|
return nil
|
||||||
//outPackets := make([]OutPacket, batchSize)
|
|
||||||
panic("not implemented") //todo!
|
|
||||||
//for i := 0; i < batchSize; i++ {
|
|
||||||
// inPackets[i] = vhostnet.NewVIO()
|
|
||||||
// outPackets[i] = packet.New(false)
|
|
||||||
//}
|
|
||||||
//return inPackets, outPackets
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *UserDevice) RecycleRxSeg(pkt TunPacket, kick bool, q int) error {
|
func (d *UserDevice) SNATAddress() netip.Prefix {
|
||||||
return nil
|
return netip.Prefix{}
|
||||||
|
}
|
||||||
|
func (d *UserDevice) UnsafeIPv4OriginAddress() netip.Prefix {
|
||||||
|
return netip.Prefix{}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *UserDevice) Activate() error {
|
func (d *UserDevice) Activate() error {
|
||||||
@@ -67,7 +61,7 @@ func (d *UserDevice) SupportsMultiqueue() bool {
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *UserDevice) NewMultiQueueReader() (TunDev, error) {
|
func (d *UserDevice) NewMultiQueueReader() (io.ReadWriteCloser, error) {
|
||||||
return d, nil
|
return d, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -86,23 +80,3 @@ func (d *UserDevice) Close() error {
|
|||||||
d.outboundWriter.Close()
|
d.outboundWriter.Close()
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *UserDevice) ReadMany(b []TunPacket, _ int) (int, error) {
|
|
||||||
_, err := d.Read(b[0].GetPayload())
|
|
||||||
if err != nil {
|
|
||||||
return 0, err
|
|
||||||
}
|
|
||||||
return 1, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *UserDevice) AllocSeg(pkt *packet.OutPacket, q int) (int, error) {
|
|
||||||
return 0, fmt.Errorf("user: AllocSeg not implemented")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *UserDevice) WriteOne(x *packet.OutPacket, kick bool, q int) (int, error) {
|
|
||||||
return 0, fmt.Errorf("user: WriteOne not implemented")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *UserDevice) WriteMany(x []*packet.OutPacket, q int) (int, error) {
|
|
||||||
return 0, fmt.Errorf("user: WriteMany not implemented")
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
Significant portions of this code are derived from https://pkg.go.dev/github.com/hetznercloud/virtio-go
|
|
||||||
|
|
||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2025 Hetzner Cloud GmbH
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
// Package vhost implements the basic ioctl requests needed to interact with the
|
|
||||||
// kernel-level virtio server that provides accelerated virtio devices for
|
|
||||||
// networking and more.
|
|
||||||
package vhost
|
|
||||||
@@ -1,218 +0,0 @@
|
|||||||
package vhost
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"unsafe"
|
|
||||||
|
|
||||||
"github.com/slackhq/nebula/overlay/virtqueue"
|
|
||||||
"github.com/slackhq/nebula/util/virtio"
|
|
||||||
"golang.org/x/sys/unix"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// vhostIoctlGetFeatures can be used to retrieve the features supported by
|
|
||||||
// the vhost implementation in the kernel.
|
|
||||||
//
|
|
||||||
// Response payload: [virtio.Feature]
|
|
||||||
// Kernel name: VHOST_GET_FEATURES
|
|
||||||
vhostIoctlGetFeatures = 0x8008af00
|
|
||||||
|
|
||||||
// vhostIoctlSetFeatures can be used to communicate the features supported
|
|
||||||
// by this virtio implementation to the kernel.
|
|
||||||
//
|
|
||||||
// Request payload: [virtio.Feature]
|
|
||||||
// Kernel name: VHOST_SET_FEATURES
|
|
||||||
vhostIoctlSetFeatures = 0x4008af00
|
|
||||||
|
|
||||||
// vhostIoctlSetOwner can be used to set the current process as the
|
|
||||||
// exclusive owner of a control file descriptor.
|
|
||||||
//
|
|
||||||
// Request payload: none
|
|
||||||
// Kernel name: VHOST_SET_OWNER
|
|
||||||
vhostIoctlSetOwner = 0x0000af01
|
|
||||||
|
|
||||||
// vhostIoctlSetMemoryLayout can be used to set up or modify the memory
|
|
||||||
// layout which describes the IOTLB mappings in the kernel.
|
|
||||||
//
|
|
||||||
// Request payload: [MemoryLayout] with custom serialization
|
|
||||||
// Kernel name: VHOST_SET_MEM_TABLE
|
|
||||||
vhostIoctlSetMemoryLayout = 0x4008af03
|
|
||||||
|
|
||||||
// vhostIoctlSetQueueSize can be used to set the size of the virtqueue.
|
|
||||||
//
|
|
||||||
// Request payload: [QueueState]
|
|
||||||
// Kernel name: VHOST_SET_VRING_NUM
|
|
||||||
vhostIoctlSetQueueSize = 0x4008af10
|
|
||||||
|
|
||||||
// vhostIoctlSetQueueAddress can be used to set the addresses of the
|
|
||||||
// different parts of the virtqueue.
|
|
||||||
//
|
|
||||||
// Request payload: [QueueAddresses]
|
|
||||||
// Kernel name: VHOST_SET_VRING_ADDR
|
|
||||||
vhostIoctlSetQueueAddress = 0x4028af11
|
|
||||||
|
|
||||||
// vhostIoctlSetAvailableRingBase can be used to set the index of the next
|
|
||||||
// available ring entry the device will process.
|
|
||||||
//
|
|
||||||
// Request payload: [QueueState]
|
|
||||||
// Kernel name: VHOST_SET_VRING_BASE
|
|
||||||
vhostIoctlSetAvailableRingBase = 0x4008af12
|
|
||||||
|
|
||||||
// vhostIoctlSetQueueKickEventFD can be used to set the event file
|
|
||||||
// descriptor to signal the device when descriptor chains were added to the
|
|
||||||
// available ring.
|
|
||||||
//
|
|
||||||
// Request payload: [QueueFile]
|
|
||||||
// Kernel name: VHOST_SET_VRING_KICK
|
|
||||||
vhostIoctlSetQueueKickEventFD = 0x4008af20
|
|
||||||
|
|
||||||
// vhostIoctlSetQueueCallEventFD can be used to set the event file
|
|
||||||
// descriptor that gets signaled by the device when descriptor chains have
|
|
||||||
// been used by it.
|
|
||||||
//
|
|
||||||
// Request payload: [QueueFile]
|
|
||||||
// Kernel name: VHOST_SET_VRING_CALL
|
|
||||||
vhostIoctlSetQueueCallEventFD = 0x4008af21
|
|
||||||
)
|
|
||||||
|
|
||||||
// QueueState is an ioctl request payload that can hold a queue index and any
|
|
||||||
// 32-bit number.
|
|
||||||
//
|
|
||||||
// Kernel name: vhost_vring_state
|
|
||||||
type QueueState struct {
|
|
||||||
// QueueIndex is the index of the virtqueue.
|
|
||||||
QueueIndex uint32
|
|
||||||
// Num is any 32-bit number, depending on the request.
|
|
||||||
Num uint32
|
|
||||||
}
|
|
||||||
|
|
||||||
// QueueAddresses is an ioctl request payload that can hold the addresses of the
|
|
||||||
// different parts of a virtqueue.
|
|
||||||
//
|
|
||||||
// Kernel name: vhost_vring_addr
|
|
||||||
type QueueAddresses struct {
|
|
||||||
// QueueIndex is the index of the virtqueue.
|
|
||||||
QueueIndex uint32
|
|
||||||
// Flags that are not used in this implementation.
|
|
||||||
Flags uint32
|
|
||||||
// DescriptorTableAddress is the address of the descriptor table in user
|
|
||||||
// space memory. It must be 16-byte aligned.
|
|
||||||
DescriptorTableAddress uintptr
|
|
||||||
// UsedRingAddress is the address of the used ring in user space memory. It
|
|
||||||
// must be 4-byte aligned.
|
|
||||||
UsedRingAddress uintptr
|
|
||||||
// AvailableRingAddress is the address of the available ring in user space
|
|
||||||
// memory. It must be 2-byte aligned.
|
|
||||||
AvailableRingAddress uintptr
|
|
||||||
// LogAddress is used for an optional logging support, not supported by this
|
|
||||||
// implementation.
|
|
||||||
LogAddress uintptr
|
|
||||||
}
|
|
||||||
|
|
||||||
// QueueFile is an ioctl request payload that can hold a queue index and a file
|
|
||||||
// descriptor.
|
|
||||||
//
|
|
||||||
// Kernel name: vhost_vring_file
|
|
||||||
type QueueFile struct {
|
|
||||||
// QueueIndex is the index of the virtqueue.
|
|
||||||
QueueIndex uint32
|
|
||||||
// FD is the file descriptor of the file. Pass -1 to unbind from a file.
|
|
||||||
FD int32
|
|
||||||
}
|
|
||||||
|
|
||||||
// IoctlPtr is a copy of the similarly named unexported function from the Go
|
|
||||||
// unix package. This is needed to do custom ioctl requests not supported by the
|
|
||||||
// standard library.
|
|
||||||
func IoctlPtr(fd int, req uint, arg unsafe.Pointer) error {
|
|
||||||
_, _, err := unix.Syscall(unix.SYS_IOCTL, uintptr(fd), uintptr(req), uintptr(arg))
|
|
||||||
if err != 0 {
|
|
||||||
return fmt.Errorf("ioctl request %d: %w", req, err)
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// GetFeatures requests the supported feature bits from the virtio device
|
|
||||||
// associated with the given control file descriptor.
|
|
||||||
func GetFeatures(controlFD int) (virtio.Feature, error) {
|
|
||||||
var features virtio.Feature
|
|
||||||
if err := IoctlPtr(controlFD, vhostIoctlGetFeatures, unsafe.Pointer(&features)); err != nil {
|
|
||||||
return 0, fmt.Errorf("get features: %w", err)
|
|
||||||
}
|
|
||||||
return features, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetFeatures communicates the feature bits supported by this implementation
|
|
||||||
// to the virtio device associated with the given control file descriptor.
|
|
||||||
func SetFeatures(controlFD int, features virtio.Feature) error {
|
|
||||||
if err := IoctlPtr(controlFD, vhostIoctlSetFeatures, unsafe.Pointer(&features)); err != nil {
|
|
||||||
return fmt.Errorf("set features: %w", err)
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// OwnControlFD sets the current process as the exclusive owner for the
|
|
||||||
// given control file descriptor. This must be called before interacting with
|
|
||||||
// the control file descriptor in any other way.
|
|
||||||
func OwnControlFD(controlFD int) error {
|
|
||||||
if err := IoctlPtr(controlFD, vhostIoctlSetOwner, unsafe.Pointer(nil)); err != nil {
|
|
||||||
return fmt.Errorf("set control file descriptor owner: %w", err)
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetMemoryLayout sets up or modifies the memory layout for the kernel-level
|
|
||||||
// virtio device associated with the given control file descriptor.
|
|
||||||
func SetMemoryLayout(controlFD int, layout MemoryLayout) error {
|
|
||||||
payload := layout.serializePayload()
|
|
||||||
if err := IoctlPtr(controlFD, vhostIoctlSetMemoryLayout, unsafe.Pointer(&payload[0])); err != nil {
|
|
||||||
return fmt.Errorf("set memory layout: %w", err)
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// RegisterQueue registers a virtio queue with the kernel-level virtio server.
|
|
||||||
// The virtqueue will be linked to the given control file descriptor and will
|
|
||||||
// have the given index. The kernel will use this queue until the control file
|
|
||||||
// descriptor is closed.
|
|
||||||
func RegisterQueue(controlFD int, queueIndex uint32, queue *virtqueue.SplitQueue) error {
|
|
||||||
if err := IoctlPtr(controlFD, vhostIoctlSetQueueSize, unsafe.Pointer(&QueueState{
|
|
||||||
QueueIndex: queueIndex,
|
|
||||||
Num: uint32(queue.Size()),
|
|
||||||
})); err != nil {
|
|
||||||
return fmt.Errorf("set queue size: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := IoctlPtr(controlFD, vhostIoctlSetQueueAddress, unsafe.Pointer(&QueueAddresses{
|
|
||||||
QueueIndex: queueIndex,
|
|
||||||
Flags: 0,
|
|
||||||
DescriptorTableAddress: queue.DescriptorTable().Address(),
|
|
||||||
UsedRingAddress: queue.UsedRing().Address(),
|
|
||||||
AvailableRingAddress: queue.AvailableRing().Address(),
|
|
||||||
LogAddress: 0,
|
|
||||||
})); err != nil {
|
|
||||||
return fmt.Errorf("set queue addresses: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := IoctlPtr(controlFD, vhostIoctlSetAvailableRingBase, unsafe.Pointer(&QueueState{
|
|
||||||
QueueIndex: queueIndex,
|
|
||||||
Num: 0,
|
|
||||||
})); err != nil {
|
|
||||||
return fmt.Errorf("set available ring base: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := IoctlPtr(controlFD, vhostIoctlSetQueueKickEventFD, unsafe.Pointer(&QueueFile{
|
|
||||||
QueueIndex: queueIndex,
|
|
||||||
FD: int32(queue.KickEventFD()),
|
|
||||||
})); err != nil {
|
|
||||||
return fmt.Errorf("set kick event file descriptor: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := IoctlPtr(controlFD, vhostIoctlSetQueueCallEventFD, unsafe.Pointer(&QueueFile{
|
|
||||||
QueueIndex: queueIndex,
|
|
||||||
FD: int32(queue.CallEventFD()),
|
|
||||||
})); err != nil {
|
|
||||||
return fmt.Errorf("set call event file descriptor: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
package vhost_test
|
|
||||||
|
|
||||||
import (
|
|
||||||
"testing"
|
|
||||||
"unsafe"
|
|
||||||
|
|
||||||
"github.com/slackhq/nebula/overlay/vhost"
|
|
||||||
"github.com/stretchr/testify/assert"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestQueueState_Size(t *testing.T) {
|
|
||||||
assert.EqualValues(t, 8, unsafe.Sizeof(vhost.QueueState{}))
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestQueueAddresses_Size(t *testing.T) {
|
|
||||||
assert.EqualValues(t, 40, unsafe.Sizeof(vhost.QueueAddresses{}))
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestQueueFile_Size(t *testing.T) {
|
|
||||||
assert.EqualValues(t, 8, unsafe.Sizeof(vhost.QueueFile{}))
|
|
||||||
}
|
|
||||||
@@ -1,73 +0,0 @@
|
|||||||
package vhost
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/binary"
|
|
||||||
"fmt"
|
|
||||||
"unsafe"
|
|
||||||
|
|
||||||
"github.com/slackhq/nebula/overlay/virtqueue"
|
|
||||||
)
|
|
||||||
|
|
||||||
// MemoryRegion describes a region of userspace memory which is being made
|
|
||||||
// accessible to a vhost device.
|
|
||||||
//
|
|
||||||
// Kernel name: vhost_memory_region
|
|
||||||
type MemoryRegion struct {
|
|
||||||
// GuestPhysicalAddress is the physical address of the memory region within
|
|
||||||
// the guest, when virtualization is used. When no virtualization is used,
|
|
||||||
// this should be the same as UserspaceAddress.
|
|
||||||
GuestPhysicalAddress uintptr
|
|
||||||
// Size is the size of the memory region.
|
|
||||||
Size uint64
|
|
||||||
// UserspaceAddress is the virtual address in the userspace of the host
|
|
||||||
// where the memory region can be found.
|
|
||||||
UserspaceAddress uintptr
|
|
||||||
// Padding and room for flags. Currently unused.
|
|
||||||
_ uint64
|
|
||||||
}
|
|
||||||
|
|
||||||
// MemoryLayout is a list of [MemoryRegion]s.
|
|
||||||
type MemoryLayout []MemoryRegion
|
|
||||||
|
|
||||||
// NewMemoryLayoutForQueues returns a new [MemoryLayout] that describes the
|
|
||||||
// memory pages used by the descriptor tables of the given queues.
|
|
||||||
func NewMemoryLayoutForQueues(queues []*virtqueue.SplitQueue) MemoryLayout {
|
|
||||||
regions := make([]MemoryRegion, 0)
|
|
||||||
for _, queue := range queues {
|
|
||||||
for address, size := range queue.DescriptorTable().BufferAddresses() {
|
|
||||||
regions = append(regions, MemoryRegion{
|
|
||||||
// There is no virtualization in play here, so the guest address
|
|
||||||
// is the same as in the host's userspace.
|
|
||||||
GuestPhysicalAddress: address,
|
|
||||||
Size: uint64(size),
|
|
||||||
UserspaceAddress: address,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return regions
|
|
||||||
}
|
|
||||||
|
|
||||||
// serializePayload serializes the list of memory regions into a format that is
|
|
||||||
// compatible to the vhost_memory kernel struct. The returned byte slice can be
|
|
||||||
// used as a payload for the vhostIoctlSetMemoryLayout ioctl.
|
|
||||||
func (regions MemoryLayout) serializePayload() []byte {
|
|
||||||
regionCount := len(regions)
|
|
||||||
regionSize := int(unsafe.Sizeof(MemoryRegion{}))
|
|
||||||
payload := make([]byte, 8+regionCount*regionSize)
|
|
||||||
|
|
||||||
// The first 32 bits contain the number of memory regions. The following 32
|
|
||||||
// bits are padding.
|
|
||||||
binary.LittleEndian.PutUint32(payload[0:4], uint32(regionCount))
|
|
||||||
|
|
||||||
if regionCount > 0 {
|
|
||||||
// The underlying byte array of the slice should already have the correct
|
|
||||||
// format, so just copy that.
|
|
||||||
copied := copy(payload[8:], unsafe.Slice((*byte)(unsafe.Pointer(®ions[0])), regionCount*regionSize))
|
|
||||||
if copied != regionCount*regionSize {
|
|
||||||
panic(fmt.Sprintf("copied only %d bytes of the memory regions, but expected %d",
|
|
||||||
copied, regionCount*regionSize))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return payload
|
|
||||||
}
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
package vhost
|
|
||||||
|
|
||||||
import (
|
|
||||||
"testing"
|
|
||||||
"unsafe"
|
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestMemoryRegion_Size(t *testing.T) {
|
|
||||||
assert.EqualValues(t, 32, unsafe.Sizeof(MemoryRegion{}))
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestMemoryLayout_SerializePayload(t *testing.T) {
|
|
||||||
layout := MemoryLayout([]MemoryRegion{
|
|
||||||
{
|
|
||||||
GuestPhysicalAddress: 42,
|
|
||||||
Size: 100,
|
|
||||||
UserspaceAddress: 142,
|
|
||||||
}, {
|
|
||||||
GuestPhysicalAddress: 99,
|
|
||||||
Size: 100,
|
|
||||||
UserspaceAddress: 99,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
payload := layout.serializePayload()
|
|
||||||
|
|
||||||
assert.Equal(t, []byte{
|
|
||||||
0x02, 0x00, 0x00, 0x00, // nregions
|
|
||||||
0x00, 0x00, 0x00, 0x00, // padding
|
|
||||||
// region 0
|
|
||||||
0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // guest_phys_addr
|
|
||||||
0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // memory_size
|
|
||||||
0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // userspace_addr
|
|
||||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // flags_padding
|
|
||||||
// region 1
|
|
||||||
0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // guest_phys_addr
|
|
||||||
0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // memory_size
|
|
||||||
0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // userspace_addr
|
|
||||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // flags_padding
|
|
||||||
}, payload)
|
|
||||||
}
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
Significant portions of this code are derived from https://pkg.go.dev/github.com/hetznercloud/virtio-go
|
|
||||||
|
|
||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2025 Hetzner Cloud GmbH
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
@@ -1,339 +0,0 @@
|
|||||||
package vhostnet
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
|
||||||
"os"
|
|
||||||
"runtime"
|
|
||||||
|
|
||||||
"github.com/slackhq/nebula/overlay/vhost"
|
|
||||||
"github.com/slackhq/nebula/overlay/virtqueue"
|
|
||||||
"github.com/slackhq/nebula/packet"
|
|
||||||
"github.com/slackhq/nebula/util/virtio"
|
|
||||||
"golang.org/x/sys/unix"
|
|
||||||
)
|
|
||||||
|
|
||||||
// ErrDeviceClosed is returned when the [Device] is closed while operations are
|
|
||||||
// still running.
|
|
||||||
var ErrDeviceClosed = errors.New("device was closed")
|
|
||||||
|
|
||||||
// The indexes for the receive and transmit queues.
|
|
||||||
const (
|
|
||||||
receiveQueueIndex = 0
|
|
||||||
transmitQueueIndex = 1
|
|
||||||
)
|
|
||||||
|
|
||||||
// Device represents a vhost networking device within the kernel-level virtio
|
|
||||||
// implementation and provides methods to interact with it.
|
|
||||||
type Device struct {
|
|
||||||
controlFD int
|
|
||||||
|
|
||||||
ReceiveQueue *virtqueue.SplitQueue
|
|
||||||
TransmitQueue *virtqueue.SplitQueue
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewDevice initializes a new vhost networking device within the
|
|
||||||
// kernel-level virtio implementation, sets up the virtqueues and returns a
|
|
||||||
// [Device] instance that can be used to communicate with that vhost device.
|
|
||||||
//
|
|
||||||
// There are multiple options that can be passed to this constructor to
|
|
||||||
// influence device creation:
|
|
||||||
// - [WithQueueSize]
|
|
||||||
// - [WithBackendFD]
|
|
||||||
// - [WithBackendDevice]
|
|
||||||
//
|
|
||||||
// Remember to call [Device.Close] after use to free up resources.
|
|
||||||
func NewDevice(options ...Option) (*Device, error) {
|
|
||||||
var err error
|
|
||||||
opts := optionDefaults
|
|
||||||
opts.apply(options)
|
|
||||||
if err = opts.validate(); err != nil {
|
|
||||||
return nil, fmt.Errorf("invalid options: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
dev := Device{
|
|
||||||
controlFD: -1,
|
|
||||||
}
|
|
||||||
|
|
||||||
// Clean up a partially initialized device when something fails.
|
|
||||||
defer func() {
|
|
||||||
if err != nil {
|
|
||||||
_ = dev.Close()
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
|
|
||||||
// Retrieve a new control file descriptor. This will be used to configure
|
|
||||||
// the vhost networking device in the kernel.
|
|
||||||
dev.controlFD, err = unix.Open("/dev/vhost-net", os.O_RDWR, 0666)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("get control file descriptor: %w", err)
|
|
||||||
}
|
|
||||||
if err = vhost.OwnControlFD(dev.controlFD); err != nil {
|
|
||||||
return nil, fmt.Errorf("own control file descriptor: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Advertise the supported features. This isn't much for now.
|
|
||||||
// TODO: Add feature options and implement proper feature negotiation.
|
|
||||||
getFeatures, err := vhost.GetFeatures(dev.controlFD) //0x1033D008000 but why
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("get features: %w", err)
|
|
||||||
}
|
|
||||||
if getFeatures == 0 {
|
|
||||||
|
|
||||||
}
|
|
||||||
//const funky = virtio.Feature(1 << 27)
|
|
||||||
//features := virtio.FeatureVersion1 | funky // | todo virtio.FeatureNetMergeRXBuffers
|
|
||||||
features := virtio.FeatureVersion1 | virtio.FeatureNetMergeRXBuffers
|
|
||||||
if err = vhost.SetFeatures(dev.controlFD, features); err != nil {
|
|
||||||
return nil, fmt.Errorf("set features: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
itemSize := os.Getpagesize() * 4 //todo config
|
|
||||||
|
|
||||||
// Initialize and register the queues needed for the networking device.
|
|
||||||
if dev.ReceiveQueue, err = createQueue(dev.controlFD, receiveQueueIndex, opts.queueSize, itemSize); err != nil {
|
|
||||||
return nil, fmt.Errorf("create receive queue: %w", err)
|
|
||||||
}
|
|
||||||
if dev.TransmitQueue, err = createQueue(dev.controlFD, transmitQueueIndex, opts.queueSize, itemSize); err != nil {
|
|
||||||
return nil, fmt.Errorf("create transmit queue: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set up memory mappings for all buffers used by the queues. This has to
|
|
||||||
// happen before a backend for the queues can be registered.
|
|
||||||
memoryLayout := vhost.NewMemoryLayoutForQueues(
|
|
||||||
[]*virtqueue.SplitQueue{dev.ReceiveQueue, dev.TransmitQueue},
|
|
||||||
)
|
|
||||||
if err = vhost.SetMemoryLayout(dev.controlFD, memoryLayout); err != nil {
|
|
||||||
return nil, fmt.Errorf("setup memory layout: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set the queue backends. This activates the queues within the kernel.
|
|
||||||
if err = SetQueueBackend(dev.controlFD, receiveQueueIndex, opts.backendFD); err != nil {
|
|
||||||
return nil, fmt.Errorf("set receive queue backend: %w", err)
|
|
||||||
}
|
|
||||||
if err = SetQueueBackend(dev.controlFD, transmitQueueIndex, opts.backendFD); err != nil {
|
|
||||||
return nil, fmt.Errorf("set transmit queue backend: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Fully populate the rx queue with available buffers which the device
|
|
||||||
// can write new packets into.
|
|
||||||
if err = dev.refillReceiveQueue(); err != nil {
|
|
||||||
return nil, fmt.Errorf("refill receive queue: %w", err)
|
|
||||||
}
|
|
||||||
if err = dev.prefillTxQueue(); err != nil {
|
|
||||||
return nil, fmt.Errorf("prefill tx queue: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Make sure to clean up even when the device gets garbage collected without
|
|
||||||
// Close being called first.
|
|
||||||
devPtr := &dev
|
|
||||||
runtime.SetFinalizer(devPtr, (*Device).Close)
|
|
||||||
|
|
||||||
return devPtr, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// refillReceiveQueue offers as many new device-writable buffers to the device
|
|
||||||
// as the queue can fit. The device will then use these to write received
|
|
||||||
// packets.
|
|
||||||
func (dev *Device) refillReceiveQueue() error {
|
|
||||||
for {
|
|
||||||
_, err := dev.ReceiveQueue.OfferInDescriptorChains()
|
|
||||||
if err != nil {
|
|
||||||
if errors.Is(err, virtqueue.ErrNotEnoughFreeDescriptors) {
|
|
||||||
// Queue is full, job is done.
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
return fmt.Errorf("offer descriptor chain: %w", err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dev *Device) prefillTxQueue() error {
|
|
||||||
for {
|
|
||||||
dt := dev.TransmitQueue.DescriptorTable()
|
|
||||||
for {
|
|
||||||
x, _, err := dt.CreateDescriptorForOutputs()
|
|
||||||
if err != nil {
|
|
||||||
if errors.Is(err, virtqueue.ErrNotEnoughFreeDescriptors) {
|
|
||||||
// Queue is full, job is done.
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
err = dev.TransmitQueue.OfferDescriptorChains([]uint16{x}, false)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Close cleans up the vhost networking device within the kernel and releases
|
|
||||||
// all resources used for it.
|
|
||||||
// The implementation will try to release as many resources as possible and
|
|
||||||
// collect potential errors before returning them.
|
|
||||||
func (dev *Device) Close() error {
|
|
||||||
// Closing the control file descriptor will unregister all queues from the
|
|
||||||
// kernel.
|
|
||||||
if dev.controlFD >= 0 {
|
|
||||||
if err := unix.Close(dev.controlFD); err != nil {
|
|
||||||
// Return an error and do not continue, because the memory used for
|
|
||||||
// the queues should not be released before they were unregistered
|
|
||||||
// from the kernel.
|
|
||||||
return fmt.Errorf("close control file descriptor: %w", err)
|
|
||||||
}
|
|
||||||
dev.controlFD = -1
|
|
||||||
}
|
|
||||||
|
|
||||||
var errs []error
|
|
||||||
|
|
||||||
if dev.ReceiveQueue != nil {
|
|
||||||
if err := dev.ReceiveQueue.Close(); err == nil {
|
|
||||||
dev.ReceiveQueue = nil
|
|
||||||
} else {
|
|
||||||
errs = append(errs, fmt.Errorf("close receive queue: %w", err))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if dev.TransmitQueue != nil {
|
|
||||||
if err := dev.TransmitQueue.Close(); err == nil {
|
|
||||||
dev.TransmitQueue = nil
|
|
||||||
} else {
|
|
||||||
errs = append(errs, fmt.Errorf("close transmit queue: %w", err))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(errs) == 0 {
|
|
||||||
// Everything was cleaned up. No need to run the finalizer anymore.
|
|
||||||
runtime.SetFinalizer(dev, nil)
|
|
||||||
}
|
|
||||||
|
|
||||||
return errors.Join(errs...)
|
|
||||||
}
|
|
||||||
|
|
||||||
// createQueue creates a new virtqueue and registers it with the vhost device
|
|
||||||
// using the given index.
|
|
||||||
func createQueue(controlFD int, queueIndex int, queueSize int, itemSize int) (*virtqueue.SplitQueue, error) {
|
|
||||||
queue, err := virtqueue.NewSplitQueue(queueSize, itemSize)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("create virtqueue: %w", err)
|
|
||||||
}
|
|
||||||
if err = vhost.RegisterQueue(controlFD, uint32(queueIndex), queue); err != nil {
|
|
||||||
return nil, fmt.Errorf("register virtqueue with index %d: %w", queueIndex, err)
|
|
||||||
}
|
|
||||||
return queue, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dev *Device) GetPacketForTx() (uint16, []byte, error) {
|
|
||||||
idx, err := dev.TransmitQueue.TakeSingleIndex(context.TODO())
|
|
||||||
if err != nil {
|
|
||||||
return 0, nil, fmt.Errorf("transmit queue: %w", err)
|
|
||||||
}
|
|
||||||
buf := dev.TransmitQueue.GetDescriptorItem(idx)
|
|
||||||
return idx, buf, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dev *Device) TransmitPacket(pkt *packet.OutPacket, kick bool) error {
|
|
||||||
if len(pkt.SegmentIDs) == 0 {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
for idx := range pkt.SegmentIDs {
|
|
||||||
segmentID := pkt.SegmentIDs[idx]
|
|
||||||
dev.TransmitQueue.SetDescSize(segmentID, len(pkt.Segments[idx]))
|
|
||||||
}
|
|
||||||
err := dev.TransmitQueue.OfferDescriptorChains(pkt.SegmentIDs, false)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("offer descriptor chains: %w", err)
|
|
||||||
}
|
|
||||||
pkt.Reset()
|
|
||||||
if kick {
|
|
||||||
return dev.TransmitQueue.Kick()
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dev *Device) TransmitPackets(pkts []*packet.OutPacket) error {
|
|
||||||
if len(pkts) == 0 {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
for i := range pkts {
|
|
||||||
if err := dev.TransmitPacket(pkts[i], false); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if err := dev.TransmitQueue.Kick(); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// ProcessRxChain processes a single chain to create one packet. The number of processed chains is returned.
|
|
||||||
func (dev *Device) ProcessRxChain(pkt *VirtIOPacket, chain virtqueue.UsedElement) (int, error) {
|
|
||||||
//read first element to see how many descriptors we need:
|
|
||||||
pkt.Chain = uint16(chain.DescriptorIndex)
|
|
||||||
buf := dev.ReceiveQueue.GetDescriptorItem(pkt.Chain)
|
|
||||||
|
|
||||||
// The specification requires that the first descriptor chain starts
|
|
||||||
// with a virtio-net header. It is not clear, whether it is also
|
|
||||||
// required to be fully contained in the first buffer of that
|
|
||||||
// descriptor chain, but it is reasonable to assume that this is
|
|
||||||
// always the case.
|
|
||||||
// The decode method already does the buffer length check.
|
|
||||||
|
|
||||||
//HACK: we only want the last bit of the header, the NumBuffers field. So, let's grab just that:
|
|
||||||
//numBuffers := binary.BigEndian.Uint16(buf[virtio.NetHdrSize-3:])
|
|
||||||
//even bigger hack: apparently this is hitting some kind of memory access pitfall? Let's only grab the last byte:
|
|
||||||
//numBuffers := buf[virtio.NetHdrSize-2]
|
|
||||||
|
|
||||||
//if err = pkt.header.Decode(buf); err != nil {
|
|
||||||
// // The device misbehaved. There is no way we can gracefully
|
|
||||||
// // recover from this, because we don't know how many of the
|
|
||||||
// // following descriptor chains belong to this packet.
|
|
||||||
// return 0, fmt.Errorf("decode vnethdr: %w", err)
|
|
||||||
//}
|
|
||||||
|
|
||||||
//we have the header now: what do we need to do?
|
|
||||||
//todo we're ignoring the header lol
|
|
||||||
//if int(numBuffers) != 1 {
|
|
||||||
// return 0, fmt.Errorf("too smol-brain to handle more than one buffer per Chain item right now: %d chains, %d bufs", 1, int(numBuffers))
|
|
||||||
//}
|
|
||||||
|
|
||||||
if chain.Length > 16000 {
|
|
||||||
//todo!
|
|
||||||
pkt.payload = nil
|
|
||||||
return 1, fmt.Errorf("too big packet length: %d", chain.Length)
|
|
||||||
}
|
|
||||||
|
|
||||||
//shift the buffer out of out:
|
|
||||||
pkt.payload = buf[virtio.NetHdrSize:chain.Length]
|
|
||||||
return 1, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
type VirtIOPacket struct {
|
|
||||||
payload []byte
|
|
||||||
//header virtio.NetHdr
|
|
||||||
Chain uint16
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewVIO() *VirtIOPacket {
|
|
||||||
out := new(VirtIOPacket)
|
|
||||||
out.payload = nil
|
|
||||||
out.Chain = 0
|
|
||||||
return out
|
|
||||||
}
|
|
||||||
|
|
||||||
func (v *VirtIOPacket) Reset() {
|
|
||||||
v.payload = nil
|
|
||||||
v.Chain = 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (v *VirtIOPacket) GetPayload() []byte {
|
|
||||||
return v.payload //todo this could be dev.ReceiveQueue.GetDescriptorItem(idx)
|
|
||||||
}
|
|
||||||
func (v *VirtIOPacket) SetPayload(x []byte) {
|
|
||||||
v.payload = x
|
|
||||||
}
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
// Package vhostnet implements methods to initialize vhost networking devices
|
|
||||||
// within the kernel-level virtio implementation and communicate with them.
|
|
||||||
package vhostnet
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
package vhostnet
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"unsafe"
|
|
||||||
|
|
||||||
"github.com/slackhq/nebula/overlay/vhost"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// vhostNetIoctlSetBackend can be used to attach a virtqueue to a RAW socket
|
|
||||||
// or TAP device.
|
|
||||||
//
|
|
||||||
// Request payload: [vhost.QueueFile]
|
|
||||||
// Kernel name: VHOST_NET_SET_BACKEND
|
|
||||||
vhostNetIoctlSetBackend = 0x4008af30
|
|
||||||
)
|
|
||||||
|
|
||||||
// SetQueueBackend attaches a virtqueue of the vhost networking device
|
|
||||||
// described by controlFD to the given backend file descriptor.
|
|
||||||
// The backend file descriptor can either be a RAW socket or a TAP device. When
|
|
||||||
// it is -1, the queue will be detached.
|
|
||||||
func SetQueueBackend(controlFD int, queueIndex uint32, backendFD int) error {
|
|
||||||
if err := vhost.IoctlPtr(controlFD, vhostNetIoctlSetBackend, unsafe.Pointer(&vhost.QueueFile{
|
|
||||||
QueueIndex: queueIndex,
|
|
||||||
FD: int32(backendFD),
|
|
||||||
})); err != nil {
|
|
||||||
return fmt.Errorf("set queue backend file descriptor: %w", err)
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
@@ -1,69 +0,0 @@
|
|||||||
package vhostnet
|
|
||||||
|
|
||||||
import (
|
|
||||||
"errors"
|
|
||||||
|
|
||||||
"github.com/slackhq/nebula/overlay/virtqueue"
|
|
||||||
)
|
|
||||||
|
|
||||||
type optionValues struct {
|
|
||||||
queueSize int
|
|
||||||
backendFD int
|
|
||||||
}
|
|
||||||
|
|
||||||
func (o *optionValues) apply(options []Option) {
|
|
||||||
for _, option := range options {
|
|
||||||
option(o)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (o *optionValues) validate() error {
|
|
||||||
if o.queueSize == -1 {
|
|
||||||
return errors.New("queue size is required")
|
|
||||||
}
|
|
||||||
if err := virtqueue.CheckQueueSize(o.queueSize); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if o.backendFD == -1 {
|
|
||||||
return errors.New("backend file descriptor is required")
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var optionDefaults = optionValues{
|
|
||||||
// Required.
|
|
||||||
queueSize: -1,
|
|
||||||
// Required.
|
|
||||||
backendFD: -1,
|
|
||||||
}
|
|
||||||
|
|
||||||
// Option can be passed to [NewDevice] to influence device creation.
|
|
||||||
type Option func(*optionValues)
|
|
||||||
|
|
||||||
// WithQueueSize returns an [Option] that sets the size of the TX and RX queues
|
|
||||||
// that are to be created for the device. It specifies the number of
|
|
||||||
// entries/buffers each queue can hold. This also affects the memory
|
|
||||||
// consumption.
|
|
||||||
// This is required and must be an integer from 1 to 32768 that is also a power
|
|
||||||
// of 2.
|
|
||||||
func WithQueueSize(queueSize int) Option {
|
|
||||||
return func(o *optionValues) { o.queueSize = queueSize }
|
|
||||||
}
|
|
||||||
|
|
||||||
// WithBackendFD returns an [Option] that sets the file descriptor of the
|
|
||||||
// backend that will be used for the queues of the device. The device will write
|
|
||||||
// and read packets to/from that backend. The file descriptor can either be of a
|
|
||||||
// RAW socket or TUN/TAP device.
|
|
||||||
// Either this or [WithBackendDevice] is required.
|
|
||||||
func WithBackendFD(backendFD int) Option {
|
|
||||||
return func(o *optionValues) { o.backendFD = backendFD }
|
|
||||||
}
|
|
||||||
|
|
||||||
//// WithBackendDevice returns an [Option] that sets the given TAP device as the
|
|
||||||
//// backend that will be used for the queues of the device. The device will
|
|
||||||
//// write and read packets to/from that backend. The TAP device should have been
|
|
||||||
//// created with the [tuntap.WithVirtioNetHdr] option enabled.
|
|
||||||
//// Either this or [WithBackendFD] is required.
|
|
||||||
//func WithBackendDevice(dev *tuntap.Device) Option {
|
|
||||||
// return func(o *optionValues) { o.backendFD = int(dev.File().Fd()) }
|
|
||||||
//}
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
Significant portions of this code are derived from https://pkg.go.dev/github.com/hetznercloud/virtio-go
|
|
||||||
|
|
||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2025 Hetzner Cloud GmbH
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
@@ -1,140 +0,0 @@
|
|||||||
package virtqueue
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"unsafe"
|
|
||||||
)
|
|
||||||
|
|
||||||
// availableRingFlag is a flag that describes an [AvailableRing].
|
|
||||||
type availableRingFlag uint16
|
|
||||||
|
|
||||||
const (
|
|
||||||
// availableRingFlagNoInterrupt is used by the guest to advise the host to
|
|
||||||
// not interrupt it when consuming a buffer. It's unreliable, so it's simply
|
|
||||||
// an optimization.
|
|
||||||
availableRingFlagNoInterrupt availableRingFlag = 1 << iota
|
|
||||||
)
|
|
||||||
|
|
||||||
// availableRingSize is the number of bytes needed to store an [AvailableRing]
|
|
||||||
// with the given queue size in memory.
|
|
||||||
func availableRingSize(queueSize int) int {
|
|
||||||
return 6 + 2*queueSize
|
|
||||||
}
|
|
||||||
|
|
||||||
// availableRingAlignment is the minimum alignment of an [AvailableRing]
|
|
||||||
// in memory, as required by the virtio spec.
|
|
||||||
const availableRingAlignment = 2
|
|
||||||
|
|
||||||
// AvailableRing is used by the driver to offer descriptor chains to the device.
|
|
||||||
// Each ring entry refers to the head of a descriptor chain. It is only written
|
|
||||||
// to by the driver and read by the device.
|
|
||||||
//
|
|
||||||
// Because the size of the ring depends on the queue size, we cannot define a
|
|
||||||
// Go struct with a static size that maps to the memory of the ring. Instead,
|
|
||||||
// this struct only contains pointers to the corresponding memory areas.
|
|
||||||
type AvailableRing struct {
|
|
||||||
initialized bool
|
|
||||||
|
|
||||||
// flags that describe this ring.
|
|
||||||
flags *availableRingFlag
|
|
||||||
// ringIndex indicates where the driver would put the next entry into the
|
|
||||||
// ring (modulo the queue size).
|
|
||||||
ringIndex *uint16
|
|
||||||
// ring references buffers using the index of the head of the descriptor
|
|
||||||
// chain in the [DescriptorTable]. It wraps around at queue size.
|
|
||||||
ring []uint16
|
|
||||||
// usedEvent is not used by this implementation, but we reserve it anyway to
|
|
||||||
// avoid issues in case a device may try to access it, contrary to the
|
|
||||||
// virtio specification.
|
|
||||||
usedEvent *uint16
|
|
||||||
}
|
|
||||||
|
|
||||||
// newAvailableRing creates an available ring that uses the given underlying
|
|
||||||
// memory. The length of the memory slice must match the size needed for the
|
|
||||||
// ring (see [availableRingSize]) for the given queue size.
|
|
||||||
func newAvailableRing(queueSize int, mem []byte) *AvailableRing {
|
|
||||||
ringSize := availableRingSize(queueSize)
|
|
||||||
if len(mem) != ringSize {
|
|
||||||
panic(fmt.Sprintf("memory size (%v) does not match required size "+
|
|
||||||
"for available ring: %v", len(mem), ringSize))
|
|
||||||
}
|
|
||||||
|
|
||||||
return &AvailableRing{
|
|
||||||
initialized: true,
|
|
||||||
flags: (*availableRingFlag)(unsafe.Pointer(&mem[0])),
|
|
||||||
ringIndex: (*uint16)(unsafe.Pointer(&mem[2])),
|
|
||||||
ring: unsafe.Slice((*uint16)(unsafe.Pointer(&mem[4])), queueSize),
|
|
||||||
usedEvent: (*uint16)(unsafe.Pointer(&mem[ringSize-2])),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Address returns the pointer to the beginning of the ring in memory.
|
|
||||||
// Do not modify the memory directly to not interfere with this implementation.
|
|
||||||
func (r *AvailableRing) Address() uintptr {
|
|
||||||
if !r.initialized {
|
|
||||||
panic("available ring is not initialized")
|
|
||||||
}
|
|
||||||
return uintptr(unsafe.Pointer(r.flags))
|
|
||||||
}
|
|
||||||
|
|
||||||
// offer adds the given descriptor chain heads to the available ring and
|
|
||||||
// advances the ring index accordingly to make the device process the new
|
|
||||||
// descriptor chains.
|
|
||||||
func (r *AvailableRing) offerElements(chains []UsedElement) {
|
|
||||||
//always called under lock
|
|
||||||
//r.mu.Lock()
|
|
||||||
//defer r.mu.Unlock()
|
|
||||||
|
|
||||||
// Add descriptor chain heads to the ring.
|
|
||||||
for offset, x := range chains {
|
|
||||||
// The 16-bit ring index may overflow. This is expected and is not an
|
|
||||||
// issue because the size of the ring array (which equals the queue
|
|
||||||
// size) is always a power of 2 and smaller than the highest possible
|
|
||||||
// 16-bit value.
|
|
||||||
insertIndex := int(*r.ringIndex+uint16(offset)) % len(r.ring)
|
|
||||||
r.ring[insertIndex] = x.GetHead()
|
|
||||||
}
|
|
||||||
|
|
||||||
// Increase the ring index by the number of descriptor chains added to the
|
|
||||||
// ring.
|
|
||||||
*r.ringIndex += uint16(len(chains))
|
|
||||||
}
|
|
||||||
|
|
||||||
func (r *AvailableRing) offer(chains []uint16) {
|
|
||||||
//always called under lock
|
|
||||||
//r.mu.Lock()
|
|
||||||
//defer r.mu.Unlock()
|
|
||||||
|
|
||||||
// Add descriptor chain heads to the ring.
|
|
||||||
for offset, x := range chains {
|
|
||||||
// The 16-bit ring index may overflow. This is expected and is not an
|
|
||||||
// issue because the size of the ring array (which equals the queue
|
|
||||||
// size) is always a power of 2 and smaller than the highest possible
|
|
||||||
// 16-bit value.
|
|
||||||
insertIndex := int(*r.ringIndex+uint16(offset)) % len(r.ring)
|
|
||||||
r.ring[insertIndex] = x
|
|
||||||
}
|
|
||||||
|
|
||||||
// Increase the ring index by the number of descriptor chains added to the
|
|
||||||
// ring.
|
|
||||||
*r.ringIndex += uint16(len(chains))
|
|
||||||
}
|
|
||||||
|
|
||||||
func (r *AvailableRing) offerSingle(x uint16) {
|
|
||||||
//always called under lock
|
|
||||||
//r.mu.Lock()
|
|
||||||
//defer r.mu.Unlock()
|
|
||||||
|
|
||||||
offset := 0
|
|
||||||
// Add descriptor chain heads to the ring.
|
|
||||||
|
|
||||||
// The 16-bit ring index may overflow. This is expected and is not an
|
|
||||||
// issue because the size of the ring array (which equals the queue
|
|
||||||
// size) is always a power of 2 and smaller than the highest possible
|
|
||||||
// 16-bit value.
|
|
||||||
insertIndex := int(*r.ringIndex+uint16(offset)) % len(r.ring)
|
|
||||||
r.ring[insertIndex] = x
|
|
||||||
|
|
||||||
// Increase the ring index by the number of descriptor chains added to the ring.
|
|
||||||
*r.ringIndex += 1
|
|
||||||
}
|
|
||||||
@@ -1,71 +0,0 @@
|
|||||||
package virtqueue
|
|
||||||
|
|
||||||
import (
|
|
||||||
"testing"
|
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestAvailableRing_MemoryLayout(t *testing.T) {
|
|
||||||
const queueSize = 2
|
|
||||||
|
|
||||||
memory := make([]byte, availableRingSize(queueSize))
|
|
||||||
r := newAvailableRing(queueSize, memory)
|
|
||||||
|
|
||||||
*r.flags = 0x01ff
|
|
||||||
*r.ringIndex = 1
|
|
||||||
r.ring[0] = 0x1234
|
|
||||||
r.ring[1] = 0x5678
|
|
||||||
|
|
||||||
assert.Equal(t, []byte{
|
|
||||||
0xff, 0x01,
|
|
||||||
0x01, 0x00,
|
|
||||||
0x34, 0x12,
|
|
||||||
0x78, 0x56,
|
|
||||||
0x00, 0x00,
|
|
||||||
}, memory)
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestAvailableRing_Offer(t *testing.T) {
|
|
||||||
const queueSize = 8
|
|
||||||
|
|
||||||
chainHeads := []uint16{42, 33, 69}
|
|
||||||
|
|
||||||
tests := []struct {
|
|
||||||
name string
|
|
||||||
startRingIndex uint16
|
|
||||||
expectedRingIndex uint16
|
|
||||||
expectedRing []uint16
|
|
||||||
}{
|
|
||||||
{
|
|
||||||
name: "no overflow",
|
|
||||||
startRingIndex: 0,
|
|
||||||
expectedRingIndex: 3,
|
|
||||||
expectedRing: []uint16{42, 33, 69, 0, 0, 0, 0, 0},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "ring overflow",
|
|
||||||
startRingIndex: 6,
|
|
||||||
expectedRingIndex: 9,
|
|
||||||
expectedRing: []uint16{69, 0, 0, 0, 0, 0, 42, 33},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "index overflow",
|
|
||||||
startRingIndex: 65535,
|
|
||||||
expectedRingIndex: 2,
|
|
||||||
expectedRing: []uint16{33, 69, 0, 0, 0, 0, 0, 42},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
for _, tt := range tests {
|
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
|
||||||
memory := make([]byte, availableRingSize(queueSize))
|
|
||||||
r := newAvailableRing(queueSize, memory)
|
|
||||||
*r.ringIndex = tt.startRingIndex
|
|
||||||
|
|
||||||
r.offer(chainHeads)
|
|
||||||
|
|
||||||
assert.Equal(t, tt.expectedRingIndex, *r.ringIndex)
|
|
||||||
assert.Equal(t, tt.expectedRing, r.ring)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
package virtqueue
|
|
||||||
|
|
||||||
// descriptorFlag is a flag that describes a [Descriptor].
|
|
||||||
type descriptorFlag uint16
|
|
||||||
|
|
||||||
const (
|
|
||||||
// descriptorFlagHasNext marks a descriptor chain as continuing via the next
|
|
||||||
// field.
|
|
||||||
descriptorFlagHasNext descriptorFlag = 1 << iota
|
|
||||||
// descriptorFlagWritable marks a buffer as device write-only (otherwise
|
|
||||||
// device read-only).
|
|
||||||
descriptorFlagWritable
|
|
||||||
// descriptorFlagIndirect means the buffer contains a list of buffer
|
|
||||||
// descriptors to provide an additional layer of indirection.
|
|
||||||
// Only allowed when the [virtio.FeatureIndirectDescriptors] feature was
|
|
||||||
// negotiated.
|
|
||||||
descriptorFlagIndirect
|
|
||||||
)
|
|
||||||
|
|
||||||
// descriptorSize is the number of bytes needed to store a [Descriptor] in
|
|
||||||
// memory.
|
|
||||||
const descriptorSize = 16
|
|
||||||
|
|
||||||
// Descriptor describes (a part of) a buffer which is either read-only for the
|
|
||||||
// device or write-only for the device (depending on [descriptorFlagWritable]).
|
|
||||||
// Multiple descriptors can be chained to produce a "descriptor chain" that can
|
|
||||||
// contain both device-readable and device-writable buffers. Device-readable
|
|
||||||
// descriptors always come first in a chain. A single, large buffer may be
|
|
||||||
// split up by chaining multiple similar descriptors that reference different
|
|
||||||
// memory pages. This is required, because buffers may exceed a single page size
|
|
||||||
// and the memory accessed by the device is expected to be continuous.
|
|
||||||
type Descriptor struct {
|
|
||||||
// address is the address to the continuous memory holding the data for this
|
|
||||||
// descriptor.
|
|
||||||
address uintptr
|
|
||||||
// length is the amount of bytes stored at address.
|
|
||||||
length uint32
|
|
||||||
// flags that describe this descriptor.
|
|
||||||
flags descriptorFlag
|
|
||||||
// next contains the index of the next descriptor continuing this descriptor
|
|
||||||
// chain when the [descriptorFlagHasNext] flag is set.
|
|
||||||
next uint16
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
package virtqueue
|
|
||||||
|
|
||||||
import (
|
|
||||||
"testing"
|
|
||||||
"unsafe"
|
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestDescriptor_Size(t *testing.T) {
|
|
||||||
assert.EqualValues(t, descriptorSize, unsafe.Sizeof(Descriptor{}))
|
|
||||||
}
|
|
||||||
@@ -1,288 +0,0 @@
|
|||||||
package virtqueue
|
|
||||||
|
|
||||||
import (
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
|
||||||
"math"
|
|
||||||
"unsafe"
|
|
||||||
|
|
||||||
"golang.org/x/sys/unix"
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
|
||||||
// ErrNotEnoughFreeDescriptors is returned when the free descriptors are
|
|
||||||
// exhausted, meaning that the queue is full.
|
|
||||||
ErrNotEnoughFreeDescriptors = errors.New("not enough free descriptors, queue is full")
|
|
||||||
|
|
||||||
// ErrInvalidDescriptorChain is returned when a descriptor chain is not
|
|
||||||
// valid for a given operation.
|
|
||||||
ErrInvalidDescriptorChain = errors.New("invalid descriptor chain")
|
|
||||||
)
|
|
||||||
|
|
||||||
// noFreeHead is used to mark when all descriptors are in use and we have no
|
|
||||||
// free chain. This value is impossible to occur as an index naturally, because
|
|
||||||
// it exceeds the maximum queue size.
|
|
||||||
const noFreeHead = uint16(math.MaxUint16)
|
|
||||||
|
|
||||||
// descriptorTableSize is the number of bytes needed to store a
|
|
||||||
// [DescriptorTable] with the given queue size in memory.
|
|
||||||
func descriptorTableSize(queueSize int) int {
|
|
||||||
return descriptorSize * queueSize
|
|
||||||
}
|
|
||||||
|
|
||||||
// descriptorTableAlignment is the minimum alignment of a [DescriptorTable]
|
|
||||||
// in memory, as required by the virtio spec.
|
|
||||||
const descriptorTableAlignment = 16
|
|
||||||
|
|
||||||
// DescriptorTable is a table that holds [Descriptor]s, addressed via their
|
|
||||||
// index in the slice.
|
|
||||||
type DescriptorTable struct {
|
|
||||||
descriptors []Descriptor
|
|
||||||
|
|
||||||
// freeHeadIndex is the index of the head of the descriptor chain which
|
|
||||||
// contains all currently unused descriptors. When all descriptors are in
|
|
||||||
// use, this has the special value of noFreeHead.
|
|
||||||
freeHeadIndex uint16
|
|
||||||
// freeNum tracks the number of descriptors which are currently not in use.
|
|
||||||
freeNum uint16
|
|
||||||
|
|
||||||
bufferBase uintptr
|
|
||||||
bufferSize int
|
|
||||||
itemSize int
|
|
||||||
}
|
|
||||||
|
|
||||||
// newDescriptorTable creates a descriptor table that uses the given underlying
|
|
||||||
// memory. The Length of the memory slice must match the size needed for the
|
|
||||||
// descriptor table (see [descriptorTableSize]) for the given queue size.
|
|
||||||
//
|
|
||||||
// Before this descriptor table can be used, [initialize] must be called.
|
|
||||||
func newDescriptorTable(queueSize int, mem []byte, itemSize int) *DescriptorTable {
|
|
||||||
dtSize := descriptorTableSize(queueSize)
|
|
||||||
if len(mem) != dtSize {
|
|
||||||
panic(fmt.Sprintf("memory size (%v) does not match required size "+
|
|
||||||
"for descriptor table: %v", len(mem), dtSize))
|
|
||||||
}
|
|
||||||
|
|
||||||
return &DescriptorTable{
|
|
||||||
descriptors: unsafe.Slice((*Descriptor)(unsafe.Pointer(&mem[0])), queueSize),
|
|
||||||
// We have no free descriptors until they were initialized.
|
|
||||||
freeHeadIndex: noFreeHead,
|
|
||||||
freeNum: 0,
|
|
||||||
itemSize: itemSize, //todo configurable? needs to be page-aligned
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Address returns the pointer to the beginning of the descriptor table in
|
|
||||||
// memory. Do not modify the memory directly to not interfere with this
|
|
||||||
// implementation.
|
|
||||||
func (dt *DescriptorTable) Address() uintptr {
|
|
||||||
if dt.descriptors == nil {
|
|
||||||
panic("descriptor table is not initialized")
|
|
||||||
}
|
|
||||||
//should be same as dt.bufferBase
|
|
||||||
return uintptr(unsafe.Pointer(&dt.descriptors[0]))
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dt *DescriptorTable) Size() uintptr {
|
|
||||||
if dt.descriptors == nil {
|
|
||||||
panic("descriptor table is not initialized")
|
|
||||||
}
|
|
||||||
return uintptr(dt.bufferSize)
|
|
||||||
}
|
|
||||||
|
|
||||||
// BufferAddresses returns a map of pointer->size for all allocations used by the table
|
|
||||||
func (dt *DescriptorTable) BufferAddresses() map[uintptr]int {
|
|
||||||
if dt.descriptors == nil {
|
|
||||||
panic("descriptor table is not initialized")
|
|
||||||
}
|
|
||||||
|
|
||||||
return map[uintptr]int{dt.bufferBase: dt.bufferSize}
|
|
||||||
}
|
|
||||||
|
|
||||||
// initializeDescriptors allocates buffers with the size of a full memory page
|
|
||||||
// for each descriptor in the table. While this may be a bit wasteful, it makes
|
|
||||||
// dealing with descriptors way easier. Without this preallocation, we would
|
|
||||||
// have to allocate and free memory on demand, increasing complexity.
|
|
||||||
//
|
|
||||||
// All descriptors will be marked as free and will form a free chain. The
|
|
||||||
// addresses of all descriptors will be populated while their length remains
|
|
||||||
// zero.
|
|
||||||
func (dt *DescriptorTable) initializeDescriptors() error {
|
|
||||||
numDescriptors := len(dt.descriptors)
|
|
||||||
|
|
||||||
// Allocate ONE large region for all buffers
|
|
||||||
totalSize := dt.itemSize * numDescriptors
|
|
||||||
basePtr, err := unix.MmapPtr(-1, 0, nil, uintptr(totalSize),
|
|
||||||
unix.PROT_READ|unix.PROT_WRITE,
|
|
||||||
unix.MAP_PRIVATE|unix.MAP_ANONYMOUS)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("allocate buffer memory for descriptors: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Store the base for cleanup later
|
|
||||||
dt.bufferBase = uintptr(basePtr)
|
|
||||||
dt.bufferSize = totalSize
|
|
||||||
|
|
||||||
for i := range dt.descriptors {
|
|
||||||
dt.descriptors[i] = Descriptor{
|
|
||||||
address: dt.bufferBase + uintptr(i*dt.itemSize),
|
|
||||||
length: 0,
|
|
||||||
// All descriptors should form a free chain that loops around.
|
|
||||||
flags: descriptorFlagHasNext,
|
|
||||||
next: uint16((i + 1) % len(dt.descriptors)),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// All descriptors are free to use now.
|
|
||||||
dt.freeHeadIndex = 0
|
|
||||||
dt.freeNum = uint16(len(dt.descriptors))
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// releaseBuffers releases all allocated buffers for this descriptor table.
|
|
||||||
// The implementation will try to release as many buffers as possible and
|
|
||||||
// collect potential errors before returning them.
|
|
||||||
// The descriptor table should no longer be used after calling this.
|
|
||||||
func (dt *DescriptorTable) releaseBuffers() error {
|
|
||||||
for i := range dt.descriptors {
|
|
||||||
descriptor := &dt.descriptors[i]
|
|
||||||
descriptor.address = 0
|
|
||||||
}
|
|
||||||
|
|
||||||
// As a safety measure, make sure no descriptors can be used anymore.
|
|
||||||
dt.freeHeadIndex = noFreeHead
|
|
||||||
dt.freeNum = 0
|
|
||||||
|
|
||||||
if dt.bufferBase != 0 {
|
|
||||||
// The pointer points to memory not managed by Go, so this conversion
|
|
||||||
// is safe. See https://github.com/golang/go/issues/58625
|
|
||||||
dt.bufferBase = 0
|
|
||||||
//goland:noinspection GoVetUnsafePointer
|
|
||||||
err := unix.MunmapPtr(unsafe.Pointer(dt.bufferBase), uintptr(dt.bufferSize))
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("release buffer memory: %w", err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dt *DescriptorTable) CreateDescriptorForOutputs() (uint16, uint32, error) {
|
|
||||||
//todo just fill the damn table
|
|
||||||
// Do we still have enough free descriptors?
|
|
||||||
|
|
||||||
if 1 > dt.freeNum {
|
|
||||||
return 0, 0, ErrNotEnoughFreeDescriptors
|
|
||||||
}
|
|
||||||
|
|
||||||
// Above validation ensured that there is at least one free descriptor, so
|
|
||||||
// the free descriptor chain head should be valid.
|
|
||||||
if dt.freeHeadIndex == noFreeHead {
|
|
||||||
panic("free descriptor chain head is unset but there should be free descriptors")
|
|
||||||
}
|
|
||||||
|
|
||||||
// To avoid having to iterate over the whole table to find the descriptor
|
|
||||||
// pointing to the head just to replace the free head, we instead always
|
|
||||||
// create descriptor chains from the descriptors coming after the head.
|
|
||||||
// This way we only have to touch the head as a last resort, when all other
|
|
||||||
// descriptors are already used.
|
|
||||||
head := dt.descriptors[dt.freeHeadIndex].next
|
|
||||||
desc := &dt.descriptors[head]
|
|
||||||
next := desc.next
|
|
||||||
|
|
||||||
checkUnusedDescriptorLength(head, desc)
|
|
||||||
|
|
||||||
// Give the device the maximum available number of bytes to write into.
|
|
||||||
desc.length = uint32(dt.itemSize)
|
|
||||||
desc.flags = 0 // descriptorFlagWritable
|
|
||||||
desc.next = 0 // Not necessary to clear this, it's just for looks.
|
|
||||||
|
|
||||||
dt.freeNum -= 1
|
|
||||||
|
|
||||||
if dt.freeNum == 0 {
|
|
||||||
// The last descriptor in the chain should be the free chain head
|
|
||||||
// itself.
|
|
||||||
if next != dt.freeHeadIndex {
|
|
||||||
panic("descriptor chain takes up all free descriptors but does not end with the free chain head")
|
|
||||||
}
|
|
||||||
|
|
||||||
// When this new chain takes up all remaining descriptors, we no longer
|
|
||||||
// have a free chain.
|
|
||||||
dt.freeHeadIndex = noFreeHead
|
|
||||||
} else {
|
|
||||||
// We took some descriptors out of the free chain, so make sure to close
|
|
||||||
// the circle again.
|
|
||||||
dt.descriptors[dt.freeHeadIndex].next = next
|
|
||||||
}
|
|
||||||
|
|
||||||
return head, desc.length, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dt *DescriptorTable) createDescriptorForInputs() (uint16, error) {
|
|
||||||
// Do we still have enough free descriptors?
|
|
||||||
if 1 > dt.freeNum {
|
|
||||||
return 0, ErrNotEnoughFreeDescriptors
|
|
||||||
}
|
|
||||||
|
|
||||||
// Above validation ensured that there is at least one free descriptor, so
|
|
||||||
// the free descriptor chain head should be valid.
|
|
||||||
if dt.freeHeadIndex == noFreeHead {
|
|
||||||
panic("free descriptor chain head is unset but there should be free descriptors")
|
|
||||||
}
|
|
||||||
|
|
||||||
// To avoid having to iterate over the whole table to find the descriptor
|
|
||||||
// pointing to the head just to replace the free head, we instead always
|
|
||||||
// create descriptor chains from the descriptors coming after the head.
|
|
||||||
// This way we only have to touch the head as a last resort, when all other
|
|
||||||
// descriptors are already used.
|
|
||||||
head := dt.descriptors[dt.freeHeadIndex].next
|
|
||||||
desc := &dt.descriptors[head]
|
|
||||||
next := desc.next
|
|
||||||
|
|
||||||
checkUnusedDescriptorLength(head, desc)
|
|
||||||
|
|
||||||
// Give the device the maximum available number of bytes to write into.
|
|
||||||
desc.length = uint32(dt.itemSize)
|
|
||||||
desc.flags = descriptorFlagWritable
|
|
||||||
desc.next = 0 // Not necessary to clear this, it's just for looks.
|
|
||||||
|
|
||||||
dt.freeNum -= 1
|
|
||||||
|
|
||||||
if dt.freeNum == 0 {
|
|
||||||
// The last descriptor in the chain should be the free chain head
|
|
||||||
// itself.
|
|
||||||
if next != dt.freeHeadIndex {
|
|
||||||
panic("descriptor chain takes up all free descriptors but does not end with the free chain head")
|
|
||||||
}
|
|
||||||
|
|
||||||
// When this new chain takes up all remaining descriptors, we no longer
|
|
||||||
// have a free chain.
|
|
||||||
dt.freeHeadIndex = noFreeHead
|
|
||||||
} else {
|
|
||||||
// We took some descriptors out of the free chain, so make sure to close
|
|
||||||
// the circle again.
|
|
||||||
dt.descriptors[dt.freeHeadIndex].next = next
|
|
||||||
}
|
|
||||||
|
|
||||||
return head, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dt *DescriptorTable) getDescriptorItem(head uint16) []byte {
|
|
||||||
desc := &dt.descriptors[head] //todo this is a pretty nasty hack with no checks
|
|
||||||
|
|
||||||
// The descriptor address points to memory not managed by Go, so this
|
|
||||||
// conversion is safe. See https://github.com/golang/go/issues/58625
|
|
||||||
//goland:noinspection GoVetUnsafePointer
|
|
||||||
return unsafe.Slice((*byte)(unsafe.Pointer(desc.address)), desc.length)
|
|
||||||
}
|
|
||||||
|
|
||||||
// checkUnusedDescriptorLength asserts that the length of an unused descriptor
|
|
||||||
// is zero, as it should be.
|
|
||||||
// This is not a requirement by the virtio spec but rather a thing we do to
|
|
||||||
// notice when our algorithm goes sideways.
|
|
||||||
func checkUnusedDescriptorLength(index uint16, desc *Descriptor) {
|
|
||||||
if desc.length != 0 {
|
|
||||||
panic(fmt.Sprintf("descriptor %d should be unused but has a non-zero length", index))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
// Package virtqueue implements the driver-side for a virtio queue as described
|
|
||||||
// in the specification:
|
|
||||||
// https://docs.oasis-open.org/virtio/virtio/v1.2/csd01/virtio-v1.2-csd01.html#x1-270006
|
|
||||||
// This package does not make assumptions about the device that consumes the
|
|
||||||
// queue. It rather just allocates the queue structures in memory and provides
|
|
||||||
// methods to interact with it.
|
|
||||||
package virtqueue
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
package virtqueue
|
|
||||||
|
|
||||||
import (
|
|
||||||
"testing"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
|
||||||
"github.com/stretchr/testify/require"
|
|
||||||
"gvisor.dev/gvisor/pkg/eventfd"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Tests how an eventfd and a waiting goroutine can be gracefully closed.
|
|
||||||
// Extends the eventfd test suite:
|
|
||||||
// https://github.com/google/gvisor/blob/0799336d64be65eb97d330606c30162dc3440cab/pkg/eventfd/eventfd_test.go
|
|
||||||
func TestEventFD_CancelWait(t *testing.T) {
|
|
||||||
efd, err := eventfd.Create()
|
|
||||||
require.NoError(t, err)
|
|
||||||
t.Cleanup(func() {
|
|
||||||
assert.NoError(t, efd.Close())
|
|
||||||
})
|
|
||||||
|
|
||||||
var stop bool
|
|
||||||
|
|
||||||
done := make(chan struct{})
|
|
||||||
go func() {
|
|
||||||
for !stop {
|
|
||||||
_ = efd.Wait()
|
|
||||||
}
|
|
||||||
close(done)
|
|
||||||
}()
|
|
||||||
select {
|
|
||||||
case <-done:
|
|
||||||
t.Fatalf("goroutine ended early")
|
|
||||||
case <-time.After(500 * time.Millisecond):
|
|
||||||
}
|
|
||||||
|
|
||||||
stop = true
|
|
||||||
assert.NoError(t, efd.Notify())
|
|
||||||
select {
|
|
||||||
case <-done:
|
|
||||||
break
|
|
||||||
case <-time.After(5 * time.Second):
|
|
||||||
t.Error("goroutine did not end")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
package virtqueue
|
|
||||||
|
|
||||||
import (
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
|
||||||
)
|
|
||||||
|
|
||||||
// ErrQueueSizeInvalid is returned when a queue size is invalid.
|
|
||||||
var ErrQueueSizeInvalid = errors.New("queue size is invalid")
|
|
||||||
|
|
||||||
// CheckQueueSize checks if the given value would be a valid size for a
|
|
||||||
// virtqueue and returns an [ErrQueueSizeInvalid], if not.
|
|
||||||
func CheckQueueSize(queueSize int) error {
|
|
||||||
if queueSize <= 0 {
|
|
||||||
return fmt.Errorf("%w: %d is too small", ErrQueueSizeInvalid, queueSize)
|
|
||||||
}
|
|
||||||
|
|
||||||
// The queue size must always be a power of 2.
|
|
||||||
// This ensures that ring indexes wrap correctly when the 16-bit integers
|
|
||||||
// overflow.
|
|
||||||
if queueSize&(queueSize-1) != 0 {
|
|
||||||
return fmt.Errorf("%w: %d is not a power of 2", ErrQueueSizeInvalid, queueSize)
|
|
||||||
}
|
|
||||||
|
|
||||||
// The largest power of 2 that fits into a 16-bit integer is 32768.
|
|
||||||
// 2 * 32768 would be 65536 which no longer fits.
|
|
||||||
if queueSize > 32768 {
|
|
||||||
return fmt.Errorf("%w: %d is larger than the maximum possible queue size 32768",
|
|
||||||
ErrQueueSizeInvalid, queueSize)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
package virtqueue
|
|
||||||
|
|
||||||
import (
|
|
||||||
"testing"
|
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestCheckQueueSize(t *testing.T) {
|
|
||||||
tests := []struct {
|
|
||||||
name string
|
|
||||||
queueSize int
|
|
||||||
containsErr string
|
|
||||||
}{
|
|
||||||
{
|
|
||||||
name: "negative",
|
|
||||||
queueSize: -1,
|
|
||||||
containsErr: "too small",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "zero",
|
|
||||||
queueSize: 0,
|
|
||||||
containsErr: "too small",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "not a power of 2",
|
|
||||||
queueSize: 24,
|
|
||||||
containsErr: "not a power of 2",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "too large",
|
|
||||||
queueSize: 65536,
|
|
||||||
containsErr: "larger than the maximum",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "valid 1",
|
|
||||||
queueSize: 1,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "valid 256",
|
|
||||||
queueSize: 256,
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
name: "valid 32768",
|
|
||||||
queueSize: 32768,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
for _, tt := range tests {
|
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
|
||||||
err := CheckQueueSize(tt.queueSize)
|
|
||||||
if tt.containsErr != "" {
|
|
||||||
assert.ErrorContains(t, err, tt.containsErr)
|
|
||||||
} else {
|
|
||||||
assert.NoError(t, err)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,415 +0,0 @@
|
|||||||
package virtqueue
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
|
||||||
"os"
|
|
||||||
|
|
||||||
"github.com/slackhq/nebula/overlay/eventfd"
|
|
||||||
"golang.org/x/sys/unix"
|
|
||||||
)
|
|
||||||
|
|
||||||
// SplitQueue is a virtqueue that consists of several parts, where each part is
|
|
||||||
// writeable by either the driver or the device, but not both.
|
|
||||||
type SplitQueue struct {
|
|
||||||
// size is the size of the queue.
|
|
||||||
size int
|
|
||||||
// buf is the underlying memory used for the queue.
|
|
||||||
buf []byte
|
|
||||||
|
|
||||||
descriptorTable *DescriptorTable
|
|
||||||
availableRing *AvailableRing
|
|
||||||
usedRing *UsedRing
|
|
||||||
|
|
||||||
// kickEventFD is used to signal the device when descriptor chains were
|
|
||||||
// added to the available ring.
|
|
||||||
kickEventFD eventfd.EventFD
|
|
||||||
// callEventFD is used by the device to signal when it has used descriptor
|
|
||||||
// chains and put them in the used ring.
|
|
||||||
callEventFD eventfd.EventFD
|
|
||||||
|
|
||||||
// stop is used by [SplitQueue.Close] to cancel the goroutine that handles
|
|
||||||
// used buffer notifications. It blocks until the goroutine ended.
|
|
||||||
stop func() error
|
|
||||||
|
|
||||||
itemSize int
|
|
||||||
|
|
||||||
epoll eventfd.Epoll
|
|
||||||
more int
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewSplitQueue allocates a new [SplitQueue] in memory. The given queue size
|
|
||||||
// specifies the number of entries/buffers the queue can hold. This also affects
|
|
||||||
// the memory consumption.
|
|
||||||
func NewSplitQueue(queueSize int, itemSize int) (_ *SplitQueue, err error) {
|
|
||||||
if err = CheckQueueSize(queueSize); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
if itemSize%os.Getpagesize() != 0 {
|
|
||||||
return nil, errors.New("split queue size must be multiple of os.Getpagesize()")
|
|
||||||
}
|
|
||||||
|
|
||||||
sq := SplitQueue{
|
|
||||||
size: queueSize,
|
|
||||||
itemSize: itemSize,
|
|
||||||
}
|
|
||||||
|
|
||||||
// Clean up a partially initialized queue when something fails.
|
|
||||||
defer func() {
|
|
||||||
if err != nil {
|
|
||||||
_ = sq.Close()
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
|
|
||||||
// There are multiple ways for how the memory for the virtqueue could be
|
|
||||||
// allocated. We could use Go native structs with arrays inside them, but
|
|
||||||
// this wouldn't allow us to make the queue size configurable. And including
|
|
||||||
// a slice in the Go structs wouldn't work, because this would just put the
|
|
||||||
// Go slice descriptor into the memory region which the virtio device will
|
|
||||||
// not understand.
|
|
||||||
// Additionally, Go does not allow us to ensure a correct alignment of the
|
|
||||||
// parts of the virtqueue, as it is required by the virtio specification.
|
|
||||||
//
|
|
||||||
// To resolve this, let's just allocate the memory manually by allocating
|
|
||||||
// one or more memory pages, depending on the queue size. Making the
|
|
||||||
// virtqueue start at the beginning of a page is not strictly necessary, as
|
|
||||||
// the virtio specification does not require it to be continuous in the
|
|
||||||
// physical memory of the host (e.g. the vhost implementation in the kernel
|
|
||||||
// always uses copy_from_user to access it), but this makes it very easy to
|
|
||||||
// guarantee the alignment. Also, it is not required for the virtqueue parts
|
|
||||||
// to be in the same memory region, as we pass separate pointers to them to
|
|
||||||
// the device, but this design just makes things easier to implement.
|
|
||||||
//
|
|
||||||
// One added benefit of allocating the memory manually is, that we have full
|
|
||||||
// control over its lifetime and don't risk the garbage collector to collect
|
|
||||||
// our valuable structures while the device still works with them.
|
|
||||||
|
|
||||||
// The descriptor table is at the start of the page, so alignment is not an
|
|
||||||
// issue here.
|
|
||||||
descriptorTableStart := 0
|
|
||||||
descriptorTableEnd := descriptorTableStart + descriptorTableSize(queueSize)
|
|
||||||
availableRingStart := align(descriptorTableEnd, availableRingAlignment)
|
|
||||||
availableRingEnd := availableRingStart + availableRingSize(queueSize)
|
|
||||||
usedRingStart := align(availableRingEnd, usedRingAlignment)
|
|
||||||
usedRingEnd := usedRingStart + usedRingSize(queueSize)
|
|
||||||
|
|
||||||
sq.buf, err = unix.Mmap(-1, 0, usedRingEnd,
|
|
||||||
unix.PROT_READ|unix.PROT_WRITE,
|
|
||||||
unix.MAP_PRIVATE|unix.MAP_ANONYMOUS)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("allocate virtqueue buffer: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
sq.descriptorTable = newDescriptorTable(queueSize, sq.buf[descriptorTableStart:descriptorTableEnd], sq.itemSize)
|
|
||||||
sq.availableRing = newAvailableRing(queueSize, sq.buf[availableRingStart:availableRingEnd])
|
|
||||||
sq.usedRing = newUsedRing(queueSize, sq.buf[usedRingStart:usedRingEnd])
|
|
||||||
|
|
||||||
sq.kickEventFD, err = eventfd.New()
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("create kick event file descriptor: %w", err)
|
|
||||||
}
|
|
||||||
sq.callEventFD, err = eventfd.New()
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("create call event file descriptor: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err = sq.descriptorTable.initializeDescriptors(); err != nil {
|
|
||||||
return nil, fmt.Errorf("initialize descriptors: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
sq.epoll, err = eventfd.NewEpoll()
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
err = sq.epoll.AddEvent(sq.callEventFD.FD())
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
sq.stop = sq.kickSelfToExit()
|
|
||||||
|
|
||||||
return &sq, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Size returns the size of this queue, which is the number of entries/buffers
|
|
||||||
// this queue can hold.
|
|
||||||
func (sq *SplitQueue) Size() int {
|
|
||||||
return sq.size
|
|
||||||
}
|
|
||||||
|
|
||||||
// DescriptorTable returns the [DescriptorTable] behind this queue.
|
|
||||||
func (sq *SplitQueue) DescriptorTable() *DescriptorTable {
|
|
||||||
return sq.descriptorTable
|
|
||||||
}
|
|
||||||
|
|
||||||
// AvailableRing returns the [AvailableRing] behind this queue.
|
|
||||||
func (sq *SplitQueue) AvailableRing() *AvailableRing {
|
|
||||||
return sq.availableRing
|
|
||||||
}
|
|
||||||
|
|
||||||
// UsedRing returns the [UsedRing] behind this queue.
|
|
||||||
func (sq *SplitQueue) UsedRing() *UsedRing {
|
|
||||||
return sq.usedRing
|
|
||||||
}
|
|
||||||
|
|
||||||
// KickEventFD returns the kick event file descriptor behind this queue.
|
|
||||||
// The returned file descriptor should be used with great care to not interfere
|
|
||||||
// with this implementation.
|
|
||||||
func (sq *SplitQueue) KickEventFD() int {
|
|
||||||
return sq.kickEventFD.FD()
|
|
||||||
}
|
|
||||||
|
|
||||||
// CallEventFD returns the call event file descriptor behind this queue.
|
|
||||||
// The returned file descriptor should be used with great care to not interfere
|
|
||||||
// with this implementation.
|
|
||||||
func (sq *SplitQueue) CallEventFD() int {
|
|
||||||
return sq.callEventFD.FD()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (sq *SplitQueue) kickSelfToExit() func() error {
|
|
||||||
return func() error {
|
|
||||||
|
|
||||||
// The goroutine blocks until it receives a signal on the event file
|
|
||||||
// descriptor, so it will never notice the context being canceled.
|
|
||||||
// To resolve this, we can just produce a fake-signal ourselves to wake
|
|
||||||
// it up.
|
|
||||||
if err := sq.callEventFD.Kick(); err != nil {
|
|
||||||
return fmt.Errorf("wake up goroutine: %w", err)
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (sq *SplitQueue) TakeSingleIndex(ctx context.Context) (uint16, error) {
|
|
||||||
element, err := sq.TakeSingle(ctx)
|
|
||||||
if err != nil {
|
|
||||||
return 0xffff, err
|
|
||||||
}
|
|
||||||
return element.GetHead(), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (sq *SplitQueue) TakeSingle(ctx context.Context) (UsedElement, error) {
|
|
||||||
var n int
|
|
||||||
var err error
|
|
||||||
for ctx.Err() == nil {
|
|
||||||
out, ok := sq.usedRing.takeOne()
|
|
||||||
if ok {
|
|
||||||
return out, nil
|
|
||||||
}
|
|
||||||
// Wait for a signal from the device.
|
|
||||||
if n, err = sq.epoll.Block(); err != nil {
|
|
||||||
return UsedElement{}, fmt.Errorf("wait: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if n > 0 {
|
|
||||||
out, ok = sq.usedRing.takeOne()
|
|
||||||
if ok {
|
|
||||||
_ = sq.epoll.Clear() //???
|
|
||||||
return out, nil
|
|
||||||
} else {
|
|
||||||
continue //???
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return UsedElement{}, ctx.Err()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (sq *SplitQueue) TakeSingleNoBlock() (UsedElement, bool) {
|
|
||||||
return sq.usedRing.takeOne()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (sq *SplitQueue) WaitForUsedElements(ctx context.Context) error {
|
|
||||||
if sq.usedRing.availableToTake() != 0 {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
for ctx.Err() == nil {
|
|
||||||
// Wait for a signal from the device.
|
|
||||||
n, err := sq.epoll.Block()
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("wait: %w", err)
|
|
||||||
}
|
|
||||||
if n > 0 {
|
|
||||||
_ = sq.epoll.Clear()
|
|
||||||
if sq.usedRing.availableToTake() != 0 {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return ctx.Err()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (sq *SplitQueue) BlockAndGetHeadsCapped(ctx context.Context, maxToTake int) ([]UsedElement, error) {
|
|
||||||
var n int
|
|
||||||
var err error
|
|
||||||
for ctx.Err() == nil {
|
|
||||||
|
|
||||||
//we have leftovers in the fridge
|
|
||||||
if sq.more > 0 {
|
|
||||||
stillNeedToTake, out := sq.usedRing.take(maxToTake)
|
|
||||||
sq.more = stillNeedToTake
|
|
||||||
return out, nil
|
|
||||||
}
|
|
||||||
//look inside the fridge
|
|
||||||
stillNeedToTake, out := sq.usedRing.take(maxToTake)
|
|
||||||
if len(out) > 0 {
|
|
||||||
sq.more = stillNeedToTake
|
|
||||||
return out, nil
|
|
||||||
}
|
|
||||||
//fridge is empty I guess
|
|
||||||
|
|
||||||
// Wait for a signal from the device.
|
|
||||||
if n, err = sq.epoll.Block(); err != nil {
|
|
||||||
return nil, fmt.Errorf("wait: %w", err)
|
|
||||||
}
|
|
||||||
if n > 0 {
|
|
||||||
_ = sq.epoll.Clear()
|
|
||||||
stillNeedToTake, out = sq.usedRing.take(maxToTake)
|
|
||||||
sq.more = stillNeedToTake
|
|
||||||
return out, nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil, ctx.Err()
|
|
||||||
}
|
|
||||||
|
|
||||||
// OfferDescriptorChain offers a descriptor chain to the device which contains a
|
|
||||||
// number of device-readable buffers (out buffers) and device-writable buffers
|
|
||||||
// (in buffers).
|
|
||||||
//
|
|
||||||
// All buffers in the outBuffers slice will be concatenated by chaining
|
|
||||||
// descriptors, one for each buffer in the slice. When a buffer is too large to
|
|
||||||
// fit into a single descriptor (limited by the system's page size), it will be
|
|
||||||
// split up into multiple descriptors within the chain.
|
|
||||||
// When numInBuffers is greater than zero, the given number of device-writable
|
|
||||||
// descriptors will be appended to the end of the chain, each referencing a
|
|
||||||
// whole memory page (see [os.Getpagesize]).
|
|
||||||
//
|
|
||||||
// When the queue is full and no more descriptor chains can be added, a wrapped
|
|
||||||
// [ErrNotEnoughFreeDescriptors] will be returned. If you set waitFree to true,
|
|
||||||
// this method will handle this error and will block instead until there are
|
|
||||||
// enough free descriptors again.
|
|
||||||
//
|
|
||||||
// After defining the descriptor chain in the [DescriptorTable], the index of
|
|
||||||
// the head of the chain will be made available to the device using the
|
|
||||||
// [AvailableRing] and will be returned by this method.
|
|
||||||
// Callers should read from the [SplitQueue.UsedDescriptorChains] channel to be
|
|
||||||
// notified when the descriptor chain was used by the device and should free the
|
|
||||||
// used descriptor chains again using [SplitQueue.FreeDescriptorChain] when
|
|
||||||
// they're done with them. When this does not happen, the queue will run full
|
|
||||||
// and any further calls to [SplitQueue.OfferDescriptorChain] will stall.
|
|
||||||
|
|
||||||
func (sq *SplitQueue) OfferInDescriptorChains() (uint16, error) {
|
|
||||||
var (
|
|
||||||
head uint16
|
|
||||||
err error
|
|
||||||
)
|
|
||||||
for {
|
|
||||||
head, err = sq.descriptorTable.createDescriptorForInputs()
|
|
||||||
if err == nil {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
|
|
||||||
// I don't wanna use errors.Is, it's slow
|
|
||||||
//goland:noinspection GoDirectComparisonOfErrors
|
|
||||||
if err == ErrNotEnoughFreeDescriptors {
|
|
||||||
return 0, err
|
|
||||||
} else {
|
|
||||||
return 0, fmt.Errorf("create descriptor chain: %w", err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Make the descriptor chain available to the device.
|
|
||||||
sq.availableRing.offerSingle(head)
|
|
||||||
|
|
||||||
// Notify the device to make it process the updated available ring.
|
|
||||||
if err = sq.kickEventFD.Kick(); err != nil {
|
|
||||||
return head, fmt.Errorf("notify device: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return head, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// GetDescriptorItem returns the buffer of a given index
|
|
||||||
// The head index must be one that was returned by a previous call to
|
|
||||||
// [SplitQueue.OfferDescriptorChain] and the descriptor chain must not have been
|
|
||||||
// freed yet.
|
|
||||||
//
|
|
||||||
// Be careful to only access the returned buffer slices when the device is no
|
|
||||||
// longer using them. They must not be accessed after
|
|
||||||
// [SplitQueue.FreeDescriptorChain] has been called.
|
|
||||||
func (sq *SplitQueue) GetDescriptorItem(head uint16) []byte {
|
|
||||||
sq.descriptorTable.descriptors[head].length = uint32(sq.descriptorTable.itemSize)
|
|
||||||
return sq.descriptorTable.getDescriptorItem(head)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (sq *SplitQueue) SetDescSize(head uint16, sz int) {
|
|
||||||
//not called under lock
|
|
||||||
sq.descriptorTable.descriptors[int(head)].length = uint32(sz)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (sq *SplitQueue) OfferDescriptorChains(chains []uint16, kick bool) error {
|
|
||||||
// Make the descriptor chain available to the device.
|
|
||||||
sq.availableRing.offer(chains)
|
|
||||||
|
|
||||||
// Notify the device to make it process the updated available ring.
|
|
||||||
if kick {
|
|
||||||
return sq.Kick()
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (sq *SplitQueue) Kick() error {
|
|
||||||
if err := sq.kickEventFD.Kick(); err != nil {
|
|
||||||
return fmt.Errorf("notify device: %w", err)
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Close releases all resources used for this queue.
|
|
||||||
// The implementation will try to release as many resources as possible and
|
|
||||||
// collect potential errors before returning them.
|
|
||||||
func (sq *SplitQueue) Close() error {
|
|
||||||
var errs []error
|
|
||||||
|
|
||||||
if sq.stop != nil {
|
|
||||||
// This has to happen before the event file descriptors may be closed.
|
|
||||||
if err := sq.stop(); err != nil {
|
|
||||||
errs = append(errs, fmt.Errorf("stop consume used ring: %w", err))
|
|
||||||
}
|
|
||||||
|
|
||||||
// Make sure that this code block is executed only once.
|
|
||||||
sq.stop = nil
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := sq.kickEventFD.Close(); err != nil {
|
|
||||||
errs = append(errs, fmt.Errorf("close kick event file descriptor: %w", err))
|
|
||||||
}
|
|
||||||
if err := sq.callEventFD.Close(); err != nil {
|
|
||||||
errs = append(errs, fmt.Errorf("close call event file descriptor: %w", err))
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := sq.descriptorTable.releaseBuffers(); err != nil {
|
|
||||||
errs = append(errs, fmt.Errorf("release descriptor buffers: %w", err))
|
|
||||||
}
|
|
||||||
|
|
||||||
if sq.buf != nil {
|
|
||||||
if err := unix.Munmap(sq.buf); err == nil {
|
|
||||||
sq.buf = nil
|
|
||||||
} else {
|
|
||||||
errs = append(errs, fmt.Errorf("unmap virtqueue buffer: %w", err))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return errors.Join(errs...)
|
|
||||||
}
|
|
||||||
|
|
||||||
func align(index, alignment int) int {
|
|
||||||
remainder := index % alignment
|
|
||||||
if remainder == 0 {
|
|
||||||
return index
|
|
||||||
}
|
|
||||||
return index + alignment - remainder
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
package virtqueue
|
|
||||||
|
|
||||||
// usedElementSize is the number of bytes needed to store a [UsedElement] in
|
|
||||||
// memory.
|
|
||||||
const usedElementSize = 8
|
|
||||||
|
|
||||||
// UsedElement is an element of the [UsedRing] and describes a descriptor chain
|
|
||||||
// that was used by the device.
|
|
||||||
type UsedElement struct {
|
|
||||||
// DescriptorIndex is the index of the head of the used descriptor chain in
|
|
||||||
// the [DescriptorTable].
|
|
||||||
// The index is 32-bit here for padding reasons.
|
|
||||||
DescriptorIndex uint32
|
|
||||||
// Length is the number of bytes written into the device writable portion of
|
|
||||||
// the buffer described by the descriptor chain.
|
|
||||||
Length uint32
|
|
||||||
}
|
|
||||||
|
|
||||||
func (u *UsedElement) GetHead() uint16 {
|
|
||||||
return uint16(u.DescriptorIndex)
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
package virtqueue
|
|
||||||
|
|
||||||
import (
|
|
||||||
"testing"
|
|
||||||
"unsafe"
|
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestUsedElement_Size(t *testing.T) {
|
|
||||||
assert.EqualValues(t, usedElementSize, unsafe.Sizeof(UsedElement{}))
|
|
||||||
}
|
|
||||||
@@ -1,170 +0,0 @@
|
|||||||
package virtqueue
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"unsafe"
|
|
||||||
)
|
|
||||||
|
|
||||||
// usedRingFlag is a flag that describes a [UsedRing].
|
|
||||||
type usedRingFlag uint16
|
|
||||||
|
|
||||||
const (
|
|
||||||
// usedRingFlagNoNotify is used by the host to advise the guest to not
|
|
||||||
// kick it when adding a buffer. It's unreliable, so it's simply an
|
|
||||||
// optimization. Guest will still kick when it's out of buffers.
|
|
||||||
usedRingFlagNoNotify usedRingFlag = 1 << iota
|
|
||||||
)
|
|
||||||
|
|
||||||
// usedRingSize is the number of bytes needed to store a [UsedRing] with the
|
|
||||||
// given queue size in memory.
|
|
||||||
func usedRingSize(queueSize int) int {
|
|
||||||
return 6 + usedElementSize*queueSize
|
|
||||||
}
|
|
||||||
|
|
||||||
// usedRingAlignment is the minimum alignment of a [UsedRing] in memory, as
|
|
||||||
// required by the virtio spec.
|
|
||||||
const usedRingAlignment = 4
|
|
||||||
|
|
||||||
// UsedRing is where the device returns descriptor chains once it is done with
|
|
||||||
// them. Each ring entry is a [UsedElement]. It is only written to by the device
|
|
||||||
// and read by the driver.
|
|
||||||
//
|
|
||||||
// Because the size of the ring depends on the queue size, we cannot define a
|
|
||||||
// Go struct with a static size that maps to the memory of the ring. Instead,
|
|
||||||
// this struct only contains pointers to the corresponding memory areas.
|
|
||||||
type UsedRing struct {
|
|
||||||
initialized bool
|
|
||||||
|
|
||||||
// flags that describe this ring.
|
|
||||||
flags *usedRingFlag
|
|
||||||
// ringIndex indicates where the device would put the next entry into the
|
|
||||||
// ring (modulo the queue size).
|
|
||||||
ringIndex *uint16
|
|
||||||
// ring contains the [UsedElement]s. It wraps around at queue size.
|
|
||||||
ring []UsedElement
|
|
||||||
// availableEvent is not used by this implementation, but we reserve it
|
|
||||||
// anyway to avoid issues in case a device may try to write to it, contrary
|
|
||||||
// to the virtio specification.
|
|
||||||
availableEvent *uint16
|
|
||||||
|
|
||||||
// lastIndex is the internal ringIndex up to which all [UsedElement]s were
|
|
||||||
// processed.
|
|
||||||
lastIndex uint16
|
|
||||||
|
|
||||||
//mu sync.Mutex
|
|
||||||
}
|
|
||||||
|
|
||||||
// newUsedRing creates a used ring that uses the given underlying memory. The
|
|
||||||
// length of the memory slice must match the size needed for the ring (see
|
|
||||||
// [usedRingSize]) for the given queue size.
|
|
||||||
func newUsedRing(queueSize int, mem []byte) *UsedRing {
|
|
||||||
ringSize := usedRingSize(queueSize)
|
|
||||||
if len(mem) != ringSize {
|
|
||||||
panic(fmt.Sprintf("memory size (%v) does not match required size "+
|
|
||||||
"for used ring: %v", len(mem), ringSize))
|
|
||||||
}
|
|
||||||
|
|
||||||
r := UsedRing{
|
|
||||||
initialized: true,
|
|
||||||
flags: (*usedRingFlag)(unsafe.Pointer(&mem[0])),
|
|
||||||
ringIndex: (*uint16)(unsafe.Pointer(&mem[2])),
|
|
||||||
ring: unsafe.Slice((*UsedElement)(unsafe.Pointer(&mem[4])), queueSize),
|
|
||||||
availableEvent: (*uint16)(unsafe.Pointer(&mem[ringSize-2])),
|
|
||||||
}
|
|
||||||
r.lastIndex = *r.ringIndex
|
|
||||||
return &r
|
|
||||||
}
|
|
||||||
|
|
||||||
// Address returns the pointer to the beginning of the ring in memory.
|
|
||||||
// Do not modify the memory directly to not interfere with this implementation.
|
|
||||||
func (r *UsedRing) Address() uintptr {
|
|
||||||
if !r.initialized {
|
|
||||||
panic("used ring is not initialized")
|
|
||||||
}
|
|
||||||
return uintptr(unsafe.Pointer(r.flags))
|
|
||||||
}
|
|
||||||
|
|
||||||
func (r *UsedRing) availableToTake() int {
|
|
||||||
ringIndex := *r.ringIndex
|
|
||||||
if ringIndex == r.lastIndex {
|
|
||||||
// Nothing new.
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
// Calculate the number new used elements that we can read from the ring.
|
|
||||||
// The ring index may wrap, so special handling for that case is needed.
|
|
||||||
count := int(ringIndex - r.lastIndex)
|
|
||||||
if count < 0 {
|
|
||||||
count += 0xffff
|
|
||||||
}
|
|
||||||
return count
|
|
||||||
}
|
|
||||||
|
|
||||||
// take returns all new [UsedElement]s that the device put into the ring and
|
|
||||||
// that weren't already returned by a previous call to this method.
|
|
||||||
func (r *UsedRing) take(maxToTake int) (int, []UsedElement) {
|
|
||||||
count := r.availableToTake()
|
|
||||||
if count == 0 {
|
|
||||||
return 0, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
stillNeedToTake := 0
|
|
||||||
|
|
||||||
if maxToTake > 0 {
|
|
||||||
stillNeedToTake = count - maxToTake
|
|
||||||
if stillNeedToTake < 0 {
|
|
||||||
stillNeedToTake = 0
|
|
||||||
}
|
|
||||||
count = min(count, maxToTake)
|
|
||||||
}
|
|
||||||
|
|
||||||
// The number of new elements can never exceed the queue size.
|
|
||||||
if count > len(r.ring) {
|
|
||||||
panic("used ring contains more new elements than the ring is long")
|
|
||||||
}
|
|
||||||
|
|
||||||
elems := make([]UsedElement, count)
|
|
||||||
for i := range count {
|
|
||||||
elems[i] = r.ring[r.lastIndex%uint16(len(r.ring))]
|
|
||||||
r.lastIndex++
|
|
||||||
}
|
|
||||||
|
|
||||||
return stillNeedToTake, elems
|
|
||||||
}
|
|
||||||
|
|
||||||
func (r *UsedRing) takeOne() (UsedElement, bool) {
|
|
||||||
//r.mu.Lock()
|
|
||||||
//defer r.mu.Unlock()
|
|
||||||
|
|
||||||
count := r.availableToTake()
|
|
||||||
if count == 0 {
|
|
||||||
return UsedElement{}, false
|
|
||||||
}
|
|
||||||
|
|
||||||
// The number of new elements can never exceed the queue size.
|
|
||||||
if count > len(r.ring) {
|
|
||||||
panic("used ring contains more new elements than the ring is long")
|
|
||||||
}
|
|
||||||
|
|
||||||
out := r.ring[r.lastIndex%uint16(len(r.ring))]
|
|
||||||
r.lastIndex++
|
|
||||||
|
|
||||||
return out, true
|
|
||||||
}
|
|
||||||
|
|
||||||
// InitOfferSingle is only used to pre-fill the used queue at startup, and should not be used if the device is running!
|
|
||||||
func (r *UsedRing) InitOfferSingle(x uint16, size uint32) {
|
|
||||||
offset := 0
|
|
||||||
// Add descriptor chain heads to the ring.
|
|
||||||
|
|
||||||
// The 16-bit ring index may overflow. This is expected and is not an
|
|
||||||
// issue because the size of the ring array (which equals the queue
|
|
||||||
// size) is always a power of 2 and smaller than the highest possible
|
|
||||||
// 16-bit value.
|
|
||||||
insertIndex := int(*r.ringIndex+uint16(offset)) % len(r.ring)
|
|
||||||
r.ring[insertIndex].DescriptorIndex = uint32(x)
|
|
||||||
r.ring[insertIndex].Length = size
|
|
||||||
|
|
||||||
// Increase the ring index by the number of descriptor chains added to the ring.
|
|
||||||
*r.ringIndex += 1
|
|
||||||
}
|
|
||||||
@@ -1,136 +0,0 @@
|
|||||||
package virtqueue
|
|
||||||
|
|
||||||
import (
|
|
||||||
"testing"
|
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestUsedRing_MemoryLayout(t *testing.T) {
|
|
||||||
const queueSize = 2
|
|
||||||
|
|
||||||
memory := make([]byte, usedRingSize(queueSize))
|
|
||||||
r := newUsedRing(queueSize, memory)
|
|
||||||
|
|
||||||
*r.flags = 0x01ff
|
|
||||||
*r.ringIndex = 1
|
|
||||||
r.ring[0] = UsedElement{
|
|
||||||
DescriptorIndex: 0x0123,
|
|
||||||
Length: 0x4567,
|
|
||||||
}
|
|
||||||
r.ring[1] = UsedElement{
|
|
||||||
DescriptorIndex: 0x89ab,
|
|
||||||
Length: 0xcdef,
|
|
||||||
}
|
|
||||||
|
|
||||||
assert.Equal(t, []byte{
|
|
||||||
0xff, 0x01,
|
|
||||||
0x01, 0x00,
|
|
||||||
0x23, 0x01, 0x00, 0x00,
|
|
||||||
0x67, 0x45, 0x00, 0x00,
|
|
||||||
0xab, 0x89, 0x00, 0x00,
|
|
||||||
0xef, 0xcd, 0x00, 0x00,
|
|
||||||
0x00, 0x00,
|
|
||||||
}, memory)
|
|
||||||
}
|
|
||||||
|
|
||||||
//func TestUsedRing_Take(t *testing.T) {
|
|
||||||
// const queueSize = 8
|
|
||||||
//
|
|
||||||
// tests := []struct {
|
|
||||||
// name string
|
|
||||||
// ring []UsedElement
|
|
||||||
// ringIndex uint16
|
|
||||||
// lastIndex uint16
|
|
||||||
// expected []UsedElement
|
|
||||||
// }{
|
|
||||||
// {
|
|
||||||
// name: "nothing new",
|
|
||||||
// ring: []UsedElement{
|
|
||||||
// {DescriptorIndex: 1},
|
|
||||||
// {DescriptorIndex: 2},
|
|
||||||
// {DescriptorIndex: 3},
|
|
||||||
// {DescriptorIndex: 4},
|
|
||||||
// {},
|
|
||||||
// {},
|
|
||||||
// {},
|
|
||||||
// {},
|
|
||||||
// },
|
|
||||||
// ringIndex: 4,
|
|
||||||
// lastIndex: 4,
|
|
||||||
// expected: nil,
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// name: "no overflow",
|
|
||||||
// ring: []UsedElement{
|
|
||||||
// {DescriptorIndex: 1},
|
|
||||||
// {DescriptorIndex: 2},
|
|
||||||
// {DescriptorIndex: 3},
|
|
||||||
// {DescriptorIndex: 4},
|
|
||||||
// {},
|
|
||||||
// {},
|
|
||||||
// {},
|
|
||||||
// {},
|
|
||||||
// },
|
|
||||||
// ringIndex: 4,
|
|
||||||
// lastIndex: 1,
|
|
||||||
// expected: []UsedElement{
|
|
||||||
// {DescriptorIndex: 2},
|
|
||||||
// {DescriptorIndex: 3},
|
|
||||||
// {DescriptorIndex: 4},
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// name: "ring overflow",
|
|
||||||
// ring: []UsedElement{
|
|
||||||
// {DescriptorIndex: 9},
|
|
||||||
// {DescriptorIndex: 10},
|
|
||||||
// {DescriptorIndex: 3},
|
|
||||||
// {DescriptorIndex: 4},
|
|
||||||
// {DescriptorIndex: 5},
|
|
||||||
// {DescriptorIndex: 6},
|
|
||||||
// {DescriptorIndex: 7},
|
|
||||||
// {DescriptorIndex: 8},
|
|
||||||
// },
|
|
||||||
// ringIndex: 10,
|
|
||||||
// lastIndex: 7,
|
|
||||||
// expected: []UsedElement{
|
|
||||||
// {DescriptorIndex: 8},
|
|
||||||
// {DescriptorIndex: 9},
|
|
||||||
// {DescriptorIndex: 10},
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// name: "index overflow",
|
|
||||||
// ring: []UsedElement{
|
|
||||||
// {DescriptorIndex: 9},
|
|
||||||
// {DescriptorIndex: 10},
|
|
||||||
// {DescriptorIndex: 3},
|
|
||||||
// {DescriptorIndex: 4},
|
|
||||||
// {DescriptorIndex: 5},
|
|
||||||
// {DescriptorIndex: 6},
|
|
||||||
// {DescriptorIndex: 7},
|
|
||||||
// {DescriptorIndex: 8},
|
|
||||||
// },
|
|
||||||
// ringIndex: 2,
|
|
||||||
// lastIndex: 65535,
|
|
||||||
// expected: []UsedElement{
|
|
||||||
// {DescriptorIndex: 8},
|
|
||||||
// {DescriptorIndex: 9},
|
|
||||||
// {DescriptorIndex: 10},
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// }
|
|
||||||
// for _, tt := range tests {
|
|
||||||
// t.Run(tt.name, func(t *testing.T) {
|
|
||||||
// memory := make([]byte, usedRingSize(queueSize))
|
|
||||||
// r := newUsedRing(queueSize, memory)
|
|
||||||
//
|
|
||||||
// copy(r.ring, tt.ring)
|
|
||||||
// *r.ringIndex = tt.ringIndex
|
|
||||||
// r.lastIndex = tt.lastIndex
|
|
||||||
//
|
|
||||||
// assert.Equal(t, tt.expected, r.take())
|
|
||||||
// })
|
|
||||||
// }
|
|
||||||
//}
|
|
||||||
@@ -1,75 +0,0 @@
|
|||||||
package packet
|
|
||||||
|
|
||||||
import (
|
|
||||||
"github.com/slackhq/nebula/util/virtio"
|
|
||||||
"golang.org/x/sys/unix"
|
|
||||||
)
|
|
||||||
|
|
||||||
type OutPacket struct {
|
|
||||||
Segments [][]byte
|
|
||||||
// SegmentHeaders maps to the first virtio.NetHdrSize+14 bytes of Segments[n]
|
|
||||||
SegmentHeaders [][]byte
|
|
||||||
// SegmentPayloads maps to the remaining bytes of Segments[n]
|
|
||||||
SegmentPayloads [][]byte
|
|
||||||
// SegmentIDs is the list of underlying buffer IDs of Segments.
|
|
||||||
// SegmentIDs, Segments, SegmentHeaders, SegmentPayloads should all have the same length at all times!
|
|
||||||
SegmentIDs []uint16
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewOut() *OutPacket {
|
|
||||||
out := new(OutPacket)
|
|
||||||
out.Segments = make([][]byte, 0, 64)
|
|
||||||
out.SegmentHeaders = make([][]byte, 0, 64)
|
|
||||||
out.SegmentPayloads = make([][]byte, 0, 64)
|
|
||||||
out.SegmentIDs = make([]uint16, 0, 64)
|
|
||||||
return out
|
|
||||||
}
|
|
||||||
|
|
||||||
func (pkt *OutPacket) Reset() {
|
|
||||||
pkt.Segments = pkt.Segments[:0]
|
|
||||||
pkt.SegmentPayloads = pkt.SegmentPayloads[:0]
|
|
||||||
pkt.SegmentHeaders = pkt.SegmentHeaders[:0]
|
|
||||||
pkt.SegmentIDs = pkt.SegmentIDs[:0]
|
|
||||||
}
|
|
||||||
|
|
||||||
// DestroyLastSegment removes the contents of the last segment in the list.
|
|
||||||
// Use this to handle firewall drops or similar, but still hand the segment buffer back to the underlying driver.
|
|
||||||
// Implementations shall discard zero-length segments internally.
|
|
||||||
func (pkt *OutPacket) DestroyLastSegment() {
|
|
||||||
if len(pkt.Segments) == 0 {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
lastSeg := len(pkt.SegmentIDs) - 1
|
|
||||||
pkt.SegmentPayloads[lastSeg] = pkt.SegmentPayloads[lastSeg][:0]
|
|
||||||
pkt.SegmentHeaders[lastSeg] = pkt.SegmentHeaders[lastSeg][:0]
|
|
||||||
pkt.Segments[lastSeg] = pkt.Segments[lastSeg][:0]
|
|
||||||
}
|
|
||||||
|
|
||||||
func (pkt *OutPacket) UseSegment(segID uint16, seg []byte, isV6 bool) int {
|
|
||||||
pkt.SegmentIDs = append(pkt.SegmentIDs, segID)
|
|
||||||
pkt.Segments = append(pkt.Segments, seg) //todo do we need this?
|
|
||||||
|
|
||||||
vhdr := virtio.NetHdr{ //todo
|
|
||||||
Flags: unix.VIRTIO_NET_HDR_F_DATA_VALID,
|
|
||||||
GSOType: unix.VIRTIO_NET_HDR_GSO_NONE,
|
|
||||||
HdrLen: 0,
|
|
||||||
GSOSize: 0,
|
|
||||||
CsumStart: 0,
|
|
||||||
CsumOffset: 0,
|
|
||||||
NumBuffers: 0,
|
|
||||||
}
|
|
||||||
|
|
||||||
hdr := seg[0 : virtio.NetHdrSize+14]
|
|
||||||
_ = vhdr.Encode(hdr)
|
|
||||||
if isV6 {
|
|
||||||
hdr[virtio.NetHdrSize+14-2] = 0x86
|
|
||||||
hdr[virtio.NetHdrSize+14-1] = 0xdd
|
|
||||||
} else {
|
|
||||||
hdr[virtio.NetHdrSize+14-2] = 0x08
|
|
||||||
hdr[virtio.NetHdrSize+14-1] = 0x00
|
|
||||||
}
|
|
||||||
|
|
||||||
pkt.SegmentHeaders = append(pkt.SegmentHeaders, hdr)
|
|
||||||
pkt.SegmentPayloads = append(pkt.SegmentPayloads, seg[virtio.NetHdrSize+14:])
|
|
||||||
return len(pkt.SegmentIDs) - 1
|
|
||||||
}
|
|
||||||
@@ -1,148 +0,0 @@
|
|||||||
package packet
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/binary"
|
|
||||||
"fmt"
|
|
||||||
"iter"
|
|
||||||
"net/netip"
|
|
||||||
"slices"
|
|
||||||
"syscall"
|
|
||||||
"unsafe"
|
|
||||||
|
|
||||||
"golang.org/x/sys/unix"
|
|
||||||
)
|
|
||||||
|
|
||||||
const Size = 0xffff
|
|
||||||
|
|
||||||
type UDPPacket struct {
|
|
||||||
Payload []byte
|
|
||||||
Control []byte
|
|
||||||
Name []byte
|
|
||||||
SegSize int
|
|
||||||
|
|
||||||
ReadyToSend bool
|
|
||||||
wasSegmented bool
|
|
||||||
isV4 bool
|
|
||||||
}
|
|
||||||
|
|
||||||
func New(isV4 bool) *UDPPacket {
|
|
||||||
return &UDPPacket{
|
|
||||||
Payload: make([]byte, Size),
|
|
||||||
Control: make([]byte, unix.CmsgSpace(2)),
|
|
||||||
Name: make([]byte, unix.SizeofSockaddrInet6),
|
|
||||||
isV4: isV4,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *UDPPacket) AddrPort() netip.AddrPort {
|
|
||||||
var ip netip.Addr
|
|
||||||
// Its ok to skip the ok check here, the slicing is the only error that can occur and it will panic
|
|
||||||
if p.isV4 {
|
|
||||||
ip, _ = netip.AddrFromSlice(p.Name[4:8])
|
|
||||||
} else {
|
|
||||||
ip, _ = netip.AddrFromSlice(p.Name[8:24])
|
|
||||||
}
|
|
||||||
return netip.AddrPortFrom(ip.Unmap(), binary.BigEndian.Uint16(p.Name[2:4]))
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *UDPPacket) encodeSockaddr(dst []byte, addr netip.AddrPort) (uint32, error) {
|
|
||||||
//todo no chance this works on windows?
|
|
||||||
if p.isV4 {
|
|
||||||
if !addr.Addr().Is4() {
|
|
||||||
return 0, fmt.Errorf("Listener is IPv4, but writing to IPv6 remote")
|
|
||||||
}
|
|
||||||
var sa unix.RawSockaddrInet4
|
|
||||||
sa.Family = unix.AF_INET
|
|
||||||
sa.Addr = addr.Addr().As4()
|
|
||||||
binary.BigEndian.PutUint16((*[2]byte)(unsafe.Pointer(&sa.Port))[:], addr.Port())
|
|
||||||
size := unix.SizeofSockaddrInet4
|
|
||||||
copy(dst[:size], (*(*[unix.SizeofSockaddrInet4]byte)(unsafe.Pointer(&sa)))[:])
|
|
||||||
return uint32(size), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var sa unix.RawSockaddrInet6
|
|
||||||
sa.Family = unix.AF_INET6
|
|
||||||
sa.Addr = addr.Addr().As16()
|
|
||||||
binary.BigEndian.PutUint16((*[2]byte)(unsafe.Pointer(&sa.Port))[:], addr.Port())
|
|
||||||
size := unix.SizeofSockaddrInet6
|
|
||||||
copy(dst[:size], (*(*[unix.SizeofSockaddrInet6]byte)(unsafe.Pointer(&sa)))[:])
|
|
||||||
return uint32(size), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *UDPPacket) SetAddrPort(addr netip.AddrPort) error {
|
|
||||||
nl, err := p.encodeSockaddr(p.Name, addr)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
p.Name = p.Name[:nl]
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *UDPPacket) updateCtrl(ctrlLen int) {
|
|
||||||
p.SegSize = len(p.Payload)
|
|
||||||
p.wasSegmented = false
|
|
||||||
if ctrlLen == 0 {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if len(p.Control) == 0 {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
header, data, _ /*remain*/, err := unix.ParseOneSocketControlMessage(p.Control)
|
|
||||||
if err != nil {
|
|
||||||
return // oh well
|
|
||||||
}
|
|
||||||
|
|
||||||
if header.Level == unix.SOL_UDP && header.Type == unix.UDP_GRO && len(data) >= 2 {
|
|
||||||
p.wasSegmented = true
|
|
||||||
p.SegSize = int(binary.LittleEndian.Uint16(data[:2]))
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Update sets a UDPPacket into "just received, not processed" state
|
|
||||||
func (p *UDPPacket) Update(ctrlLen int) {
|
|
||||||
p.updateCtrl(ctrlLen)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *UDPPacket) SetSegSizeForTX() {
|
|
||||||
p.SegSize = len(p.Payload)
|
|
||||||
hdr := (*unix.Cmsghdr)(unsafe.Pointer(&p.Control[0]))
|
|
||||||
hdr.Level = unix.SOL_UDP
|
|
||||||
hdr.Type = unix.UDP_SEGMENT
|
|
||||||
hdr.SetLen(syscall.CmsgLen(2))
|
|
||||||
binary.NativeEndian.PutUint16(p.Control[unix.CmsgLen(0):unix.CmsgLen(0)+2], uint16(p.SegSize))
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *UDPPacket) CompatibleForSegmentationWith(otherP *UDPPacket, currentTotalSize int) bool {
|
|
||||||
//same dest
|
|
||||||
if !slices.Equal(p.Name, otherP.Name) {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
//don't get too big
|
|
||||||
if len(p.Payload)+currentTotalSize >= 0xffff {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
//same body len
|
|
||||||
//todo allow single different size at end
|
|
||||||
if len(p.Payload) != len(otherP.Payload) {
|
|
||||||
return false //todo technically you can cram one extra in
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *UDPPacket) Segments() iter.Seq[[]byte] {
|
|
||||||
return func(yield func([]byte) bool) {
|
|
||||||
//cursor := 0
|
|
||||||
for offset := 0; offset < len(p.Payload); offset += p.SegSize {
|
|
||||||
end := offset + p.SegSize
|
|
||||||
if end > len(p.Payload) {
|
|
||||||
end = len(p.Payload)
|
|
||||||
}
|
|
||||||
if !yield(p.Payload[offset:end]) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -91,7 +91,7 @@ func (p *PKI) reload(c *config.C, initial bool) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (p *PKI) reloadCerts(c *config.C, initial bool) *util.ContextualError {
|
func (p *PKI) reloadCerts(c *config.C, initial bool) *util.ContextualError {
|
||||||
newState, err := newCertStateFromConfig(c)
|
newState, err := newCertStateFromConfig(c, p.l)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return util.NewContextualError("Could not load client cert", nil, err)
|
return util.NewContextualError("Could not load client cert", nil, err)
|
||||||
}
|
}
|
||||||
@@ -102,7 +102,7 @@ func (p *PKI) reloadCerts(c *config.C, initial bool) *util.ContextualError {
|
|||||||
if currentState.v1Cert == nil {
|
if currentState.v1Cert == nil {
|
||||||
//adding certs is fine, actually. Networks-in-common confirmed in newCertState().
|
//adding certs is fine, actually. Networks-in-common confirmed in newCertState().
|
||||||
} else {
|
} else {
|
||||||
// did IP in cert change? if so, don't set
|
// did IP in cert change? if so, don't set. If we ever allow this, need to set p.firewallReloadNeeded
|
||||||
if !slices.Equal(currentState.v1Cert.Networks(), newState.v1Cert.Networks()) {
|
if !slices.Equal(currentState.v1Cert.Networks(), newState.v1Cert.Networks()) {
|
||||||
return util.NewContextualError(
|
return util.NewContextualError(
|
||||||
"Networks in new cert was different from old",
|
"Networks in new cert was different from old",
|
||||||
@@ -158,6 +158,14 @@ func (p *PKI) reloadCerts(c *config.C, initial bool) *util.ContextualError {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
newUN := newState.GetDefaultCertificate().UnsafeNetworks()
|
||||||
|
oldUN := currentState.GetDefaultCertificate().UnsafeNetworks()
|
||||||
|
if !slices.Equal(newUN, oldUN) {
|
||||||
|
//todo I don't love this, because other clients will see the new assignments and act on them, but we will not be able to.
|
||||||
|
//I think we need to wire this into the firewall reload.
|
||||||
|
p.l.WithFields(m{"previous": oldUN, "new": newUN}).Warning("UnsafeNetworks assignments differ. A restart is required in order for this to take effect.")
|
||||||
|
}
|
||||||
|
|
||||||
// Cipher cant be hot swapped so just leave it at what it was before
|
// Cipher cant be hot swapped so just leave it at what it was before
|
||||||
newState.cipher = currentState.cipher
|
newState.cipher = currentState.cipher
|
||||||
|
|
||||||
@@ -260,7 +268,7 @@ func (cs *CertState) MarshalJSON() ([]byte, error) {
|
|||||||
return json.Marshal(msg)
|
return json.Marshal(msg)
|
||||||
}
|
}
|
||||||
|
|
||||||
func newCertStateFromConfig(c *config.C) (*CertState, error) {
|
func newCertStateFromConfig(c *config.C, l *logrus.Logger) (*CertState, error) {
|
||||||
var err error
|
var err error
|
||||||
|
|
||||||
privPathOrPEM := c.GetString("pki.key", "")
|
privPathOrPEM := c.GetString("pki.key", "")
|
||||||
@@ -344,10 +352,33 @@ func newCertStateFromConfig(c *config.C) (*CertState, error) {
|
|||||||
return nil, fmt.Errorf("unknown pki.initiating_version: %v", rawInitiatingVersion)
|
return nil, fmt.Errorf("unknown pki.initiating_version: %v", rawInitiatingVersion)
|
||||||
}
|
}
|
||||||
|
|
||||||
return newCertState(initiatingVersion, v1, v2, isPkcs11, curve, rawKey)
|
return newCertState(l, initiatingVersion, v1, v2, isPkcs11, curve, rawKey)
|
||||||
}
|
}
|
||||||
|
|
||||||
func newCertState(dv cert.Version, v1, v2 cert.Certificate, pkcs11backed bool, privateKeyCurve cert.Curve, privateKey []byte) (*CertState, error) {
|
func compareUnsafeNetworksAcrossCertVersions(v1, v2 cert.Certificate) error {
|
||||||
|
if v1 == nil || v2 == nil {
|
||||||
|
return nil //can't be a problem if we don't have one of the kinds of cert
|
||||||
|
}
|
||||||
|
|
||||||
|
v4UnsafeNets := 0
|
||||||
|
for _, n := range v2.UnsafeNetworks() {
|
||||||
|
if n.Addr().Is6() {
|
||||||
|
continue // V1 certs can't have IPv6 unsafe networks
|
||||||
|
} else {
|
||||||
|
v4UnsafeNets++
|
||||||
|
}
|
||||||
|
if !slices.Contains(v1.UnsafeNetworks(), n) {
|
||||||
|
return errors.New("UnsafeNetworks mismatch")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(v1.UnsafeNetworks()) != v4UnsafeNets {
|
||||||
|
return errors.New("UnsafeNetworks mismatch")
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func newCertState(l *logrus.Logger, dv cert.Version, v1, v2 cert.Certificate, pkcs11backed bool, privateKeyCurve cert.Curve, privateKey []byte) (*CertState, error) {
|
||||||
cs := CertState{
|
cs := CertState{
|
||||||
privateKey: privateKey,
|
privateKey: privateKey,
|
||||||
pkcs11Backed: pkcs11backed,
|
pkcs11Backed: pkcs11backed,
|
||||||
@@ -370,6 +401,12 @@ func newCertState(dv cert.Version, v1, v2 cert.Certificate, pkcs11backed bool, p
|
|||||||
}
|
}
|
||||||
|
|
||||||
cs.initiatingVersion = dv
|
cs.initiatingVersion = dv
|
||||||
|
|
||||||
|
warn := compareUnsafeNetworksAcrossCertVersions(v1, v2)
|
||||||
|
if warn != nil {
|
||||||
|
l.WithFields(m{"UnsafeNetworksV1": v1.UnsafeNetworks(), "UnsafeNetworksV2": v2.UnsafeNetworks()}).
|
||||||
|
Warning("the IPv4 UnsafeNetworks assigned in the V1 certificate do not match the ones in V2")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if v1 != nil {
|
if v1 != nil {
|
||||||
|
|||||||
+1
-1
@@ -55,7 +55,7 @@ func (rm *relayManager) setAmRelay(v bool) {
|
|||||||
func AddRelay(l *logrus.Logger, relayHostInfo *HostInfo, hm *HostMap, vpnIp netip.Addr, remoteIdx *uint32, relayType int, state int) (uint32, error) {
|
func AddRelay(l *logrus.Logger, relayHostInfo *HostInfo, hm *HostMap, vpnIp netip.Addr, remoteIdx *uint32, relayType int, state int) (uint32, error) {
|
||||||
hm.Lock()
|
hm.Lock()
|
||||||
defer hm.Unlock()
|
defer hm.Unlock()
|
||||||
for i := 0; i < 32; i++ {
|
for range 32 {
|
||||||
index, err := generateIndex(l)
|
index, err := generateIndex(l)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return 0, err
|
return 0, err
|
||||||
|
|||||||
+1
-6
@@ -404,12 +404,7 @@ func (r *RemoteList) Rebuild(preferredRanges []netip.Prefix) {
|
|||||||
|
|
||||||
// unlockedIsBad assumes you have the write lock and checks if the remote matches any entry in the blocked address list
|
// unlockedIsBad assumes you have the write lock and checks if the remote matches any entry in the blocked address list
|
||||||
func (r *RemoteList) unlockedIsBad(remote netip.AddrPort) bool {
|
func (r *RemoteList) unlockedIsBad(remote netip.AddrPort) bool {
|
||||||
for _, v := range r.badRemotes {
|
return slices.Contains(r.badRemotes, remote)
|
||||||
if v == remote {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// unlockedSetLearnedV4 assumes you have the write lock and sets the current learned address for this owner and marks the
|
// unlockedSetLearnedV4 assumes you have the write lock and sets the current learned address for this owner and marks the
|
||||||
|
|||||||
+1
-1
@@ -6,7 +6,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
// Sentinal value
|
// Sentinel value
|
||||||
BucketNotCalculated = -1
|
BucketNotCalculated = -1
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,91 @@
|
|||||||
|
package nebula
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/binary"
|
||||||
|
"net/netip"
|
||||||
|
)
|
||||||
|
|
||||||
|
func recalcIPv4Checksum(data []byte, oldSrcIP netip.Addr, newSrcIP netip.Addr) {
|
||||||
|
oldChecksum := binary.BigEndian.Uint16(data[10:12])
|
||||||
|
//because of how checksums work, we can re-use this function
|
||||||
|
checksum := calcNewTransportChecksum(oldChecksum, oldSrcIP, 0, newSrcIP, 0)
|
||||||
|
binary.BigEndian.PutUint16(data[10:12], checksum)
|
||||||
|
}
|
||||||
|
|
||||||
|
func calcNewTransportChecksum(oldChecksum uint16, oldSrcIP netip.Addr, oldSrcPort uint16, newSrcIP netip.Addr, newSrcPort uint16) uint16 {
|
||||||
|
oldIP := binary.BigEndian.Uint32(oldSrcIP.AsSlice())
|
||||||
|
newIP := binary.BigEndian.Uint32(newSrcIP.AsSlice())
|
||||||
|
|
||||||
|
// Start with inverted checksum
|
||||||
|
checksum := uint32(^oldChecksum)
|
||||||
|
|
||||||
|
// Subtract old IP (as two 16-bit words)
|
||||||
|
checksum += uint32(^uint16(oldIP >> 16))
|
||||||
|
checksum += uint32(^uint16(oldIP & 0xFFFF))
|
||||||
|
|
||||||
|
// Subtract old port
|
||||||
|
checksum += uint32(^oldSrcPort)
|
||||||
|
|
||||||
|
// Add new IP (as two 16-bit words)
|
||||||
|
checksum += uint32(newIP >> 16)
|
||||||
|
checksum += uint32(newIP & 0xFFFF)
|
||||||
|
|
||||||
|
// Add new port
|
||||||
|
checksum += uint32(newSrcPort)
|
||||||
|
|
||||||
|
// Fold carries
|
||||||
|
for checksum > 0xFFFF {
|
||||||
|
checksum = (checksum & 0xFFFF) + (checksum >> 16)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return ones' complement
|
||||||
|
return ^uint16(checksum)
|
||||||
|
}
|
||||||
|
|
||||||
|
func recalcV4TransportChecksum(offsetInsideHeader int, data []byte, oldSrcIP netip.AddrPort, newSrcIP netip.AddrPort) {
|
||||||
|
ipHeaderOffset := int(data[0]&0x0F) * 4
|
||||||
|
offset := ipHeaderOffset + offsetInsideHeader
|
||||||
|
oldcsum := binary.BigEndian.Uint16(data[offset : offset+2])
|
||||||
|
checksum := calcNewTransportChecksum(oldcsum, oldSrcIP.Addr(), oldSrcIP.Port(), newSrcIP.Addr(), newSrcIP.Port())
|
||||||
|
binary.BigEndian.PutUint16(data[offset:offset+2], checksum)
|
||||||
|
}
|
||||||
|
|
||||||
|
func recalcUDPv4Checksum(data []byte, oldSrcIP netip.AddrPort, newSrcIP netip.AddrPort) {
|
||||||
|
const offsetInsideHeader = 6
|
||||||
|
recalcV4TransportChecksum(offsetInsideHeader, data, oldSrcIP, newSrcIP)
|
||||||
|
}
|
||||||
|
|
||||||
|
func recalcTCPv4Checksum(data []byte, oldSrcIP netip.AddrPort, newSrcIP netip.AddrPort) {
|
||||||
|
const offsetInsideHeader = 16
|
||||||
|
recalcV4TransportChecksum(offsetInsideHeader, data, oldSrcIP, newSrcIP)
|
||||||
|
}
|
||||||
|
|
||||||
|
func calcNewICMPChecksum(oldChecksum uint16, oldCode uint16, newCode uint16, oldID uint16, newID uint16) uint16 {
|
||||||
|
// Start with inverted checksum
|
||||||
|
checksum := uint32(^oldChecksum)
|
||||||
|
|
||||||
|
// Subtract old stuff
|
||||||
|
checksum += uint32(^oldCode)
|
||||||
|
checksum += uint32(^oldID)
|
||||||
|
|
||||||
|
// Add new stuff
|
||||||
|
checksum += uint32(newCode)
|
||||||
|
checksum += uint32(newID)
|
||||||
|
|
||||||
|
// Fold carries
|
||||||
|
for checksum > 0xFFFF {
|
||||||
|
checksum = (checksum & 0xFFFF) + (checksum >> 16)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return ones' complement
|
||||||
|
return ^uint16(checksum)
|
||||||
|
}
|
||||||
|
|
||||||
|
func recalcICMPv4Checksum(data []byte, oldCode uint16, newCode uint16, oldID uint16, newID uint16) {
|
||||||
|
const offsetInsideHeader = 2
|
||||||
|
ipHeaderOffset := int(data[0]&0x0F) * 4
|
||||||
|
offset := ipHeaderOffset + offsetInsideHeader
|
||||||
|
oldChecksum := binary.BigEndian.Uint16(data[offset : offset+2])
|
||||||
|
checksum := calcNewICMPChecksum(oldChecksum, oldCode, newCode, oldID, newID)
|
||||||
|
binary.BigEndian.PutUint16(data[offset:offset+2], checksum)
|
||||||
|
}
|
||||||
+1310
File diff suppressed because it is too large
Load Diff
@@ -6,6 +6,7 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"maps"
|
||||||
"net"
|
"net"
|
||||||
"net/netip"
|
"net/netip"
|
||||||
"os"
|
"os"
|
||||||
@@ -831,9 +832,7 @@ func sshPrintRelays(ifce *Interface, fs any, a []string, w sshd.StringWriter) er
|
|||||||
|
|
||||||
relays := map[uint32]*HostInfo{}
|
relays := map[uint32]*HostInfo{}
|
||||||
ifce.hostMap.Lock()
|
ifce.hostMap.Lock()
|
||||||
for k, v := range ifce.hostMap.Relays {
|
maps.Copy(relays, ifce.hostMap.Relays)
|
||||||
relays[k] = v
|
|
||||||
}
|
|
||||||
ifce.hostMap.Unlock()
|
ifce.hostMap.Unlock()
|
||||||
|
|
||||||
type RelayFor struct {
|
type RelayFor struct {
|
||||||
|
|||||||
+12
@@ -10,6 +10,18 @@ import (
|
|||||||
|
|
||||||
type NoopTun struct{}
|
type NoopTun struct{}
|
||||||
|
|
||||||
|
func (NoopTun) UnsafeNetworks() []netip.Prefix {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (NoopTun) SNATAddress() netip.Prefix {
|
||||||
|
return netip.Prefix{}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (NoopTun) UnsafeIPv4OriginAddress() netip.Prefix {
|
||||||
|
return netip.Prefix{}
|
||||||
|
}
|
||||||
|
|
||||||
func (NoopTun) RoutesFor(addr netip.Addr) routing.Gateways {
|
func (NoopTun) RoutesFor(addr netip.Addr) routing.Gateways {
|
||||||
return routing.Gateways{}
|
return routing.Gateways{}
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-2
@@ -134,7 +134,7 @@ func TestTimerWheel_Purge(t *testing.T) {
|
|||||||
assert.True(t, tw.lastTick.After(lastTick))
|
assert.True(t, tw.lastTick.After(lastTick))
|
||||||
|
|
||||||
// Make sure we get all 4 packets back
|
// Make sure we get all 4 packets back
|
||||||
for i := 0; i < 4; i++ {
|
for i := range 4 {
|
||||||
p, has := tw.Purge()
|
p, has := tw.Purge()
|
||||||
assert.True(t, has)
|
assert.True(t, has)
|
||||||
assert.Equal(t, fps[i], p)
|
assert.Equal(t, fps[i], p)
|
||||||
@@ -149,7 +149,7 @@ func TestTimerWheel_Purge(t *testing.T) {
|
|||||||
// Make sure we cached the free'd items
|
// Make sure we cached the free'd items
|
||||||
assert.Equal(t, 4, tw.itemsCached)
|
assert.Equal(t, 4, tw.itemsCached)
|
||||||
ci := tw.itemCache
|
ci := tw.itemCache
|
||||||
for i := 0; i < 4; i++ {
|
for range 4 {
|
||||||
assert.NotNil(t, ci)
|
assert.NotNil(t, ci)
|
||||||
ci = ci.Next
|
ci = ci.Next
|
||||||
}
|
}
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user