2015-05-20 13:44:30 +00:00
|
|
|
import crypt
|
2020-07-13 09:33:09 +00:00
|
|
|
import json
|
|
|
|
import os
|
2016-09-06 11:01:45 +00:00
|
|
|
import re
|
2020-07-13 09:33:09 +00:00
|
|
|
import socket
|
2022-06-15 11:51:56 +00:00
|
|
|
import subprocess
|
2022-11-02 13:05:41 +00:00
|
|
|
import time
|
2015-03-12 14:15:36 +00:00
|
|
|
from bisect import insort
|
2020-07-13 09:33:09 +00:00
|
|
|
|
2020-10-07 06:08:48 +00:00
|
|
|
from accounts.models import UserInstance, UserSSHKey
|
|
|
|
from admin.decorators import superuser_only
|
|
|
|
from appsettings.models import AppSettings
|
|
|
|
from appsettings.settings import app_settings
|
|
|
|
from computes.models import Compute
|
2020-07-13 09:33:09 +00:00
|
|
|
from django.conf import settings
|
|
|
|
from django.contrib import messages
|
|
|
|
from django.contrib.auth.decorators import permission_required
|
|
|
|
from django.contrib.auth.models import User
|
2020-10-07 06:08:48 +00:00
|
|
|
from django.http import Http404, HttpResponse, JsonResponse
|
2020-07-13 09:33:09 +00:00
|
|
|
from django.shortcuts import get_object_or_404, redirect, render
|
2020-01-24 07:09:46 +00:00
|
|
|
from django.urls import reverse
|
2020-10-14 12:27:57 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2022-11-02 13:05:41 +00:00
|
|
|
from libvirt import (VIR_DOMAIN_UNDEFINE_KEEP_NVRAM, VIR_DOMAIN_UNDEFINE_NVRAM,
|
|
|
|
libvirtError)
|
2020-07-13 09:33:09 +00:00
|
|
|
from logs.views import addlogmsg
|
|
|
|
from vrtManager import util
|
2017-07-19 13:34:03 +00:00
|
|
|
from vrtManager.create import wvmCreate
|
2020-10-07 06:08:48 +00:00
|
|
|
from vrtManager.instance import wvmInstances
|
2021-02-12 13:06:12 +00:00
|
|
|
from vrtManager.interface import wvmInterface
|
2018-10-24 09:04:05 +00:00
|
|
|
from vrtManager.storage import wvmStorage
|
2016-05-08 10:24:43 +00:00
|
|
|
from vrtManager.util import randomPasswd
|
2015-03-27 09:53:13 +00:00
|
|
|
|
2022-11-02 13:05:41 +00:00
|
|
|
from instances.models import Instance
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
from . import utils
|
|
|
|
from .forms import ConsoleForm, FlavorForm, NewVMForm
|
|
|
|
from .models import Flavor
|
2015-03-27 09:53:13 +00:00
|
|
|
|
2016-04-16 13:06:39 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def index(request):
|
|
|
|
instances = None
|
2015-03-27 09:53:13 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
computes = (
|
|
|
|
Compute.objects.all()
|
|
|
|
.order_by("name")
|
|
|
|
.prefetch_related("instance_set")
|
|
|
|
.prefetch_related("instance_set__userinstance_set")
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
for compute in computes:
|
|
|
|
utils.refr(compute)
|
2015-03-27 09:53:13 +00:00
|
|
|
|
2022-06-13 07:58:46 +00:00
|
|
|
if request.user.is_superuser or request.user.has_perm("instances.view_instances"):
|
2020-11-05 09:34:31 +00:00
|
|
|
instances = Instance.objects.all().prefetch_related("userinstance_set")
|
2018-09-28 10:33:21 +00:00
|
|
|
else:
|
2022-11-02 05:54:35 +00:00
|
|
|
instances = Instance.objects.filter(
|
|
|
|
userinstance__user=request.user
|
|
|
|
).prefetch_related("userinstance_set")
|
2015-03-11 12:54:34 +00:00
|
|
|
|
2022-11-02 05:54:35 +00:00
|
|
|
return render(
|
|
|
|
request, "allinstances.html", {"computes": computes, "instances": instances}
|
|
|
|
)
|
2015-02-27 08:53:51 +00:00
|
|
|
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def instance(request, pk):
|
2020-10-15 05:58:42 +00:00
|
|
|
instance: Instance = get_instance(request.user, pk)
|
2020-07-13 09:33:09 +00:00
|
|
|
compute: Compute = instance.compute
|
2020-11-05 09:34:31 +00:00
|
|
|
computes = Compute.objects.all().order_by("name")
|
2018-02-14 14:22:57 +00:00
|
|
|
computes_count = computes.count()
|
2020-11-05 09:34:31 +00:00
|
|
|
users = User.objects.all().order_by("username")
|
2015-05-27 13:23:49 +00:00
|
|
|
publickeys = UserSSHKey.objects.filter(user_id=request.user.id)
|
2018-06-15 12:13:50 +00:00
|
|
|
keymaps = settings.QEMU_KEYMAPS
|
2022-11-02 05:54:35 +00:00
|
|
|
console_types = AppSettings.objects.get(
|
|
|
|
key="QEMU_CONSOLE_DEFAULT_TYPE"
|
|
|
|
).choices_as_list()
|
2020-07-13 09:33:09 +00:00
|
|
|
console_form = ConsoleForm(
|
|
|
|
initial={
|
2020-11-05 09:34:31 +00:00
|
|
|
"type": instance.console_type,
|
2022-08-22 12:12:33 +00:00
|
|
|
"listen_on": instance.console_listener_address,
|
2020-11-05 09:34:31 +00:00
|
|
|
"password": instance.console_passwd,
|
|
|
|
"keymap": instance.console_keymap,
|
|
|
|
}
|
|
|
|
)
|
2022-08-22 12:12:33 +00:00
|
|
|
console_listener_addresses = settings.QEMU_CONSOLE_LISTENER_ADDRESSES
|
2020-07-13 09:33:09 +00:00
|
|
|
bottom_bar = app_settings.VIEW_INSTANCE_DETAIL_BOTTOM_BAR
|
2022-11-02 05:54:35 +00:00
|
|
|
allow_admin_or_not_template = (
|
|
|
|
request.user.is_superuser or request.user.is_staff or not instance.is_template
|
|
|
|
)
|
2015-03-16 09:57:55 +00:00
|
|
|
try:
|
2020-11-05 09:34:31 +00:00
|
|
|
userinstance = UserInstance.objects.get(
|
2022-11-02 05:54:35 +00:00
|
|
|
instance__compute_id=compute.id,
|
|
|
|
instance__name=instance.name,
|
|
|
|
user__id=request.user.id,
|
2020-11-05 09:34:31 +00:00
|
|
|
)
|
2015-03-16 09:57:55 +00:00
|
|
|
except UserInstance.DoesNotExist:
|
2018-07-20 06:54:26 +00:00
|
|
|
userinstance = None
|
2015-03-16 09:57:55 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
memory_range = [256, 512, 768, 1024, 2048, 3072, 4096, 6144, 8192, 16384]
|
|
|
|
if instance.memory not in memory_range:
|
|
|
|
insort(memory_range, instance.memory)
|
|
|
|
if instance.cur_memory not in memory_range:
|
|
|
|
insort(memory_range, instance.cur_memory)
|
|
|
|
clone_free_names = utils.get_clone_free_names()
|
|
|
|
user_quota_msg = utils.check_user_quota(request.user, 0, 0, 0, 0)
|
|
|
|
|
|
|
|
default_bus = app_settings.INSTANCE_VOLUME_DEFAULT_BUS
|
|
|
|
default_io = app_settings.INSTANCE_VOLUME_DEFAULT_IO
|
|
|
|
default_discard = app_settings.INSTANCE_VOLUME_DEFAULT_DISCARD
|
|
|
|
default_zeroes = app_settings.INSTANCE_VOLUME_DEFAULT_DETECT_ZEROES
|
|
|
|
default_cache = app_settings.INSTANCE_VOLUME_DEFAULT_CACHE
|
|
|
|
default_format = app_settings.INSTANCE_VOLUME_DEFAULT_FORMAT
|
|
|
|
# default_disk_owner_uid = int(app_settings.INSTANCE_VOLUME_DEFAULT_OWNER_UID)
|
|
|
|
# default_disk_owner_gid = int(app_settings.INSTANCE_VOLUME_DEFAULT_OWNER_GID)
|
|
|
|
|
|
|
|
# clone_instance_auto_name = app_settings.CLONE_INSTANCE_AUTO_NAME
|
|
|
|
|
|
|
|
# try:
|
|
|
|
# instance = Instance.objects.get(compute=compute, name=vname)
|
|
|
|
# if instance.uuid != uuid:
|
|
|
|
# instance.uuid = uuid
|
|
|
|
# instance.save()
|
|
|
|
# msg = _(f"Fixing UUID {uuid}")
|
2021-05-31 08:39:09 +00:00
|
|
|
# addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-07-13 09:33:09 +00:00
|
|
|
# except Instance.DoesNotExist:
|
|
|
|
# instance = Instance(compute=compute, name=vname, uuid=uuid)
|
|
|
|
# instance.save()
|
|
|
|
# msg = _("Instance does not exist: Creating new instance")
|
2021-05-31 08:39:09 +00:00
|
|
|
# addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
# userinstances = UserInstance.objects.filter(instance=instance).order_by('user__username')
|
2020-11-05 09:34:31 +00:00
|
|
|
userinstances = instance.userinstance_set.order_by("user__username")
|
2022-11-02 05:54:35 +00:00
|
|
|
allow_admin_or_not_template = (
|
|
|
|
request.user.is_superuser or request.user.is_staff or not instance.is_template
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
# Host resources
|
|
|
|
vcpu_host = len(instance.vcpu_range)
|
|
|
|
memory_host = instance.proxy.get_max_memory()
|
|
|
|
bus_host = instance.proxy.get_disk_bus_types(instance.arch, instance.machine)
|
|
|
|
networks_host = sorted(instance.proxy.get_networks())
|
2021-02-12 13:06:12 +00:00
|
|
|
interfaces_host = sorted(instance.proxy.get_ifaces())
|
2020-07-13 09:33:09 +00:00
|
|
|
nwfilters_host = instance.proxy.get_nwfilters()
|
|
|
|
storages_host = sorted(instance.proxy.get_storages(True))
|
|
|
|
net_models_host = instance.proxy.get_network_models()
|
2019-02-14 13:49:12 +00:00
|
|
|
|
2022-11-02 05:54:35 +00:00
|
|
|
if app_settings.VM_DRBD_STATUS == "True":
|
2022-06-29 13:08:07 +00:00
|
|
|
instance.drbd = drbd_status(request, pk)
|
|
|
|
instance.save()
|
2022-06-15 11:51:56 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return render(request, "instance.html", locals())
|
2018-08-28 10:18:35 +00:00
|
|
|
|
2019-12-19 10:49:41 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def status(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2020-11-05 09:34:31 +00:00
|
|
|
return JsonResponse({"status": instance.proxy.get_status()})
|
2019-12-19 10:49:41 +00:00
|
|
|
|
2022-11-02 05:54:35 +00:00
|
|
|
|
2022-06-15 11:51:56 +00:00
|
|
|
def drbd_status(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
result = "None DRBD"
|
|
|
|
|
|
|
|
if instance.compute.type == 2:
|
|
|
|
conn = instance.compute.login + "@" + instance.compute.hostname
|
2022-11-02 05:54:35 +00:00
|
|
|
remoteDrbdStatus = subprocess.run(
|
2022-11-02 12:59:19 +00:00
|
|
|
["ssh", conn, "sudo", "/usr/sbin/drbdadm", "status", "&&", "exit"],
|
2022-11-02 05:54:35 +00:00
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
text=True,
|
|
|
|
)
|
2022-06-15 11:51:56 +00:00
|
|
|
|
|
|
|
if remoteDrbdStatus.stdout:
|
|
|
|
try:
|
2022-11-02 05:54:35 +00:00
|
|
|
instanceFindDrbd = re.compile(
|
|
|
|
instance.name + "[_]*[A-Z]* role:(.+?)\n disk:(.+?)\n",
|
|
|
|
re.IGNORECASE,
|
|
|
|
)
|
2022-06-15 11:51:56 +00:00
|
|
|
instanceDrbd = instanceFindDrbd.findall(remoteDrbdStatus.stdout)
|
|
|
|
|
|
|
|
primaryCount = 0
|
|
|
|
secondaryCount = 0
|
|
|
|
statusDisk = "OK"
|
|
|
|
|
|
|
|
for disk in instanceDrbd:
|
|
|
|
if disk[0] == "Primary":
|
|
|
|
primaryCount = primaryCount + 1
|
|
|
|
elif disk[0] == "Secondary":
|
|
|
|
secondaryCount = secondaryCount + 1
|
|
|
|
if disk[1] != "UpToDate":
|
|
|
|
statusDisk = "NOK"
|
|
|
|
|
|
|
|
if primaryCount > 0 and secondaryCount > 0:
|
|
|
|
statusRole = "NOK"
|
|
|
|
else:
|
|
|
|
if primaryCount > secondaryCount:
|
|
|
|
statusRole = "Primary"
|
|
|
|
else:
|
|
|
|
statusRole = "Secondary"
|
|
|
|
|
|
|
|
result = statusRole + "/" + statusDisk
|
|
|
|
|
|
|
|
except:
|
|
|
|
print("Error to get drbd role and status")
|
|
|
|
|
|
|
|
return result
|
2019-12-19 10:49:41 +00:00
|
|
|
|
2022-11-02 05:54:35 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def stats(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
json_blk = []
|
|
|
|
json_net = []
|
2018-09-20 11:48:32 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
# TODO: stats are inaccurate
|
|
|
|
cpu_usage = instance.proxy.cpu_usage()
|
|
|
|
mem_usage = instance.proxy.mem_usage()
|
|
|
|
blk_usage = instance.proxy.disk_usage()
|
|
|
|
net_usage = instance.proxy.net_usage()
|
2015-03-12 14:15:36 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
current_time = time.strftime("%H:%M:%S")
|
|
|
|
for blk in blk_usage:
|
2022-11-02 05:54:35 +00:00
|
|
|
json_blk.append(
|
|
|
|
{
|
|
|
|
"dev": blk["dev"],
|
|
|
|
"data": [int(blk["rd"]) / 1048576, int(blk["wr"]) / 1048576],
|
|
|
|
}
|
|
|
|
)
|
2015-03-12 14:15:36 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
for net in net_usage:
|
2022-11-02 05:54:35 +00:00
|
|
|
json_net.append(
|
|
|
|
{
|
|
|
|
"dev": net["dev"],
|
|
|
|
"data": [int(net["rx"]) / 1048576, int(net["tx"]) / 1048576],
|
|
|
|
}
|
|
|
|
)
|
2016-04-28 10:50:11 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return JsonResponse(
|
|
|
|
{
|
|
|
|
"cpudata": int(cpu_usage["cpu"]),
|
|
|
|
"memdata": mem_usage,
|
|
|
|
"blkdata": json_blk,
|
|
|
|
"netdata": json_net,
|
|
|
|
"timeline": current_time,
|
|
|
|
}
|
|
|
|
)
|
2019-09-10 13:05:23 +00:00
|
|
|
|
2022-11-02 05:54:35 +00:00
|
|
|
|
2020-12-17 11:29:07 +00:00
|
|
|
def osinfo(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
results = instance.proxy.osinfo()
|
2022-11-02 05:54:35 +00:00
|
|
|
|
2020-12-17 11:29:07 +00:00
|
|
|
return JsonResponse(results)
|
2019-12-24 06:23:49 +00:00
|
|
|
|
2022-11-02 05:54:35 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def guess_mac_address(request, vname):
|
2020-11-05 09:34:31 +00:00
|
|
|
data = {"vname": vname}
|
2020-07-13 09:33:09 +00:00
|
|
|
mac = utils.get_dhcp_mac_address(vname)
|
|
|
|
if not mac:
|
|
|
|
mac = utils.get_random_mac_address()
|
2020-11-05 09:34:31 +00:00
|
|
|
data["mac"] = mac
|
2020-07-13 09:33:09 +00:00
|
|
|
return HttpResponse(json.dumps(data))
|
2015-03-13 12:06:51 +00:00
|
|
|
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def random_mac_address(request):
|
|
|
|
data = dict()
|
2020-11-05 09:34:31 +00:00
|
|
|
data["mac"] = utils.get_random_mac_address()
|
2020-07-13 09:33:09 +00:00
|
|
|
return HttpResponse(json.dumps(data))
|
2015-03-13 12:06:51 +00:00
|
|
|
|
2015-05-20 13:44:30 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def guess_clone_name(request):
|
2020-11-05 09:34:31 +00:00
|
|
|
dhcp_file = "/srv/webvirtcloud/dhcpd.conf"
|
2020-07-13 09:33:09 +00:00
|
|
|
prefix = app_settings.CLONE_INSTANCE_DEFAULT_PREFIX
|
|
|
|
if os.path.isfile(dhcp_file):
|
2022-11-02 05:54:35 +00:00
|
|
|
instance_names = [
|
|
|
|
i.name for i in Instance.objects.filter(name__startswith=prefix)
|
|
|
|
]
|
2020-11-05 09:34:31 +00:00
|
|
|
with open(dhcp_file, "r") as f:
|
2020-07-13 09:33:09 +00:00
|
|
|
for line in f:
|
|
|
|
line = line.strip()
|
|
|
|
if f"host {prefix}" in line:
|
2020-11-05 09:34:31 +00:00
|
|
|
fqdn = line.split(" ")[1]
|
|
|
|
hostname = fqdn.split(".")[0]
|
2020-07-13 09:33:09 +00:00
|
|
|
if hostname.startswith(prefix) and hostname not in instance_names:
|
2020-11-05 09:34:31 +00:00
|
|
|
return HttpResponse(json.dumps({"name": hostname}))
|
2020-07-13 09:33:09 +00:00
|
|
|
return HttpResponse(json.dumps({}))
|
2015-05-27 13:23:49 +00:00
|
|
|
|
2018-10-19 13:14:33 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def check_instance(request, vname):
|
|
|
|
instance = Instance.objects.filter(name=vname)
|
2020-11-05 09:34:31 +00:00
|
|
|
data = {"vname": vname, "exists": False}
|
2020-07-13 09:33:09 +00:00
|
|
|
if instance:
|
2020-11-05 09:34:31 +00:00
|
|
|
data["exists"] = True
|
2020-10-15 05:58:42 +00:00
|
|
|
return JsonResponse(data)
|
2018-10-24 09:04:05 +00:00
|
|
|
|
|
|
|
|
2020-10-15 05:58:42 +00:00
|
|
|
def sshkeys(request, pk):
|
2020-07-13 09:33:09 +00:00
|
|
|
"""
|
|
|
|
:param request:
|
|
|
|
:param vname:
|
|
|
|
:return:
|
|
|
|
"""
|
2020-10-15 05:58:42 +00:00
|
|
|
instance = get_instance(request.user, pk)
|
2020-07-13 09:33:09 +00:00
|
|
|
instance_keys = []
|
2020-10-15 05:58:42 +00:00
|
|
|
userinstances = UserInstance.objects.filter(instance=instance)
|
2020-01-08 08:28:46 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
for ui in userinstances:
|
|
|
|
keys = UserSSHKey.objects.filter(user=ui.user)
|
|
|
|
for k in keys:
|
|
|
|
instance_keys.append(k.keypublic)
|
2020-11-05 09:34:31 +00:00
|
|
|
if request.GET.get("plain", ""):
|
|
|
|
response = "\n".join(instance_keys)
|
|
|
|
response += "\n"
|
2020-07-13 09:33:09 +00:00
|
|
|
else:
|
|
|
|
response = json.dumps(instance_keys)
|
|
|
|
return HttpResponse(response)
|
2020-01-08 08:28:46 +00:00
|
|
|
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def get_instance(user, pk):
|
2020-11-05 09:34:31 +00:00
|
|
|
"""
|
2020-07-13 09:33:09 +00:00
|
|
|
Check that instance is available for user, if not raise 404
|
2020-11-05 09:34:31 +00:00
|
|
|
"""
|
2020-10-15 05:58:42 +00:00
|
|
|
instance = get_object_or_404(Instance, pk=pk)
|
2020-11-05 09:34:31 +00:00
|
|
|
user_instances = user.userinstance_set.all().values_list("instance", flat=True)
|
2018-10-19 13:14:33 +00:00
|
|
|
|
2022-11-02 05:54:35 +00:00
|
|
|
if (
|
|
|
|
user.is_superuser
|
|
|
|
or user.has_perm("instances.view_instances")
|
|
|
|
or instance.id in user_instances
|
|
|
|
):
|
2020-07-13 09:33:09 +00:00
|
|
|
return instance
|
|
|
|
else:
|
|
|
|
raise Http404()
|
2018-10-19 13:14:33 +00:00
|
|
|
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def poweron(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
if instance.is_template:
|
|
|
|
messages.warning(request, _("Templates cannot be started."))
|
|
|
|
else:
|
|
|
|
instance.proxy.start()
|
2022-11-02 05:54:35 +00:00
|
|
|
addlogmsg(
|
|
|
|
request.user.username, instance.compute.name, instance.name, _("Power On")
|
|
|
|
)
|
2017-07-19 13:34:03 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER"))
|
2018-11-23 12:18:32 +00:00
|
|
|
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def powercycle(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
instance.proxy.force_shutdown()
|
|
|
|
instance.proxy.start()
|
2022-11-02 05:54:35 +00:00
|
|
|
addlogmsg(
|
|
|
|
request.user.username, instance.compute.name, instance.name, _("Power Cycle")
|
|
|
|
)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER"))
|
2015-03-13 12:06:51 +00:00
|
|
|
|
2015-03-24 07:22:30 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def poweroff(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
instance.proxy.shutdown()
|
2022-11-02 05:54:35 +00:00
|
|
|
addlogmsg(
|
|
|
|
request.user.username, instance.compute.name, instance.name, _("Power Off")
|
|
|
|
)
|
2015-03-13 12:06:51 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER"))
|
2015-03-13 12:06:51 +00:00
|
|
|
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
@superuser_only
|
|
|
|
def suspend(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
instance.proxy.suspend()
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, _("Suspend"))
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER"))
|
2015-03-18 13:48:29 +00:00
|
|
|
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
@superuser_only
|
|
|
|
def resume(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
instance.proxy.resume()
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, _("Resume"))
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER"))
|
2019-11-29 11:48:24 +00:00
|
|
|
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def force_off(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
instance.proxy.force_shutdown()
|
2022-11-02 05:54:35 +00:00
|
|
|
addlogmsg(
|
|
|
|
request.user.username, instance.compute.name, instance.name, _("Force Off")
|
|
|
|
)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER"))
|
2015-03-18 13:48:29 +00:00
|
|
|
|
2019-01-15 12:55:05 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def destroy(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
try:
|
|
|
|
userinstance = instance.userinstance_set.get(user=request.user)
|
2020-11-05 09:34:31 +00:00
|
|
|
except Exception:
|
2020-07-13 09:33:09 +00:00
|
|
|
userinstance = UserInstance(is_delete=request.user.is_superuser)
|
|
|
|
|
2022-08-22 12:12:33 +00:00
|
|
|
if request.method in ["POST", "DELETE"] and userinstance.is_delete:
|
2020-07-13 09:33:09 +00:00
|
|
|
if instance.proxy.get_status() == 1:
|
|
|
|
instance.proxy.force_shutdown()
|
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
if request.POST.get("delete_disk", ""):
|
2022-11-02 05:54:35 +00:00
|
|
|
snapshots = sorted(
|
|
|
|
instance.proxy.get_snapshot(), reverse=True, key=lambda k: k["date"]
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
for snapshot in snapshots:
|
2020-11-05 09:34:31 +00:00
|
|
|
instance.proxy.snapshot_delete(snapshot["name"])
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.proxy.delete_all_disks()
|
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
if request.POST.get("delete_nvram", ""):
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.proxy.delete(VIR_DOMAIN_UNDEFINE_NVRAM)
|
|
|
|
else:
|
|
|
|
instance.proxy.delete(VIR_DOMAIN_UNDEFINE_KEEP_NVRAM)
|
2019-01-15 12:55:05 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.delete()
|
2022-11-02 05:54:35 +00:00
|
|
|
addlogmsg(
|
|
|
|
request.user.username, instance.compute.name, instance.name, _("Destroy")
|
|
|
|
)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(reverse("instances:index"))
|
2015-03-18 13:48:29 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
return render(
|
|
|
|
request,
|
2020-11-05 09:34:31 +00:00
|
|
|
"instances/destroy_instance_form.html",
|
2020-07-13 09:33:09 +00:00
|
|
|
{
|
2020-11-05 09:34:31 +00:00
|
|
|
"instance": instance,
|
|
|
|
"userinstance": userinstance,
|
2020-07-13 09:33:09 +00:00
|
|
|
},
|
|
|
|
)
|
2018-09-28 10:33:21 +00:00
|
|
|
|
2015-03-18 13:48:29 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
@superuser_only
|
|
|
|
def migrate(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2019-12-24 14:19:11 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
compute_id = request.POST.get("compute_id", "")
|
|
|
|
live = request.POST.get("live_migrate", False)
|
|
|
|
unsafe = request.POST.get("unsafe_migrate", False)
|
|
|
|
xml_del = request.POST.get("xml_delete", False)
|
|
|
|
offline = request.POST.get("offline_migrate", False)
|
|
|
|
autoconverge = request.POST.get("autoconverge", False)
|
|
|
|
compress = request.POST.get("compress", False)
|
|
|
|
postcopy = request.POST.get("postcopy", False)
|
2019-12-24 14:19:11 +00:00
|
|
|
|
2021-12-22 08:27:32 +00:00
|
|
|
current_host = instance.compute.hostname
|
|
|
|
target_host = Compute.objects.get(id=compute_id)
|
2019-11-20 13:24:01 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
try:
|
2022-11-02 05:54:35 +00:00
|
|
|
utils.migrate_instance(
|
|
|
|
target_host,
|
|
|
|
instance,
|
|
|
|
request.user,
|
|
|
|
live,
|
|
|
|
unsafe,
|
|
|
|
xml_del,
|
|
|
|
offline,
|
|
|
|
autoconverge,
|
|
|
|
compress,
|
|
|
|
postcopy,
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
except libvirtError as err:
|
|
|
|
messages.error(request, err)
|
2019-12-19 13:06:51 +00:00
|
|
|
|
2021-12-22 08:27:32 +00:00
|
|
|
migration_method = "live" if live is True else "offline"
|
2022-11-02 05:54:35 +00:00
|
|
|
msg = _("Instance is migrated(%(method)s) to %(hostname)s") % {
|
|
|
|
"hostname": target_host.hostname,
|
|
|
|
"method": migration_method,
|
|
|
|
}
|
2021-12-22 08:27:32 +00:00
|
|
|
addlogmsg(request.user.username, current_host, instance.name, msg)
|
2020-07-13 09:33:09 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER"))
|
2018-09-20 11:48:32 +00:00
|
|
|
|
2016-01-14 15:59:50 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def set_root_pass(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2018-08-28 08:55:27 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
if request.method == "POST":
|
|
|
|
passwd = request.POST.get("passwd", None)
|
2020-07-13 09:33:09 +00:00
|
|
|
if passwd:
|
2020-11-05 09:34:31 +00:00
|
|
|
passwd_hash = crypt.crypt(passwd, "$6$kgPoiREy")
|
|
|
|
data = {"action": "password", "passwd": passwd_hash, "vname": instance.name}
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
if instance.proxy.get_status() == 5:
|
|
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
|
|
s.connect((instance.compute.hostname, 16510))
|
|
|
|
s.send(bytes(json.dumps(data).encode()))
|
|
|
|
d = s.recv(1024).strip()
|
|
|
|
result = json.loads(d)
|
|
|
|
s.close()
|
2020-11-05 09:34:31 +00:00
|
|
|
if result["return"] == "success":
|
2020-07-13 09:33:09 +00:00
|
|
|
msg = _("Reset root password")
|
2022-11-02 05:54:35 +00:00
|
|
|
addlogmsg(
|
|
|
|
request.user.username, instance.compute.name, instance.name, msg
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
messages.success(request, msg)
|
|
|
|
else:
|
2020-11-05 09:34:31 +00:00
|
|
|
messages.error(request, result["message"])
|
2020-07-13 09:33:09 +00:00
|
|
|
else:
|
|
|
|
msg = _("Please shutdown down your instance and then try again")
|
2020-08-14 13:17:10 +00:00
|
|
|
messages.error(request, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(reverse("instances:instance", args=[instance.id]) + "#access")
|
2018-09-26 14:20:46 +00:00
|
|
|
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def add_public_key(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2020-11-05 09:34:31 +00:00
|
|
|
if request.method == "POST":
|
|
|
|
sshkeyid = request.POST.get("sshkeyid", "")
|
2020-07-13 09:33:09 +00:00
|
|
|
publickey = UserSSHKey.objects.get(id=sshkeyid)
|
2022-11-02 05:54:35 +00:00
|
|
|
data = {
|
|
|
|
"action": "publickey",
|
|
|
|
"key": publickey.keypublic,
|
|
|
|
"vname": instance.name,
|
|
|
|
}
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
if instance.proxy.get_status() == 5:
|
|
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
|
|
s.connect((instance.compute.hostname, 16510))
|
2020-10-07 12:04:43 +00:00
|
|
|
s.send(json.dumps(data).encode())
|
2020-07-13 09:33:09 +00:00
|
|
|
result = json.loads(s.recv(1024))
|
|
|
|
s.close()
|
2020-11-05 09:34:31 +00:00
|
|
|
if result["return"] == "error":
|
|
|
|
msg = result["message"]
|
2020-10-07 12:04:43 +00:00
|
|
|
else:
|
2022-11-02 05:54:35 +00:00
|
|
|
msg = _("Installed new SSH public key %(keyname)s") % {
|
|
|
|
"keyname": publickey.keyname
|
|
|
|
}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2019-12-24 11:54:04 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
if result["return"] == "success":
|
2020-07-13 09:33:09 +00:00
|
|
|
messages.success(request, msg)
|
|
|
|
else:
|
2020-08-14 13:17:10 +00:00
|
|
|
messages.error(request, msg)
|
2020-07-13 09:33:09 +00:00
|
|
|
else:
|
|
|
|
msg = _("Please shutdown down your instance and then try again")
|
2020-08-14 13:17:10 +00:00
|
|
|
messages.error(request, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(reverse("instances:instance", args=[instance.id]) + "#access")
|
2019-11-20 05:37:59 +00:00
|
|
|
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def resizevm_cpu(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
try:
|
|
|
|
userinstance = instance.userinstance_set.get(user=request.user)
|
2020-11-05 09:34:31 +00:00
|
|
|
except Exception:
|
2020-07-13 09:33:09 +00:00
|
|
|
userinstance = UserInstance(is_change=False)
|
|
|
|
vcpu = instance.proxy.get_vcpu()
|
2020-11-05 09:34:31 +00:00
|
|
|
if request.method == "POST":
|
2020-07-13 09:33:09 +00:00
|
|
|
if request.user.is_superuser or request.user.is_staff or userinstance.is_change:
|
2020-11-05 09:34:31 +00:00
|
|
|
new_vcpu = request.POST.get("vcpu", "")
|
|
|
|
new_cur_vcpu = request.POST.get("cur_vcpu", "")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
2022-11-02 05:54:35 +00:00
|
|
|
quota_msg = utils.check_user_quota(
|
|
|
|
request.user, 0, int(new_vcpu) - vcpu, 0, 0
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
if not request.user.is_superuser and quota_msg:
|
2022-11-02 05:54:35 +00:00
|
|
|
msg = _(
|
|
|
|
"User %(quota_msg)s quota reached, cannot resize CPU of '%(instance_name)s'!"
|
|
|
|
) % {
|
2020-11-05 09:34:31 +00:00
|
|
|
"quota_msg": quota_msg,
|
|
|
|
"instance_name": instance.name,
|
2020-10-07 06:08:48 +00:00
|
|
|
}
|
2020-08-14 13:17:10 +00:00
|
|
|
messages.error(request, msg)
|
2020-07-13 09:33:09 +00:00
|
|
|
else:
|
|
|
|
cur_vcpu = new_cur_vcpu
|
|
|
|
vcpu = new_vcpu
|
|
|
|
instance.proxy.resize_cpu(cur_vcpu, vcpu)
|
2022-11-02 05:54:35 +00:00
|
|
|
msg = _("CPU is resized: %(old)s to %(new)s") % {
|
|
|
|
"old": cur_vcpu,
|
|
|
|
"new": vcpu,
|
|
|
|
}
|
|
|
|
addlogmsg(
|
|
|
|
request.user.username, instance.compute.name, instance.name, msg
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
messages.success(request, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(reverse("instances:instance", args=[instance.id]) + "#resize")
|
2018-09-28 10:33:21 +00:00
|
|
|
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def resize_memory(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
try:
|
|
|
|
userinstance = instance.userinstance_set.get(user=request.user)
|
2020-11-05 09:34:31 +00:00
|
|
|
except Exception:
|
2020-07-13 09:33:09 +00:00
|
|
|
userinstance = UserInstance(is_change=False)
|
2015-03-12 14:15:36 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
memory = instance.proxy.get_memory()
|
|
|
|
cur_memory = instance.proxy.get_cur_memory()
|
2015-03-12 14:15:36 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
if request.method == "POST":
|
2020-07-13 09:33:09 +00:00
|
|
|
if request.user.is_superuser or request.user.is_staff or userinstance.is_change:
|
2020-11-05 09:34:31 +00:00
|
|
|
new_memory = request.POST.get("memory", "")
|
|
|
|
new_memory_custom = request.POST.get("memory_custom", "")
|
2020-07-13 09:33:09 +00:00
|
|
|
if new_memory_custom:
|
|
|
|
new_memory = new_memory_custom
|
2020-11-05 09:34:31 +00:00
|
|
|
new_cur_memory = request.POST.get("cur_memory", "")
|
|
|
|
new_cur_memory_custom = request.POST.get("cur_memory_custom", "")
|
2020-07-13 09:33:09 +00:00
|
|
|
if new_cur_memory_custom:
|
|
|
|
new_cur_memory = new_cur_memory_custom
|
2022-11-02 05:54:35 +00:00
|
|
|
quota_msg = utils.check_user_quota(
|
|
|
|
request.user, 0, 0, int(new_memory) - memory, 0
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
if not request.user.is_superuser and quota_msg:
|
2022-11-02 05:54:35 +00:00
|
|
|
msg = _(
|
|
|
|
"User %(quota_msg)s quota reached, cannot resize memory of '%(instance_name)s'!"
|
|
|
|
) % {
|
2020-11-05 09:34:31 +00:00
|
|
|
"quota_msg": quota_msg,
|
|
|
|
"instance_name": instance.name,
|
2020-10-07 06:08:48 +00:00
|
|
|
}
|
2020-08-14 13:17:10 +00:00
|
|
|
messages.error(request, msg)
|
2020-07-13 09:33:09 +00:00
|
|
|
else:
|
2020-11-05 09:34:31 +00:00
|
|
|
instance.proxy.resize_mem(new_cur_memory, new_memory)
|
2022-11-02 05:54:35 +00:00
|
|
|
msg = _(
|
|
|
|
"Memory is resized: current/max: %(old_cur)s/%(old_max)s to %(new_cur)s/%(new_max)s"
|
|
|
|
) % {
|
2020-11-05 09:34:31 +00:00
|
|
|
"old_cur": cur_memory,
|
|
|
|
"old_max": memory,
|
|
|
|
"new_cur": new_cur_memory,
|
|
|
|
"new_max": new_memory,
|
|
|
|
}
|
2022-11-02 05:54:35 +00:00
|
|
|
addlogmsg(
|
|
|
|
request.user.username, instance.compute.name, instance.name, msg
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
messages.success(request, msg)
|
2015-03-20 10:06:32 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(reverse("instances:instance", args=[instance.id]) + "#resize")
|
2015-03-20 10:06:32 +00:00
|
|
|
|
2015-03-23 12:28:24 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def resize_disk(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2015-03-23 12:28:24 +00:00
|
|
|
|
|
|
|
try:
|
2020-07-13 09:33:09 +00:00
|
|
|
userinstance = instance.userinstance_set.get(user=request.user)
|
2020-11-05 09:34:31 +00:00
|
|
|
except Exception:
|
2020-07-13 09:33:09 +00:00
|
|
|
userinstance = UserInstance(is_change=False)
|
2015-03-23 12:28:24 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
disks = instance.proxy.get_disk_devices()
|
2015-03-23 12:28:24 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
if request.method == "POST":
|
2020-07-13 09:33:09 +00:00
|
|
|
if request.user.is_superuser or request.user.is_staff or userinstance.is_change:
|
|
|
|
disks_new = list()
|
|
|
|
for disk in disks:
|
2022-11-02 05:54:35 +00:00
|
|
|
input_disk_size = (
|
|
|
|
int(request.POST.get("disk_size_" + disk["dev"], "0")) * 1073741824
|
|
|
|
)
|
2020-11-05 09:34:31 +00:00
|
|
|
if input_disk_size > disk["size"] + (64 << 20):
|
|
|
|
disk["size_new"] = input_disk_size
|
2020-07-13 09:33:09 +00:00
|
|
|
disks_new.append(disk)
|
2020-11-05 09:34:31 +00:00
|
|
|
disk_sum = sum([disk["size"] >> 30 for disk in disks_new])
|
|
|
|
disk_new_sum = sum([disk["size_new"] >> 30 for disk in disks_new])
|
2022-11-02 05:54:35 +00:00
|
|
|
quota_msg = utils.check_user_quota(
|
|
|
|
request.user, 0, 0, 0, disk_new_sum - disk_sum
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
if not request.user.is_superuser and quota_msg:
|
2022-11-02 05:54:35 +00:00
|
|
|
msg = _(
|
|
|
|
"User %(quota_msg)s quota reached, cannot resize disks of '%(instance_name)s'!"
|
|
|
|
) % {
|
2020-11-05 09:34:31 +00:00
|
|
|
"quota_msg": quota_msg,
|
|
|
|
"instance_name": instance.name,
|
2020-10-07 06:08:48 +00:00
|
|
|
}
|
2020-08-14 13:17:10 +00:00
|
|
|
messages.error(request, msg)
|
2018-09-28 10:33:21 +00:00
|
|
|
else:
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.proxy.resize_disk(disks_new)
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("Disk is resized: %(dev)s") % {"dev": disk["dev"]}
|
2022-11-02 05:54:35 +00:00
|
|
|
addlogmsg(
|
|
|
|
request.user.username, instance.compute.name, instance.name, msg
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
messages.success(request, msg)
|
2018-09-28 10:33:21 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(reverse("instances:instance", args=[instance.id]) + "#resize")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
def add_new_vol(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2022-11-02 05:54:35 +00:00
|
|
|
allow_admin_or_not_template = (
|
|
|
|
request.user.is_superuser or request.user.is_staff or not instance.is_template
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
if allow_admin_or_not_template:
|
|
|
|
media = instance.proxy.get_media_devices()
|
|
|
|
disks = instance.proxy.get_disk_devices()
|
|
|
|
conn_create = wvmCreate(
|
|
|
|
instance.compute.hostname,
|
|
|
|
instance.compute.login,
|
|
|
|
instance.compute.password,
|
|
|
|
instance.compute.type,
|
|
|
|
)
|
2020-11-05 09:34:31 +00:00
|
|
|
storage = request.POST.get("storage", "")
|
|
|
|
name = request.POST.get("name", "")
|
|
|
|
format = request.POST.get("format", app_settings.INSTANCE_VOLUME_DEFAULT_FORMAT)
|
|
|
|
size = request.POST.get("size", 0)
|
|
|
|
meta_prealloc = True if request.POST.get("meta_prealloc", False) else False
|
|
|
|
bus = request.POST.get("bus", app_settings.INSTANCE_VOLUME_DEFAULT_BUS)
|
|
|
|
cache = request.POST.get("cache", app_settings.INSTANCE_VOLUME_DEFAULT_CACHE)
|
2020-07-13 09:33:09 +00:00
|
|
|
target_dev = utils.get_new_disk_dev(media, disks, bus)
|
|
|
|
|
|
|
|
source = conn_create.create_volume(
|
|
|
|
storage,
|
|
|
|
name,
|
|
|
|
size,
|
|
|
|
format,
|
|
|
|
meta_prealloc,
|
|
|
|
int(app_settings.INSTANCE_VOLUME_DEFAULT_OWNER_UID),
|
|
|
|
int(app_settings.INSTANCE_VOLUME_DEFAULT_OWNER_GID),
|
|
|
|
)
|
2021-12-16 08:03:03 +00:00
|
|
|
|
|
|
|
conn_pool = wvmStorage(
|
|
|
|
instance.compute.hostname,
|
|
|
|
instance.compute.login,
|
|
|
|
instance.compute.password,
|
|
|
|
instance.compute.type,
|
|
|
|
storage,
|
|
|
|
)
|
|
|
|
|
|
|
|
pool_type = conn_pool.get_type()
|
|
|
|
disk_type = conn_pool.get_volume_type(os.path.basename(source))
|
|
|
|
|
2022-11-02 05:54:35 +00:00
|
|
|
if pool_type == "rbd":
|
2021-12-16 08:03:03 +00:00
|
|
|
source_info = conn_pool.get_rbd_source()
|
2022-11-02 05:54:35 +00:00
|
|
|
else: # add more disk types to handle different pool and disk types
|
2021-12-16 08:03:03 +00:00
|
|
|
source_info = None
|
|
|
|
|
2022-11-02 05:54:35 +00:00
|
|
|
instance.proxy.attach_disk(
|
|
|
|
target_dev,
|
|
|
|
source,
|
|
|
|
source_info=source_info,
|
|
|
|
pool_type=pool_type,
|
|
|
|
disk_type=disk_type,
|
|
|
|
target_bus=bus,
|
|
|
|
format_type=format,
|
|
|
|
cache_mode=cache,
|
|
|
|
)
|
|
|
|
msg = _("Attach new disk: %(name)s (%(format)s)") % {
|
|
|
|
"name": name,
|
|
|
|
"format": format,
|
|
|
|
}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#disks")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
def add_existing_vol(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2022-11-02 05:54:35 +00:00
|
|
|
allow_admin_or_not_template = (
|
|
|
|
request.user.is_superuser or request.user.is_staff or not instance.is_template
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
if allow_admin_or_not_template:
|
2020-11-05 09:34:31 +00:00
|
|
|
storage = request.POST.get("selected_storage", "")
|
|
|
|
name = request.POST.get("vols", "")
|
|
|
|
bus = request.POST.get("bus", app_settings.INSTANCE_VOLUME_DEFAULT_BUS)
|
|
|
|
cache = request.POST.get("cache", app_settings.INSTANCE_VOLUME_DEFAULT_CACHE)
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
media = instance.proxy.get_media_devices()
|
|
|
|
disks = instance.proxy.get_disk_devices()
|
|
|
|
|
|
|
|
conn_create = wvmStorage(
|
|
|
|
instance.compute.hostname,
|
|
|
|
instance.compute.login,
|
|
|
|
instance.compute.password,
|
|
|
|
instance.compute.type,
|
|
|
|
storage,
|
|
|
|
)
|
|
|
|
|
2021-12-16 08:03:03 +00:00
|
|
|
format_type = conn_create.get_volume_format_type(name)
|
|
|
|
disk_type = conn_create.get_volume_type(name)
|
|
|
|
pool_type = conn_create.get_type()
|
2022-11-02 05:54:35 +00:00
|
|
|
if pool_type == "rbd":
|
2021-12-16 08:03:03 +00:00
|
|
|
source_info = conn_create.get_rbd_source()
|
|
|
|
path = conn_create.get_source_name()
|
|
|
|
else:
|
|
|
|
source_info = None
|
|
|
|
path = conn_create.get_target_path()
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
target_dev = utils.get_new_disk_dev(media, disks, bus)
|
|
|
|
source = f"{path}/{name}"
|
|
|
|
|
2022-11-02 05:54:35 +00:00
|
|
|
instance.proxy.attach_disk(
|
|
|
|
target_dev,
|
|
|
|
source,
|
|
|
|
source_info=source_info,
|
|
|
|
pool_type=pool_type,
|
|
|
|
disk_type=disk_type,
|
|
|
|
target_bus=bus,
|
|
|
|
format_type=format_type,
|
|
|
|
cache_mode=cache,
|
|
|
|
)
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("Attach Existing disk: %(target_dev)s") % {"target_dev": target_dev}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#disks")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
def edit_volume(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2022-11-02 05:54:35 +00:00
|
|
|
allow_admin_or_not_template = (
|
|
|
|
request.user.is_superuser or request.user.is_staff or not instance.is_template
|
|
|
|
)
|
2020-11-05 09:34:31 +00:00
|
|
|
if "edit_volume" in request.POST and allow_admin_or_not_template:
|
|
|
|
target_dev = request.POST.get("dev", "")
|
|
|
|
|
|
|
|
new_path = request.POST.get("vol_path", "")
|
|
|
|
shareable = bool(request.POST.get("vol_shareable", False))
|
|
|
|
readonly = bool(request.POST.get("vol_readonly", False))
|
|
|
|
disk_type = request.POST.get("vol_type", "")
|
|
|
|
bus = request.POST.get("vol_bus_old", "")
|
2021-06-10 10:46:08 +00:00
|
|
|
new_bus = request.POST.get("vol_bus", bus)
|
2020-11-05 09:34:31 +00:00
|
|
|
serial = request.POST.get("vol_serial", "")
|
|
|
|
format = request.POST.get("vol_format", "")
|
2022-11-02 05:54:35 +00:00
|
|
|
cache = request.POST.get(
|
|
|
|
"vol_cache", app_settings.INSTANCE_VOLUME_DEFAULT_CACHE
|
|
|
|
)
|
2020-11-05 09:34:31 +00:00
|
|
|
io = request.POST.get("vol_io_mode", app_settings.INSTANCE_VOLUME_DEFAULT_IO)
|
2022-11-02 05:54:35 +00:00
|
|
|
discard = request.POST.get(
|
|
|
|
"vol_discard_mode", app_settings.INSTANCE_VOLUME_DEFAULT_DISCARD
|
|
|
|
)
|
|
|
|
zeroes = request.POST.get(
|
|
|
|
"vol_detect_zeroes", app_settings.INSTANCE_VOLUME_DEFAULT_DETECT_ZEROES
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
new_target_dev = utils.get_new_disk_dev(instance.media, instance.disks, new_bus)
|
|
|
|
|
|
|
|
if new_bus != bus:
|
|
|
|
instance.proxy.detach_disk(target_dev)
|
|
|
|
instance.proxy.attach_disk(
|
|
|
|
new_target_dev,
|
|
|
|
new_path,
|
|
|
|
target_bus=new_bus,
|
|
|
|
driver_type=format,
|
|
|
|
cache_mode=cache,
|
|
|
|
readonly=readonly,
|
|
|
|
shareable=shareable,
|
|
|
|
serial=serial,
|
|
|
|
io_mode=io,
|
|
|
|
discard_mode=discard,
|
|
|
|
detect_zeroes_mode=zeroes,
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
instance.proxy.edit_disk(
|
|
|
|
target_dev,
|
|
|
|
new_path,
|
|
|
|
readonly,
|
|
|
|
shareable,
|
|
|
|
new_bus,
|
|
|
|
serial,
|
|
|
|
format,
|
|
|
|
cache,
|
|
|
|
io,
|
|
|
|
discard,
|
|
|
|
zeroes,
|
|
|
|
)
|
|
|
|
|
|
|
|
if not instance.proxy.get_status() == 5:
|
2020-11-05 09:34:31 +00:00
|
|
|
messages.success(
|
|
|
|
request,
|
2022-11-02 05:54:35 +00:00
|
|
|
_(
|
|
|
|
"Volume changes are applied. "
|
|
|
|
+ "But it will be activated after shutdown"
|
|
|
|
),
|
2020-11-05 09:34:31 +00:00
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
else:
|
|
|
|
messages.success(request, _("Volume is changed successfully."))
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("Edit disk: %(target_dev)s") % {"target_dev": target_dev}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2018-09-28 10:33:21 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#disks")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
def delete_vol(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2022-11-02 05:54:35 +00:00
|
|
|
allow_admin_or_not_template = (
|
|
|
|
request.user.is_superuser or request.user.is_staff or not instance.is_template
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
if allow_admin_or_not_template:
|
2020-11-05 09:34:31 +00:00
|
|
|
storage = request.POST.get("storage", "")
|
2020-07-13 09:33:09 +00:00
|
|
|
conn_delete = wvmStorage(
|
|
|
|
instance.compute.hostname,
|
|
|
|
instance.compute.login,
|
|
|
|
instance.compute.password,
|
|
|
|
instance.compute.type,
|
|
|
|
storage,
|
|
|
|
)
|
2020-11-05 09:34:31 +00:00
|
|
|
dev = request.POST.get("dev", "")
|
|
|
|
path = request.POST.get("path", "")
|
|
|
|
name = request.POST.get("name", "")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("Delete disk: %(dev)s") % {"dev": dev}
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.proxy.detach_disk(dev)
|
|
|
|
conn_delete.del_volume(name)
|
2018-09-28 10:33:21 +00:00
|
|
|
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#disks")
|
2019-01-17 07:38:53 +00:00
|
|
|
|
2018-09-28 10:33:21 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def detach_vol(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2022-11-02 05:54:35 +00:00
|
|
|
allow_admin_or_not_template = (
|
|
|
|
request.user.is_superuser or request.user.is_staff or not instance.is_template
|
|
|
|
)
|
2018-09-28 10:33:21 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
if allow_admin_or_not_template:
|
2020-11-05 09:34:31 +00:00
|
|
|
dev = request.POST.get("dev", "")
|
|
|
|
path = request.POST.get("path", "")
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.proxy.detach_disk(dev)
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("Detach disk: %(dev)s") % {"dev": dev}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-07-13 09:33:09 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#disks")
|
2018-09-28 10:33:21 +00:00
|
|
|
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def add_cdrom(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2022-11-02 05:54:35 +00:00
|
|
|
allow_admin_or_not_template = (
|
|
|
|
request.user.is_superuser or request.user.is_staff or not instance.is_template
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
if allow_admin_or_not_template:
|
2020-11-05 09:34:31 +00:00
|
|
|
bus = request.POST.get("bus", "ide" if instance.machine == "pc" else "sata")
|
2020-07-13 09:33:09 +00:00
|
|
|
target = utils.get_new_disk_dev(instance.media, instance.disks, bus)
|
2022-11-02 05:54:35 +00:00
|
|
|
instance.proxy.attach_disk(
|
|
|
|
target,
|
|
|
|
"",
|
|
|
|
disk_device="cdrom",
|
|
|
|
cache_mode="none",
|
|
|
|
target_bus=bus,
|
|
|
|
readonly=True,
|
|
|
|
)
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("Add CD-ROM: %(target)s") % {"target": target}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2018-09-28 10:33:21 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#disks")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
def detach_cdrom(request, pk, dev):
|
|
|
|
instance = get_instance(request.user, pk)
|
2022-11-02 05:54:35 +00:00
|
|
|
allow_admin_or_not_template = (
|
|
|
|
request.user.is_superuser or request.user.is_staff or not instance.is_template
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
if allow_admin_or_not_template:
|
|
|
|
# dev = request.POST.get('detach_cdrom', '')
|
|
|
|
instance.proxy.detach_disk(dev)
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("Detach CD-ROM: %(dev)s") % {"dev": dev}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2019-07-31 06:59:44 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#disks")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
def unmount_iso(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2022-11-02 05:54:35 +00:00
|
|
|
allow_admin_or_not_template = (
|
|
|
|
request.user.is_superuser or request.user.is_staff or not instance.is_template
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
if allow_admin_or_not_template:
|
2020-11-05 09:34:31 +00:00
|
|
|
image = request.POST.get("path", "")
|
|
|
|
dev = request.POST.get("umount_iso", "")
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.proxy.umount_iso(dev, image)
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("Mount media: %(dev)s") % {"dev": dev}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2018-09-28 10:33:21 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#disks")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
def mount_iso(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2022-11-02 05:54:35 +00:00
|
|
|
allow_admin_or_not_template = (
|
|
|
|
request.user.is_superuser or request.user.is_staff or not instance.is_template
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
if allow_admin_or_not_template:
|
2020-11-05 09:34:31 +00:00
|
|
|
image = request.POST.get("media", "")
|
|
|
|
dev = request.POST.get("mount_iso", "")
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.proxy.mount_iso(dev, image)
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("Unmount media: %(dev)s") % {"dev": dev}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2018-09-28 10:33:21 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#disks")
|
2018-09-28 10:33:21 +00:00
|
|
|
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def snapshot(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2022-11-02 05:54:35 +00:00
|
|
|
allow_admin_or_not_template = (
|
|
|
|
request.user.is_superuser or request.user.is_staff or not instance.is_template
|
|
|
|
)
|
2019-10-30 08:05:50 +00:00
|
|
|
|
2022-11-02 05:54:35 +00:00
|
|
|
if allow_admin_or_not_template and request.user.has_perm(
|
|
|
|
"instances.snapshot_instances"
|
|
|
|
):
|
2020-11-05 09:34:31 +00:00
|
|
|
name = request.POST.get("name", "")
|
2022-09-19 12:44:57 +00:00
|
|
|
desc = request.POST.get("description", "")
|
|
|
|
instance.proxy.create_snapshot(name, desc)
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("Create snapshot: %(snap)s") % {"snap": name}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#managesnapshot")
|
2019-05-21 06:12:28 +00:00
|
|
|
|
2015-03-23 12:28:24 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def delete_snapshot(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2022-11-02 05:54:35 +00:00
|
|
|
allow_admin_or_not_template = (
|
|
|
|
request.user.is_superuser or request.user.is_staff or not instance.is_template
|
|
|
|
)
|
|
|
|
if allow_admin_or_not_template and request.user.has_perm(
|
|
|
|
"instances.snapshot_instances"
|
|
|
|
):
|
2020-11-05 09:34:31 +00:00
|
|
|
snap_name = request.POST.get("name", "")
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.proxy.snapshot_delete(snap_name)
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("Delete snapshot: %(snap)s") % {"snap": snap_name}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#managesnapshot")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
def revert_snapshot(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2022-11-02 05:54:35 +00:00
|
|
|
allow_admin_or_not_template = (
|
|
|
|
request.user.is_superuser or request.user.is_staff or not instance.is_template
|
|
|
|
)
|
|
|
|
if allow_admin_or_not_template and request.user.has_perm(
|
|
|
|
"instances.snapshot_instances"
|
|
|
|
):
|
2020-11-05 09:34:31 +00:00
|
|
|
snap_name = request.POST.get("name", "")
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.proxy.snapshot_revert(snap_name)
|
|
|
|
msg = _("Successful revert snapshot: ")
|
|
|
|
msg += snap_name
|
|
|
|
messages.success(request, msg)
|
2021-01-25 13:36:24 +00:00
|
|
|
msg = _("Revert snapshot: %(snap)s") % {"snap": snap_name}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#managesnapshot")
|
2015-03-20 10:06:32 +00:00
|
|
|
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
@superuser_only
|
|
|
|
def set_vcpu(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2020-11-05 09:34:31 +00:00
|
|
|
id = request.POST.get("id", "")
|
|
|
|
enabled = request.POST.get("set_vcpu", "")
|
|
|
|
if enabled == "True":
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.proxy.set_vcpu(id, 1)
|
|
|
|
else:
|
|
|
|
instance.proxy.set_vcpu(id, 0)
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("VCPU %(id)s is enabled=%(enabled)s") % {"id": id, "enabled": enabled}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#resize")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
@superuser_only
|
|
|
|
def set_vcpu_hotplug(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2022-11-02 05:54:35 +00:00
|
|
|
status = True if request.POST.get("vcpu_hotplug", "False") == "True" else False
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("VCPU Hot-plug is enabled=%(status)s") % {"status": status}
|
2021-12-06 06:22:02 +00:00
|
|
|
instance.proxy.set_vcpu_hotplug(status)
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#resize")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
@superuser_only
|
|
|
|
def set_autostart(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
instance.proxy.set_autostart(1)
|
|
|
|
msg = _("Set autostart")
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#boot_opt")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
@superuser_only
|
|
|
|
def unset_autostart(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
instance.proxy.set_autostart(0)
|
|
|
|
msg = _("Unset autostart")
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#boot_opt")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
@superuser_only
|
|
|
|
def set_bootmenu(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
instance.proxy.set_bootmenu(1)
|
|
|
|
msg = _("Enable boot menu")
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#boot_opt")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
@superuser_only
|
|
|
|
def unset_bootmenu(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
instance.proxy.set_bootmenu(0)
|
|
|
|
msg = _("Disable boot menu")
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#boot_opt")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
@superuser_only
|
|
|
|
def set_bootorder(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2020-11-05 09:34:31 +00:00
|
|
|
bootorder = request.POST.get("bootorder", "")
|
2020-07-13 09:33:09 +00:00
|
|
|
if bootorder:
|
|
|
|
order_list = {}
|
2020-11-05 09:34:31 +00:00
|
|
|
for idx, val in enumerate(bootorder.split(",")):
|
|
|
|
dev_type, dev = val.split(":", 1)
|
2020-07-13 09:33:09 +00:00
|
|
|
order_list[idx] = {"type": dev_type, "dev": dev}
|
|
|
|
instance.proxy.set_bootorder(order_list)
|
|
|
|
msg = _("Set boot order")
|
|
|
|
|
|
|
|
if not instance.proxy.get_status() == 5:
|
2020-11-05 09:34:31 +00:00
|
|
|
messages.success(
|
|
|
|
request,
|
2022-11-02 05:54:35 +00:00
|
|
|
_(
|
|
|
|
"Boot menu changes applied. "
|
|
|
|
+ "But it will be activated after shutdown"
|
|
|
|
),
|
2020-11-05 09:34:31 +00:00
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
else:
|
|
|
|
messages.success(request, _("Boot order changed successfully."))
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#boot_opt")
|
2015-03-20 10:06:32 +00:00
|
|
|
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
@superuser_only
|
|
|
|
def change_xml(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2020-11-05 09:34:31 +00:00
|
|
|
new_xml = request.POST.get("inst_xml", "")
|
|
|
|
if new_xml:
|
|
|
|
instance.proxy._defineXML(new_xml)
|
|
|
|
msg = _("Change instance XML")
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#xmledit")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
@superuser_only
|
|
|
|
def set_guest_agent(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2020-11-05 09:34:31 +00:00
|
|
|
status = request.POST.get("guest_agent")
|
|
|
|
if status == "True":
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.proxy.add_guest_agent()
|
2020-11-05 09:34:31 +00:00
|
|
|
if status == "False":
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.proxy.remove_guest_agent()
|
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("Set Guest Agent: %(status)s") % {"status": status}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#options")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
@superuser_only
|
|
|
|
def set_video_model(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2020-11-05 09:34:31 +00:00
|
|
|
video_model = request.POST.get("video_model", "vga")
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.proxy.set_video_model(video_model)
|
2021-01-25 13:36:24 +00:00
|
|
|
msg = _("Set Video Model: %(model)s") % {"model": video_model}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#options")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
@superuser_only
|
|
|
|
def change_network(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
|
|
|
|
msg = _("Change network")
|
|
|
|
network_data = {}
|
|
|
|
|
|
|
|
for post in request.POST:
|
2020-11-05 09:34:31 +00:00
|
|
|
if post.startswith("net-source-"):
|
2020-07-13 09:33:09 +00:00
|
|
|
(source, source_type) = utils.get_network_tuple(request.POST.get(post))
|
|
|
|
network_data[post] = source
|
2020-11-05 09:34:31 +00:00
|
|
|
network_data[post + "-type"] = source_type
|
2021-02-12 13:06:12 +00:00
|
|
|
|
2022-11-02 05:54:35 +00:00
|
|
|
if source_type == "iface":
|
2021-02-12 13:06:12 +00:00
|
|
|
iface = wvmInterface(
|
|
|
|
instance.compute.hostname,
|
|
|
|
instance.compute.login,
|
|
|
|
instance.compute.password,
|
|
|
|
instance.compute.type,
|
|
|
|
source,
|
|
|
|
)
|
|
|
|
network_data[post + "-type"] = iface.get_type()
|
2020-11-05 09:34:31 +00:00
|
|
|
elif post.startswith("net-"):
|
|
|
|
network_data[post] = request.POST.get(post, "")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
instance.proxy.change_network(network_data)
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-07-13 09:33:09 +00:00
|
|
|
msg = _("Network Device Config is changed. Please shutdown instance to activate.")
|
2020-11-05 09:34:31 +00:00
|
|
|
if instance.proxy.get_status() != 5:
|
|
|
|
messages.success(request, msg)
|
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#network")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
@superuser_only
|
|
|
|
def add_network(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2020-11-05 09:34:31 +00:00
|
|
|
|
|
|
|
mac = request.POST.get("add-net-mac")
|
|
|
|
nwfilter = request.POST.get("add-net-nwfilter")
|
|
|
|
(source, source_type) = utils.get_network_tuple(request.POST.get("add-net-network"))
|
2020-07-13 09:33:09 +00:00
|
|
|
|
2022-11-02 05:54:35 +00:00
|
|
|
if source_type == "iface":
|
2021-02-12 13:06:12 +00:00
|
|
|
iface = wvmInterface(
|
2022-11-02 05:54:35 +00:00
|
|
|
instance.compute.hostname,
|
|
|
|
instance.compute.login,
|
|
|
|
instance.compute.password,
|
|
|
|
instance.compute.type,
|
|
|
|
source,
|
|
|
|
)
|
2021-02-12 13:06:12 +00:00
|
|
|
source_type = iface.get_type()
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.proxy.add_network(mac, source, source_type, nwfilter=nwfilter)
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("Add network: %(mac)s") % {"mac": mac}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#network")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
@superuser_only
|
|
|
|
def delete_network(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2020-11-05 09:34:31 +00:00
|
|
|
mac_address = request.POST.get("delete_network", "")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
instance.proxy.delete_network(mac_address)
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("Delete Network: %(mac)s") % {"mac": mac_address}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#network")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
@superuser_only
|
|
|
|
def set_link_state(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
mac_address = request.POST.get("mac", "")
|
|
|
|
state = request.POST.get("set_link_state")
|
|
|
|
state = "down" if state == "up" else "up"
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.proxy.set_link_state(mac_address, state)
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("Set Link State: %(state)s") % {"state": state}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#network")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
@superuser_only
|
|
|
|
def set_qos(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
qos_dir = request.POST.get("qos_direction", "")
|
|
|
|
average = request.POST.get("qos_average") or 0
|
|
|
|
peak = request.POST.get("qos_peak") or 0
|
|
|
|
burst = request.POST.get("qos_burst") or 0
|
2020-07-13 09:33:09 +00:00
|
|
|
keys = request.POST.keys()
|
2020-11-05 09:34:31 +00:00
|
|
|
mac_key = [key for key in keys if "mac" in key]
|
|
|
|
if mac_key:
|
|
|
|
mac = request.POST.get(mac_key[0])
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
instance.proxy.set_qos(mac, qos_dir, average, peak, burst)
|
|
|
|
if instance.proxy.get_status() == 5:
|
2022-11-02 05:54:35 +00:00
|
|
|
messages.success(
|
|
|
|
request, _("%(qos_dir)s QoS is set") % {"qos_dir": qos_dir.capitalize()}
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
else:
|
|
|
|
messages.success(
|
|
|
|
request,
|
2020-11-05 09:34:31 +00:00
|
|
|
_(
|
|
|
|
"%(qos_dir)s QoS is set. Network XML is changed. \
|
|
|
|
Stop and start network to activate new config."
|
|
|
|
)
|
|
|
|
% {"qos_dir": qos_dir.capitalize()},
|
|
|
|
)
|
2015-03-23 12:28:24 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#network")
|
2016-02-08 11:28:52 +00:00
|
|
|
|
2018-07-26 12:29:56 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
@superuser_only
|
|
|
|
def unset_qos(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2020-11-05 09:34:31 +00:00
|
|
|
qos_dir = request.POST.get("qos_direction", "")
|
|
|
|
mac = request.POST.get("net-mac")
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.proxy.unset_qos(mac, qos_dir)
|
2019-12-19 13:06:51 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
if instance.proxy.get_status() == 5:
|
2022-11-02 05:54:35 +00:00
|
|
|
messages.success(
|
|
|
|
request, _("%(qos_dir)s QoS is deleted") % {"qos_dir": qos_dir.capitalize()}
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
else:
|
|
|
|
messages.success(
|
|
|
|
request,
|
2020-11-05 09:34:31 +00:00
|
|
|
_(
|
|
|
|
"%(qos_dir)s QoS is deleted. Network XML is changed. \
|
|
|
|
Stop and start network to activate new config."
|
|
|
|
)
|
|
|
|
% {"qos_dir": qos_dir.capitalize()},
|
|
|
|
)
|
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#network")
|
2018-06-19 11:06:57 +00:00
|
|
|
|
2018-07-26 12:29:56 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
@superuser_only
|
|
|
|
def add_owner(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2020-11-05 09:34:31 +00:00
|
|
|
user_id = request.POST.get("user_id")
|
2018-07-26 09:35:37 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
check_inst = 0
|
2018-07-26 12:29:56 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
if app_settings.ALLOW_INSTANCE_MULTIPLE_OWNER == "False":
|
2020-07-13 09:33:09 +00:00
|
|
|
check_inst = UserInstance.objects.filter(instance=instance).count()
|
2018-07-26 09:35:37 +00:00
|
|
|
|
2020-10-15 05:58:42 +00:00
|
|
|
if check_inst > 0:
|
2022-11-02 05:54:35 +00:00
|
|
|
messages.error(
|
|
|
|
request, _("Only one owner is allowed and the one already added")
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
else:
|
|
|
|
add_user_inst = UserInstance(instance=instance, user_id=user_id)
|
|
|
|
add_user_inst.save()
|
|
|
|
user = User.objects.get(id=user_id)
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("Add owner: %(user)s") % {"user": user}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#users")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
@superuser_only
|
|
|
|
def del_owner(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
2020-11-05 09:34:31 +00:00
|
|
|
userinstance_id = int(request.POST.get("userinstance", ""))
|
2020-07-13 09:33:09 +00:00
|
|
|
userinstance = UserInstance.objects.get(pk=userinstance_id)
|
|
|
|
userinstance.delete()
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _("Delete owner: %(userinstance_id)s ") % {"userinstance_id": userinstance_id}
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#users")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
@permission_required("instances.clone_instances", raise_exception=True)
|
2020-07-13 09:33:09 +00:00
|
|
|
def clone(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
|
|
|
|
clone_data = dict()
|
2020-11-05 09:34:31 +00:00
|
|
|
clone_data["name"] = request.POST.get("name", "")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
disk_sum = sum([disk["size"] >> 30 for disk in instance.disks])
|
2022-11-02 05:54:35 +00:00
|
|
|
quota_msg = utils.check_user_quota(
|
|
|
|
request.user, 1, instance.vcpu, instance.memory, disk_sum
|
|
|
|
)
|
2020-11-05 09:34:31 +00:00
|
|
|
check_instance = Instance.objects.filter(name=clone_data["name"])
|
2020-07-13 09:33:09 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
clone_data["disk_owner_uid"] = int(app_settings.INSTANCE_VOLUME_DEFAULT_OWNER_UID)
|
|
|
|
clone_data["disk_owner_gid"] = int(app_settings.INSTANCE_VOLUME_DEFAULT_OWNER_GID)
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
for post in request.POST:
|
2020-11-05 09:34:31 +00:00
|
|
|
clone_data[post] = request.POST.get(post, "").strip()
|
2020-07-13 09:33:09 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
if app_settings.CLONE_INSTANCE_AUTO_NAME == "True" and not clone_data["name"]:
|
2020-07-13 09:33:09 +00:00
|
|
|
auto_vname = utils.get_clone_free_names()[0]
|
2020-11-05 09:34:31 +00:00
|
|
|
clone_data["name"] = auto_vname
|
|
|
|
clone_data["clone-net-mac-0"] = utils.get_dhcp_mac_address(auto_vname)
|
2020-07-13 09:33:09 +00:00
|
|
|
for disk in instance.disks:
|
|
|
|
disk_dev = f"disk-{disk['dev']}"
|
|
|
|
disk_name = utils.get_clone_disk_name(disk, instance.name, auto_vname)
|
|
|
|
clone_data[disk_dev] = disk_name
|
|
|
|
|
|
|
|
if not request.user.is_superuser and quota_msg:
|
2022-11-02 05:54:35 +00:00
|
|
|
msg = _(
|
|
|
|
"User '%(quota_msg)s' quota reached, cannot create '%(clone_name)s'!"
|
|
|
|
) % {
|
2020-11-05 09:34:31 +00:00
|
|
|
"quota_msg": quota_msg,
|
|
|
|
"clone_name": clone_data["name"],
|
2020-10-07 06:08:48 +00:00
|
|
|
}
|
2020-07-13 09:33:09 +00:00
|
|
|
messages.error(request, msg)
|
|
|
|
elif check_instance:
|
2022-11-02 05:54:35 +00:00
|
|
|
msg = _("Instance '%(clone_name)s' already exists!") % {
|
|
|
|
"clone_name": clone_data["name"]
|
|
|
|
}
|
2020-07-13 09:33:09 +00:00
|
|
|
messages.error(request, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
elif not re.match(r"^[a-zA-Z0-9-]+$", clone_data["name"]):
|
2022-11-02 05:54:35 +00:00
|
|
|
msg = _("Instance name '%(clone_name)s' contains invalid characters!") % {
|
|
|
|
"clone_name": clone_data["name"]
|
|
|
|
}
|
2020-07-13 09:33:09 +00:00
|
|
|
messages.error(request, msg)
|
2022-11-02 05:54:35 +00:00
|
|
|
elif not re.match(
|
|
|
|
r"^([0-9A-F]{2})(:?[0-9A-F]{2}){5}$",
|
|
|
|
clone_data["clone-net-mac-0"],
|
|
|
|
re.IGNORECASE,
|
|
|
|
):
|
|
|
|
msg = _("Instance MAC '%(clone_mac)s' invalid format!") % {
|
|
|
|
"clone_mac": clone_data["clone-net-mac-0"]
|
|
|
|
}
|
2020-07-13 09:33:09 +00:00
|
|
|
messages.error(request, msg)
|
|
|
|
else:
|
2020-11-05 09:34:31 +00:00
|
|
|
new_instance = Instance(compute=instance.compute, name=clone_data["name"])
|
2020-07-13 09:33:09 +00:00
|
|
|
try:
|
|
|
|
new_uuid = instance.proxy.clone_instance(clone_data)
|
|
|
|
new_instance.uuid = new_uuid
|
|
|
|
new_instance.save()
|
2022-11-02 05:54:35 +00:00
|
|
|
user_instance = UserInstance(
|
|
|
|
instance_id=new_instance.id, user_id=request.user.id, is_delete=True
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
user_instance.save()
|
2022-11-02 05:54:35 +00:00
|
|
|
msg = _("Create a clone of '%(instance_name)s'") % {
|
|
|
|
"instance_name": instance.name
|
|
|
|
}
|
2020-11-05 09:34:31 +00:00
|
|
|
messages.success(request, msg)
|
2022-11-02 05:54:35 +00:00
|
|
|
addlogmsg(
|
|
|
|
request.user.username, instance.compute.name, new_instance.name, msg
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
if app_settings.CLONE_INSTANCE_AUTO_MIGRATE == "True":
|
|
|
|
new_compute = Compute.objects.order_by("?").first()
|
2022-11-02 05:54:35 +00:00
|
|
|
utils.migrate_instance(
|
|
|
|
new_compute, new_instance, request.user, xml_del=True, offline=True
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(reverse("instances:instance", args=[new_instance.id]))
|
2020-07-13 09:33:09 +00:00
|
|
|
except Exception as e:
|
|
|
|
messages.error(request, e)
|
2018-07-26 12:29:56 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#clone")
|
2016-02-11 13:37:26 +00:00
|
|
|
|
2018-07-26 12:29:56 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def update_console(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
try:
|
|
|
|
userinstance = instance.userinstance_set.get(user=request.user)
|
2020-11-05 09:34:31 +00:00
|
|
|
except Exception:
|
2020-07-13 09:33:09 +00:00
|
|
|
userinstance = UserInstance(is_vnc=False)
|
|
|
|
|
|
|
|
if request.user.is_superuser or request.user.is_staff or userinstance.is_vnc:
|
|
|
|
form = ConsoleForm(request.POST or None)
|
|
|
|
if form.is_valid():
|
2020-11-05 09:34:31 +00:00
|
|
|
if (
|
|
|
|
"generate_password" in form.changed_data
|
|
|
|
or "clear_password" in form.changed_data
|
|
|
|
or "password" in form.changed_data
|
|
|
|
):
|
|
|
|
if form.cleaned_data["generate_password"]:
|
2020-07-13 09:33:09 +00:00
|
|
|
password = randomPasswd()
|
2020-11-05 09:34:31 +00:00
|
|
|
elif form.cleaned_data["clear_password"]:
|
|
|
|
password = ""
|
2020-07-13 09:33:09 +00:00
|
|
|
else:
|
2020-11-05 09:34:31 +00:00
|
|
|
password = form.cleaned_data["password"]
|
2016-05-27 12:13:24 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
if not instance.proxy.set_console_passwd(password):
|
2020-11-05 09:34:31 +00:00
|
|
|
msg = _(
|
|
|
|
"Error setting console password. "
|
|
|
|
+ "You should check that your instance have an graphic device."
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
messages.error(request, msg)
|
|
|
|
else:
|
|
|
|
msg = _("Set VNC password")
|
2022-11-02 05:54:35 +00:00
|
|
|
addlogmsg(
|
|
|
|
request.user.username, instance.compute.name, instance.name, msg
|
|
|
|
)
|
2018-07-26 12:29:56 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
if "keymap" in form.changed_data or "clear_keymap" in form.changed_data:
|
|
|
|
if form.cleaned_data["clear_keymap"]:
|
|
|
|
instance.proxy.set_console_keymap("")
|
2020-07-13 09:33:09 +00:00
|
|
|
else:
|
2020-11-05 09:34:31 +00:00
|
|
|
instance.proxy.set_console_keymap(form.cleaned_data["keymap"])
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
msg = _("Set VNC keymap")
|
2022-11-02 05:54:35 +00:00
|
|
|
addlogmsg(
|
|
|
|
request.user.username, instance.compute.name, instance.name, msg
|
|
|
|
)
|
2017-05-11 08:46:39 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
if "type" in form.changed_data:
|
|
|
|
instance.proxy.set_console_type(form.cleaned_data["type"])
|
2020-07-13 09:33:09 +00:00
|
|
|
msg = _("Set VNC type")
|
2022-11-02 05:54:35 +00:00
|
|
|
addlogmsg(
|
|
|
|
request.user.username, instance.compute.name, instance.name, msg
|
|
|
|
)
|
2018-07-30 10:33:09 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
if "listen_on" in form.changed_data:
|
2022-08-22 12:12:33 +00:00
|
|
|
instance.proxy.set_console_listener_addr(form.cleaned_data["listen_on"])
|
2020-07-13 09:33:09 +00:00
|
|
|
msg = _("Set VNC listen address")
|
2022-11-02 05:54:35 +00:00
|
|
|
addlogmsg(
|
|
|
|
request.user.username, instance.compute.name, instance.name, msg
|
|
|
|
)
|
2018-09-11 13:11:13 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#vncsettings")
|
2018-10-24 09:04:05 +00:00
|
|
|
|
2018-09-11 13:11:13 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
def change_options(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
try:
|
|
|
|
userinstance = instance.userinstance_set.get(user=request.user)
|
2020-11-05 09:34:31 +00:00
|
|
|
except Exception:
|
2020-07-13 09:33:09 +00:00
|
|
|
userinstance = UserInstance(is_change=False)
|
2018-10-24 09:04:05 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
if request.user.is_superuser or request.user.is_staff or userinstance.is_change:
|
2020-11-05 09:34:31 +00:00
|
|
|
instance.is_template = request.POST.get("is_template", False)
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.save()
|
|
|
|
|
|
|
|
options = {}
|
|
|
|
for post in request.POST:
|
2020-11-05 09:34:31 +00:00
|
|
|
if post in ["title", "description"]:
|
|
|
|
options[post] = request.POST.get(post, "")
|
2020-07-13 09:33:09 +00:00
|
|
|
instance.proxy.set_options(options)
|
|
|
|
|
|
|
|
msg = _("Edit options")
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(request.META.get("HTTP_REFERER") + "#options")
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
def getvvfile(request, pk):
|
|
|
|
instance = get_instance(request.user, pk)
|
|
|
|
conn = wvmInstances(
|
|
|
|
instance.compute.hostname,
|
|
|
|
instance.compute.login,
|
|
|
|
instance.compute.password,
|
|
|
|
instance.compute.type,
|
|
|
|
)
|
|
|
|
|
|
|
|
msg = _("Send console.vv file")
|
2021-05-31 08:39:09 +00:00
|
|
|
addlogmsg(request.user.username, instance.compute.name, instance.name, msg)
|
2020-11-05 09:34:31 +00:00
|
|
|
response = HttpResponse(
|
|
|
|
content="",
|
|
|
|
content_type="application/x-virt-viewer",
|
|
|
|
status=200,
|
|
|
|
reason=None,
|
|
|
|
charset="utf-8",
|
|
|
|
)
|
|
|
|
response.writelines("[virt-viewer]\n")
|
|
|
|
response.writelines("type=" + conn.graphics_type(instance.name) + "\n")
|
|
|
|
if conn.graphics_listen(instance.name) == "0.0.0.0":
|
|
|
|
response.writelines("host=" + conn.host + "\n")
|
2020-09-11 12:56:11 +00:00
|
|
|
else:
|
2020-11-05 09:34:31 +00:00
|
|
|
response.writelines("host=" + conn.graphics_listen(instance.name) + "\n")
|
|
|
|
response.writelines("port=" + conn.graphics_port(instance.name) + "\n")
|
|
|
|
response.writelines("title=" + conn.domain_name(instance.name) + "\n")
|
|
|
|
response.writelines("password=" + conn.graphics_passwd(instance.name) + "\n")
|
|
|
|
response.writelines("enable-usbredir=1\n")
|
|
|
|
response.writelines("disable-effects=all\n")
|
|
|
|
response.writelines("secure-attention=ctrl+alt+ins\n")
|
|
|
|
response.writelines("release-cursor=ctrl+alt\n")
|
|
|
|
response.writelines("fullscreen=1\n")
|
|
|
|
response.writelines("delete-this-file=1\n")
|
|
|
|
response["Content-Disposition"] = 'attachment; filename="console.vv"'
|
2020-07-13 09:33:09 +00:00
|
|
|
return response
|
|
|
|
|
|
|
|
|
|
|
|
@superuser_only
|
|
|
|
def create_instance_select_type(request, compute_id):
|
2017-05-11 08:46:39 +00:00
|
|
|
"""
|
|
|
|
:param request:
|
2020-07-13 09:33:09 +00:00
|
|
|
:param compute_id:
|
2017-05-11 08:46:39 +00:00
|
|
|
:return:
|
|
|
|
"""
|
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
conn = None
|
|
|
|
storages = list()
|
|
|
|
networks = list()
|
|
|
|
hypervisors = list()
|
|
|
|
meta_prealloc = False
|
|
|
|
compute = get_object_or_404(Compute, pk=compute_id)
|
2020-04-06 10:05:20 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
conn = wvmCreate(compute.hostname, compute.login, compute.password, compute.type)
|
|
|
|
instances = conn.get_instances()
|
|
|
|
all_hypervisors = conn.get_hypervisors_machines()
|
2018-03-13 12:56:58 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
# Supported hypervisors by webvirtcloud: i686, x86_64(for now)
|
2022-11-02 05:54:35 +00:00
|
|
|
supported_arch = [
|
|
|
|
"x86_64",
|
|
|
|
"i686",
|
|
|
|
"aarch64",
|
|
|
|
"armv7l",
|
|
|
|
"ppc64",
|
|
|
|
"ppc64le",
|
|
|
|
"s390x",
|
|
|
|
]
|
2020-07-13 09:33:09 +00:00
|
|
|
hypervisors = [hpv for hpv in all_hypervisors.keys() if hpv in supported_arch]
|
|
|
|
default_machine = app_settings.INSTANCE_MACHINE_DEFAULT_TYPE
|
|
|
|
default_arch = app_settings.INSTANCE_ARCH_DEFAULT_TYPE
|
2018-07-30 10:33:09 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
if request.method == "POST":
|
|
|
|
if "create_xml" in request.POST:
|
|
|
|
xml = request.POST.get("dom_xml", "")
|
2020-07-13 09:33:09 +00:00
|
|
|
try:
|
2020-11-05 09:34:31 +00:00
|
|
|
name = util.get_xml_path(xml, "/domain/name")
|
|
|
|
except util.etree.Error:
|
2020-07-13 09:33:09 +00:00
|
|
|
name = None
|
|
|
|
if name in instances:
|
|
|
|
error_msg = _("A virtual machine with this name already exists")
|
|
|
|
messages.error(request, error_msg)
|
|
|
|
else:
|
|
|
|
conn._defineXML(xml)
|
|
|
|
utils.refr(compute)
|
|
|
|
instance = compute.instance_set.get(name=name)
|
2020-11-05 09:34:31 +00:00
|
|
|
return redirect(reverse("instances:instance", args=[instance.id]))
|
2020-05-19 16:53:54 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return render(request, "create_instance_w1.html", locals())
|
2020-05-19 16:53:54 +00:00
|
|
|
|
2018-03-13 12:56:58 +00:00
|
|
|
|
2020-07-13 09:33:09 +00:00
|
|
|
@superuser_only
|
|
|
|
def create_instance(request, compute_id, arch, machine):
|
|
|
|
"""
|
|
|
|
:param request:
|
|
|
|
:param compute_id:
|
|
|
|
:param arch:
|
|
|
|
:param machine:
|
|
|
|
:return:
|
|
|
|
"""
|
|
|
|
|
|
|
|
conn = None
|
|
|
|
storages = list()
|
|
|
|
networks = list()
|
|
|
|
hypervisors = list()
|
|
|
|
firmwares = list()
|
|
|
|
meta_prealloc = False
|
|
|
|
compute = get_object_or_404(Compute, pk=compute_id)
|
2020-11-05 09:34:31 +00:00
|
|
|
flavors = Flavor.objects.filter().order_by("id")
|
2020-07-13 09:33:09 +00:00
|
|
|
appsettings = AppSettings.objects.all()
|
|
|
|
|
2020-08-17 06:58:42 +00:00
|
|
|
try:
|
2022-11-02 05:54:35 +00:00
|
|
|
conn = wvmCreate(
|
|
|
|
compute.hostname,
|
|
|
|
compute.login,
|
|
|
|
compute.password,
|
|
|
|
compute.type
|
|
|
|
)
|
2020-08-17 06:58:42 +00:00
|
|
|
|
|
|
|
default_firmware = app_settings.INSTANCE_FIRMWARE_DEFAULT_TYPE
|
|
|
|
default_cpu_mode = app_settings.INSTANCE_CPU_DEFAULT_MODE
|
|
|
|
instances = conn.get_instances()
|
|
|
|
videos = conn.get_video_models(arch, machine)
|
2022-09-07 10:46:50 +00:00
|
|
|
default_video = app_settings.INSTANCE_VIDEO_DEFAULT_TYPE
|
2020-08-17 06:58:42 +00:00
|
|
|
cache_modes = sorted(conn.get_cache_modes().items())
|
|
|
|
default_cache = app_settings.INSTANCE_VOLUME_DEFAULT_CACHE
|
|
|
|
default_io = app_settings.INSTANCE_VOLUME_DEFAULT_IO
|
|
|
|
default_zeroes = app_settings.INSTANCE_VOLUME_DEFAULT_DETECT_ZEROES
|
|
|
|
default_discard = app_settings.INSTANCE_VOLUME_DEFAULT_DISCARD
|
|
|
|
default_disk_format = app_settings.INSTANCE_VOLUME_DEFAULT_FORMAT
|
|
|
|
default_disk_owner_uid = int(app_settings.INSTANCE_VOLUME_DEFAULT_OWNER_UID)
|
|
|
|
default_disk_owner_gid = int(app_settings.INSTANCE_VOLUME_DEFAULT_OWNER_GID)
|
|
|
|
default_scsi_disk_model = app_settings.INSTANCE_VOLUME_DEFAULT_SCSI_CONTROLLER
|
2022-08-22 12:12:33 +00:00
|
|
|
listener_addr = settings.QEMU_CONSOLE_LISTENER_ADDRESSES
|
2020-08-17 06:58:42 +00:00
|
|
|
mac_auto = util.randomMAC()
|
|
|
|
disk_devices = conn.get_disk_device_types(arch, machine)
|
|
|
|
disk_buses = conn.get_disk_bus_types(arch, machine)
|
|
|
|
default_bus = app_settings.INSTANCE_VOLUME_DEFAULT_BUS
|
|
|
|
networks = sorted(conn.get_networks())
|
|
|
|
nwfilters = conn.get_nwfilters()
|
|
|
|
storages = sorted(conn.get_storages(only_actives=True))
|
|
|
|
default_graphics = app_settings.QEMU_CONSOLE_DEFAULT_TYPE
|
2022-09-07 10:46:50 +00:00
|
|
|
default_cdrom = app_settings.INSTANCE_CDROM_ADD
|
2022-11-02 05:54:35 +00:00
|
|
|
input_device_buses = ["default", "virtio", "usb"]
|
2022-09-08 05:02:49 +00:00
|
|
|
default_input_device_bus = app_settings.INSTANCE_INPUT_DEFAULT_DEVICE
|
2020-08-17 06:58:42 +00:00
|
|
|
|
|
|
|
dom_caps = conn.get_dom_capabilities(arch, machine)
|
|
|
|
caps = conn.get_capabilities(arch)
|
|
|
|
|
|
|
|
virtio_support = conn.is_supports_virtio(arch, machine)
|
|
|
|
hv_supports_uefi = conn.supports_uefi_xml(dom_caps["loader_enums"])
|
|
|
|
# Add BIOS
|
|
|
|
label = conn.label_for_firmware_path(arch, None)
|
2020-11-05 09:34:31 +00:00
|
|
|
if label:
|
|
|
|
firmwares.append(label)
|
2020-08-17 06:58:42 +00:00
|
|
|
# Add UEFI
|
|
|
|
loader_path = conn.find_uefi_path_for_arch(arch, dom_caps["loaders"])
|
|
|
|
label = conn.label_for_firmware_path(arch, loader_path)
|
2020-11-05 09:34:31 +00:00
|
|
|
if label:
|
|
|
|
firmwares.append(label)
|
2020-08-17 06:58:42 +00:00
|
|
|
firmwares = list(set(firmwares))
|
|
|
|
|
|
|
|
flavor_form = FlavorForm()
|
|
|
|
|
|
|
|
if conn:
|
|
|
|
if not storages:
|
|
|
|
raise libvirtError(_("You haven't defined any storage pools"))
|
|
|
|
if not networks:
|
|
|
|
raise libvirtError(_("You haven't defined any network pools"))
|
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
if request.method == "POST":
|
|
|
|
if "create" in request.POST:
|
2020-08-17 06:58:42 +00:00
|
|
|
firmware = dict()
|
|
|
|
volume_list = list()
|
|
|
|
is_disk_created = False
|
|
|
|
clone_path = ""
|
|
|
|
form = NewVMForm(request.POST)
|
|
|
|
if form.is_valid():
|
|
|
|
data = form.cleaned_data
|
2020-11-05 09:34:31 +00:00
|
|
|
if data["meta_prealloc"]:
|
2020-08-17 06:58:42 +00:00
|
|
|
meta_prealloc = True
|
|
|
|
if instances:
|
2020-11-05 09:34:31 +00:00
|
|
|
if data["name"] in instances:
|
2022-11-02 05:54:35 +00:00
|
|
|
raise libvirtError(
|
|
|
|
_("A virtual machine with this name already exists")
|
|
|
|
)
|
2020-11-05 09:34:31 +00:00
|
|
|
if Instance.objects.filter(name__exact=data["name"]):
|
2022-11-02 05:54:35 +00:00
|
|
|
raise libvirtError(
|
|
|
|
_(
|
|
|
|
"There is an instance with same name. Remove it and try again!"
|
|
|
|
)
|
|
|
|
)
|
2020-08-17 06:58:42 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
if data["hdd_size"]:
|
|
|
|
if not data["mac"]:
|
2022-11-02 05:54:35 +00:00
|
|
|
raise libvirtError(
|
|
|
|
_("No Virtual Machine MAC has been entered")
|
|
|
|
)
|
2020-08-17 06:58:42 +00:00
|
|
|
else:
|
2020-11-05 09:34:31 +00:00
|
|
|
path = conn.create_volume(
|
|
|
|
data["storage"],
|
|
|
|
data["name"],
|
|
|
|
data["hdd_size"],
|
|
|
|
default_disk_format,
|
|
|
|
meta_prealloc,
|
|
|
|
default_disk_owner_uid,
|
|
|
|
default_disk_owner_gid,
|
|
|
|
)
|
2020-07-13 09:33:09 +00:00
|
|
|
volume = dict()
|
2020-11-05 09:34:31 +00:00
|
|
|
volume["device"] = "disk"
|
|
|
|
volume["path"] = path
|
2021-12-16 08:03:03 +00:00
|
|
|
volume["type"] = conn.get_volume_format_type(path)
|
2020-11-05 09:34:31 +00:00
|
|
|
volume["cache_mode"] = data["cache_mode"]
|
|
|
|
volume["bus"] = default_bus
|
|
|
|
if volume["bus"] == "scsi":
|
|
|
|
volume["scsi_model"] = default_scsi_disk_model
|
|
|
|
volume["discard_mode"] = default_discard
|
|
|
|
volume["detect_zeroes_mode"] = default_zeroes
|
|
|
|
volume["io_mode"] = default_io
|
2020-08-17 06:58:42 +00:00
|
|
|
|
|
|
|
volume_list.append(volume)
|
|
|
|
is_disk_created = True
|
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
elif data["template"]:
|
|
|
|
templ_path = conn.get_volume_path(data["template"])
|
2022-11-02 05:54:35 +00:00
|
|
|
dest_vol = conn.get_volume_path(
|
|
|
|
data["name"] + ".img", data["storage"]
|
|
|
|
)
|
2020-08-17 06:58:42 +00:00
|
|
|
if dest_vol:
|
2020-11-05 09:34:31 +00:00
|
|
|
raise libvirtError(
|
2022-11-02 05:54:35 +00:00
|
|
|
_(
|
|
|
|
"Image has already exist. Please check volumes or change instance name"
|
|
|
|
)
|
2020-11-05 09:34:31 +00:00
|
|
|
)
|
2020-08-17 06:58:42 +00:00
|
|
|
else:
|
2020-11-05 09:34:31 +00:00
|
|
|
clone_path = conn.clone_from_template(
|
|
|
|
data["name"],
|
|
|
|
templ_path,
|
|
|
|
data["storage"],
|
|
|
|
meta_prealloc,
|
|
|
|
default_disk_owner_uid,
|
|
|
|
default_disk_owner_gid,
|
|
|
|
)
|
2020-08-17 06:58:42 +00:00
|
|
|
volume = dict()
|
2020-11-05 09:34:31 +00:00
|
|
|
volume["path"] = clone_path
|
2021-12-16 08:03:03 +00:00
|
|
|
volume["type"] = conn.get_volume_format_type(clone_path)
|
2020-11-05 09:34:31 +00:00
|
|
|
volume["device"] = "disk"
|
|
|
|
volume["cache_mode"] = data["cache_mode"]
|
|
|
|
volume["bus"] = default_bus
|
|
|
|
if volume["bus"] == "scsi":
|
|
|
|
volume["scsi_model"] = default_scsi_disk_model
|
|
|
|
volume["discard_mode"] = default_discard
|
|
|
|
volume["detect_zeroes_mode"] = default_zeroes
|
|
|
|
volume["io_mode"] = default_io
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
volume_list.append(volume)
|
2020-08-17 06:58:42 +00:00
|
|
|
is_disk_created = True
|
|
|
|
else:
|
2020-11-05 09:34:31 +00:00
|
|
|
if not data["images"]:
|
2022-11-02 05:54:35 +00:00
|
|
|
raise libvirtError(
|
|
|
|
_("First you need to create or select an image")
|
|
|
|
)
|
2020-08-17 06:58:42 +00:00
|
|
|
else:
|
2020-11-05 09:34:31 +00:00
|
|
|
for idx, vol in enumerate(data["images"].split(",")):
|
2020-08-17 06:58:42 +00:00
|
|
|
path = conn.get_volume_path(vol)
|
|
|
|
volume = dict()
|
2020-11-05 09:34:31 +00:00
|
|
|
volume["path"] = path
|
2021-12-16 08:03:03 +00:00
|
|
|
volume["type"] = conn.get_volume_format_type(path)
|
2022-11-02 05:54:35 +00:00
|
|
|
volume["device"] = request.POST.get(
|
|
|
|
"device" + str(idx), ""
|
|
|
|
)
|
|
|
|
volume["bus"] = request.POST.get(
|
|
|
|
"bus" + str(idx), ""
|
|
|
|
)
|
2020-11-05 09:34:31 +00:00
|
|
|
if volume["bus"] == "scsi":
|
|
|
|
volume["scsi_model"] = default_scsi_disk_model
|
|
|
|
volume["cache_mode"] = data["cache_mode"]
|
|
|
|
volume["discard_mode"] = default_discard
|
|
|
|
volume["detect_zeroes_mode"] = default_zeroes
|
|
|
|
volume["io_mode"] = default_io
|
2020-08-17 06:58:42 +00:00
|
|
|
|
|
|
|
volume_list.append(volume)
|
2020-11-05 09:34:31 +00:00
|
|
|
if data["cache_mode"] not in conn.get_cache_modes():
|
2020-08-17 06:58:42 +00:00
|
|
|
error_msg = _("Invalid cache mode")
|
|
|
|
raise libvirtError
|
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
if "UEFI" in data["firmware"]:
|
2020-08-17 06:58:42 +00:00
|
|
|
firmware["loader"] = data["firmware"].split(":")[1].strip()
|
2020-11-05 09:34:31 +00:00
|
|
|
firmware["secure"] = "no"
|
|
|
|
firmware["readonly"] = "yes"
|
|
|
|
firmware["type"] = "pflash"
|
|
|
|
if "secboot" in firmware["loader"] and machine != "q35":
|
2020-08-17 06:58:42 +00:00
|
|
|
messages.warning(
|
2020-11-05 09:34:31 +00:00
|
|
|
request,
|
|
|
|
"Changing machine type from '%s' to 'q35' "
|
|
|
|
"which is required for UEFI secure boot." % machine,
|
|
|
|
)
|
|
|
|
machine = "q35"
|
|
|
|
firmware["secure"] = "yes"
|
2020-08-17 06:58:42 +00:00
|
|
|
|
|
|
|
uuid = util.randomUUID()
|
|
|
|
try:
|
2020-11-05 09:34:31 +00:00
|
|
|
conn.create_instance(
|
|
|
|
name=data["name"],
|
|
|
|
memory=data["memory"],
|
|
|
|
vcpu=data["vcpu"],
|
|
|
|
vcpu_mode=data["vcpu_mode"],
|
|
|
|
uuid=uuid,
|
|
|
|
arch=arch,
|
|
|
|
machine=machine,
|
|
|
|
firmware=firmware,
|
|
|
|
volumes=volume_list,
|
|
|
|
networks=data["networks"],
|
|
|
|
virtio=data["virtio"],
|
2022-08-22 12:12:33 +00:00
|
|
|
listener_addr=data["listener_addr"],
|
2020-11-05 09:34:31 +00:00
|
|
|
nwfilter=data["nwfilter"],
|
|
|
|
graphics=data["graphics"],
|
|
|
|
video=data["video"],
|
|
|
|
console_pass=data["console_pass"],
|
|
|
|
mac=data["mac"],
|
|
|
|
qemu_ga=data["qemu_ga"],
|
2022-09-08 05:02:49 +00:00
|
|
|
add_cdrom=data["add_cdrom"],
|
|
|
|
add_input=data["add_input"],
|
2020-11-05 09:34:31 +00:00
|
|
|
)
|
2022-11-02 05:54:35 +00:00
|
|
|
create_instance = Instance(
|
|
|
|
compute_id=compute_id, name=data["name"], uuid=uuid
|
|
|
|
)
|
2020-08-17 06:58:42 +00:00
|
|
|
create_instance.save()
|
|
|
|
msg = _("Instance is created")
|
|
|
|
messages.success(request, msg)
|
2022-11-02 05:54:35 +00:00
|
|
|
addlogmsg(
|
|
|
|
request.user.username,
|
|
|
|
create_instance.compute.name,
|
|
|
|
create_instance.name,
|
|
|
|
msg,
|
|
|
|
)
|
|
|
|
return redirect(
|
|
|
|
reverse("instances:instance", args=[create_instance.id])
|
|
|
|
)
|
2020-08-17 06:58:42 +00:00
|
|
|
except libvirtError as lib_err:
|
2020-11-05 09:34:31 +00:00
|
|
|
if data["hdd_size"] or len(volume_list) > 0:
|
2020-08-17 06:58:42 +00:00
|
|
|
if is_disk_created:
|
|
|
|
for vol in volume_list:
|
2020-11-05 09:34:31 +00:00
|
|
|
conn.delete_volume(vol["path"])
|
2020-08-17 06:58:42 +00:00
|
|
|
messages.error(request, lib_err)
|
|
|
|
conn.close()
|
|
|
|
except libvirtError as lib_err:
|
|
|
|
messages.error(request, lib_err)
|
2022-08-22 12:12:33 +00:00
|
|
|
|
2020-11-05 09:34:31 +00:00
|
|
|
return render(request, "create_instance_w2.html", locals())
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
@superuser_only
|
|
|
|
def flavor_create(request):
|
|
|
|
form = FlavorForm(request.POST or None)
|
|
|
|
if form.is_valid():
|
|
|
|
form.save()
|
2020-11-05 09:34:31 +00:00
|
|
|
messages.success(request, _("Flavor Created"))
|
|
|
|
return redirect(request.META.get("HTTP_REFERER"))
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
return render(
|
|
|
|
request,
|
2020-11-05 09:34:31 +00:00
|
|
|
"common/form.html",
|
|
|
|
{"form": form, "title": _("Create Flavor")},
|
2020-07-13 09:33:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@superuser_only
|
|
|
|
def flavor_update(request, pk):
|
|
|
|
flavor = get_object_or_404(Flavor, pk=pk)
|
|
|
|
form = FlavorForm(request.POST or None, instance=flavor)
|
|
|
|
if form.is_valid():
|
|
|
|
form.save()
|
2020-11-05 09:34:31 +00:00
|
|
|
messages.success(request, _("Flavor Updated"))
|
|
|
|
return redirect(request.META.get("HTTP_REFERER"))
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
return render(
|
|
|
|
request,
|
2020-11-05 09:34:31 +00:00
|
|
|
"common/form.html",
|
|
|
|
{"form": form, "title": _("Update Flavor")},
|
2020-07-13 09:33:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@superuser_only
|
|
|
|
def flavor_delete(request, pk):
|
|
|
|
flavor = get_object_or_404(Flavor, pk=pk)
|
2020-11-05 09:34:31 +00:00
|
|
|
if request.method == "POST":
|
2020-07-13 09:33:09 +00:00
|
|
|
flavor.delete()
|
2020-11-05 09:34:31 +00:00
|
|
|
messages.success(request, _("Flavor Deleted"))
|
|
|
|
return redirect(request.META.get("HTTP_REFERER"))
|
2020-07-13 09:33:09 +00:00
|
|
|
|
|
|
|
return render(
|
|
|
|
request,
|
2020-11-05 09:34:31 +00:00
|
|
|
"common/confirm_delete.html",
|
|
|
|
{"object": flavor},
|
2020-07-13 09:33:09 +00:00
|
|
|
)
|