2020-04-07 17:45:16 +00:00
|
|
|
import base64
|
|
|
|
|
2020-04-03 17:27:49 +00:00
|
|
|
from django.contrib.auth import get_user_model
|
2020-04-07 17:45:16 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2020-04-03 17:27:49 +00:00
|
|
|
from rest_framework import serializers
|
|
|
|
|
|
|
|
from .models import *
|
|
|
|
|
2020-04-06 20:30:01 +00:00
|
|
|
class VPNPoolSerializer(serializers.ModelSerializer):
|
|
|
|
class Meta:
|
|
|
|
model = VPNPool
|
|
|
|
fields = '__all__'
|
|
|
|
|
2020-04-12 20:55:22 +00:00
|
|
|
class VPNNetworkReservationSerializer(serializers.ModelSerializer):
|
|
|
|
class Meta:
|
|
|
|
model = VPNNetworkReservation
|
|
|
|
fields = '__all__'
|
|
|
|
|
|
|
|
|
2020-04-06 20:30:01 +00:00
|
|
|
class VPNNetworkSerializer(serializers.ModelSerializer):
|
2020-04-03 17:27:49 +00:00
|
|
|
class Meta:
|
2020-04-06 20:30:01 +00:00
|
|
|
model = VPNNetwork
|
2020-04-03 17:27:49 +00:00
|
|
|
fields = '__all__'
|
2020-04-07 17:45:16 +00:00
|
|
|
|
|
|
|
# This is required for finding the VPN pool, but does not
|
|
|
|
# exist in the model
|
|
|
|
network_size = serializers.IntegerField(min_value=0,
|
[vpn] make a vpn creat-able!
[15:40] line:~% http -a nicoschottelius:$(pass ungleich.ch/nico.schottelius@ungleich.ch) http://localhost:8000/net/vpn/ network_size=48 wireguard_public_key=$(wg genkey | wg pubkey)
HTTP/1.1 201 Created
Allow: GET, POST, HEAD, OPTIONS
Content-Length: 206
Content-Type: application/json
Date: Sun, 12 Apr 2020 13:40:26 GMT
Server: WSGIServer/0.2 CPython/3.7.3
Vary: Accept
X-Content-Type-Options: nosniff
X-Frame-Options: DENY
{
"extra_data": null,
"network": "2a0a:e5c1:203::",
"order": null,
"owner": 30,
"status": "PENDING",
"uuid": "8f977a8f-e06a-4346-94ae-8f525df58b7b",
"wireguard_public_key": "JvCuUTZHm9unasJkGsLKN0Bf/hu6ZSIv7dnIGPyJ6xA="
}
2020-04-12 13:40:39 +00:00
|
|
|
max_value=128,
|
|
|
|
write_only=True)
|
2020-04-07 17:45:16 +00:00
|
|
|
|
|
|
|
def validate_wireguard_public_key(self, value):
|
|
|
|
msg = _("Supplied key is not a valid wireguard public key")
|
|
|
|
|
|
|
|
""" FIXME: verify that this does not create broken wireguard config files,
|
|
|
|
i.e. contains \n or similar!
|
|
|
|
We might even need to be more strict to not break wireguard...
|
|
|
|
"""
|
|
|
|
|
|
|
|
try:
|
|
|
|
base64.standard_b64decode(value)
|
|
|
|
except Exception as e:
|
|
|
|
raise serializers.ValidationError(msg)
|
|
|
|
|
|
|
|
if '\n' in value:
|
|
|
|
raise serializers.ValidationError(msg)
|
|
|
|
|
|
|
|
return value
|
|
|
|
|
|
|
|
def validate(self, data):
|
|
|
|
|
|
|
|
# FIXME: filter for status = active or similar
|
|
|
|
all_pools = VPNPool.objects.all()
|
|
|
|
sizes = [ p.subnetwork_size for p in all_pools ]
|
|
|
|
|
|
|
|
pools = VPNPool.objects.filter(subnetwork_size=data['network_size'])
|
|
|
|
|
|
|
|
if len(pools) == 0:
|
|
|
|
msg = _("No pool available for networks with size = {}. Available are: {}".format(data['network_size'], sizes))
|
|
|
|
raise serializers.ValidationError(msg)
|
|
|
|
|
|
|
|
return data
|
|
|
|
|
|
|
|
def create(self, validated_data):
|
2020-04-08 14:24:39 +00:00
|
|
|
"""
|
|
|
|
Creating a new vpnnetwork - there are a couple of race conditions,
|
|
|
|
especially when run in parallel.
|
[vpn] make a vpn creat-able!
[15:40] line:~% http -a nicoschottelius:$(pass ungleich.ch/nico.schottelius@ungleich.ch) http://localhost:8000/net/vpn/ network_size=48 wireguard_public_key=$(wg genkey | wg pubkey)
HTTP/1.1 201 Created
Allow: GET, POST, HEAD, OPTIONS
Content-Length: 206
Content-Type: application/json
Date: Sun, 12 Apr 2020 13:40:26 GMT
Server: WSGIServer/0.2 CPython/3.7.3
Vary: Accept
X-Content-Type-Options: nosniff
X-Frame-Options: DENY
{
"extra_data": null,
"network": "2a0a:e5c1:203::",
"order": null,
"owner": 30,
"status": "PENDING",
"uuid": "8f977a8f-e06a-4346-94ae-8f525df58b7b",
"wireguard_public_key": "JvCuUTZHm9unasJkGsLKN0Bf/hu6ZSIv7dnIGPyJ6xA="
}
2020-04-12 13:40:39 +00:00
|
|
|
|
|
|
|
What we should be doing:
|
|
|
|
|
|
|
|
- create a reservation race free
|
|
|
|
- map the reservation to a network (?)
|
2020-04-08 14:24:39 +00:00
|
|
|
"""
|
|
|
|
|
[vpn] make a vpn creat-able!
[15:40] line:~% http -a nicoschottelius:$(pass ungleich.ch/nico.schottelius@ungleich.ch) http://localhost:8000/net/vpn/ network_size=48 wireguard_public_key=$(wg genkey | wg pubkey)
HTTP/1.1 201 Created
Allow: GET, POST, HEAD, OPTIONS
Content-Length: 206
Content-Type: application/json
Date: Sun, 12 Apr 2020 13:40:26 GMT
Server: WSGIServer/0.2 CPython/3.7.3
Vary: Accept
X-Content-Type-Options: nosniff
X-Frame-Options: DENY
{
"extra_data": null,
"network": "2a0a:e5c1:203::",
"order": null,
"owner": 30,
"status": "PENDING",
"uuid": "8f977a8f-e06a-4346-94ae-8f525df58b7b",
"wireguard_public_key": "JvCuUTZHm9unasJkGsLKN0Bf/hu6ZSIv7dnIGPyJ6xA="
}
2020-04-12 13:40:39 +00:00
|
|
|
pools = VPNPool.objects.filter(subnetwork_size=validated_data['network_size'])
|
|
|
|
|
|
|
|
vpn_network = None
|
|
|
|
|
2020-04-08 14:24:39 +00:00
|
|
|
for pool in pools:
|
|
|
|
if pool.num_free_networks > 0:
|
[vpn] make a vpn creat-able!
[15:40] line:~% http -a nicoschottelius:$(pass ungleich.ch/nico.schottelius@ungleich.ch) http://localhost:8000/net/vpn/ network_size=48 wireguard_public_key=$(wg genkey | wg pubkey)
HTTP/1.1 201 Created
Allow: GET, POST, HEAD, OPTIONS
Content-Length: 206
Content-Type: application/json
Date: Sun, 12 Apr 2020 13:40:26 GMT
Server: WSGIServer/0.2 CPython/3.7.3
Vary: Accept
X-Content-Type-Options: nosniff
X-Frame-Options: DENY
{
"extra_data": null,
"network": "2a0a:e5c1:203::",
"order": null,
"owner": 30,
"status": "PENDING",
"uuid": "8f977a8f-e06a-4346-94ae-8f525df58b7b",
"wireguard_public_key": "JvCuUTZHm9unasJkGsLKN0Bf/hu6ZSIv7dnIGPyJ6xA="
}
2020-04-12 13:40:39 +00:00
|
|
|
next_address = pool.next_free_network
|
|
|
|
|
|
|
|
reservation, created = VPNNetworkReservation.objects.update_or_create(
|
|
|
|
vpnpool=pool, address=next_address,
|
|
|
|
defaults = {
|
|
|
|
'status': 'used'
|
|
|
|
})
|
2020-04-08 14:24:39 +00:00
|
|
|
|
[vpn] make a vpn creat-able!
[15:40] line:~% http -a nicoschottelius:$(pass ungleich.ch/nico.schottelius@ungleich.ch) http://localhost:8000/net/vpn/ network_size=48 wireguard_public_key=$(wg genkey | wg pubkey)
HTTP/1.1 201 Created
Allow: GET, POST, HEAD, OPTIONS
Content-Length: 206
Content-Type: application/json
Date: Sun, 12 Apr 2020 13:40:26 GMT
Server: WSGIServer/0.2 CPython/3.7.3
Vary: Accept
X-Content-Type-Options: nosniff
X-Frame-Options: DENY
{
"extra_data": null,
"network": "2a0a:e5c1:203::",
"order": null,
"owner": 30,
"status": "PENDING",
"uuid": "8f977a8f-e06a-4346-94ae-8f525df58b7b",
"wireguard_public_key": "JvCuUTZHm9unasJkGsLKN0Bf/hu6ZSIv7dnIGPyJ6xA="
}
2020-04-12 13:40:39 +00:00
|
|
|
vpn_network = VPNNetwork.objects.create(
|
|
|
|
owner=self.context['request'].user,
|
|
|
|
network=reservation,
|
|
|
|
wireguard_public_key=validated_data['wireguard_public_key']
|
|
|
|
)
|
2020-04-08 14:24:39 +00:00
|
|
|
|
[vpn] make a vpn creat-able!
[15:40] line:~% http -a nicoschottelius:$(pass ungleich.ch/nico.schottelius@ungleich.ch) http://localhost:8000/net/vpn/ network_size=48 wireguard_public_key=$(wg genkey | wg pubkey)
HTTP/1.1 201 Created
Allow: GET, POST, HEAD, OPTIONS
Content-Length: 206
Content-Type: application/json
Date: Sun, 12 Apr 2020 13:40:26 GMT
Server: WSGIServer/0.2 CPython/3.7.3
Vary: Accept
X-Content-Type-Options: nosniff
X-Frame-Options: DENY
{
"extra_data": null,
"network": "2a0a:e5c1:203::",
"order": null,
"owner": 30,
"status": "PENDING",
"uuid": "8f977a8f-e06a-4346-94ae-8f525df58b7b",
"wireguard_public_key": "JvCuUTZHm9unasJkGsLKN0Bf/hu6ZSIv7dnIGPyJ6xA="
}
2020-04-12 13:40:39 +00:00
|
|
|
break
|
|
|
|
if not vpn_network:
|
|
|
|
# FIXME: use correct exception
|
|
|
|
raise Exception("Did not find any free pool")
|
2020-04-08 14:24:39 +00:00
|
|
|
|
|
|
|
|
[vpn] make a vpn creat-able!
[15:40] line:~% http -a nicoschottelius:$(pass ungleich.ch/nico.schottelius@ungleich.ch) http://localhost:8000/net/vpn/ network_size=48 wireguard_public_key=$(wg genkey | wg pubkey)
HTTP/1.1 201 Created
Allow: GET, POST, HEAD, OPTIONS
Content-Length: 206
Content-Type: application/json
Date: Sun, 12 Apr 2020 13:40:26 GMT
Server: WSGIServer/0.2 CPython/3.7.3
Vary: Accept
X-Content-Type-Options: nosniff
X-Frame-Options: DENY
{
"extra_data": null,
"network": "2a0a:e5c1:203::",
"order": null,
"owner": 30,
"status": "PENDING",
"uuid": "8f977a8f-e06a-4346-94ae-8f525df58b7b",
"wireguard_public_key": "JvCuUTZHm9unasJkGsLKN0Bf/hu6ZSIv7dnIGPyJ6xA="
}
2020-04-12 13:40:39 +00:00
|
|
|
return vpn_network
|