mirror of
https://github.com/OpenNebula/one.git
synced 2024-12-23 17:33:56 +03:00
549 lines
19 KiB
C++
549 lines
19 KiB
C++
/* -------------------------------------------------------------------------- */
|
|
/* Copyright 2002-2017, OpenNebula Project, OpenNebula Systems */
|
|
/* */
|
|
/* Licensed under the Apache License, Version 2.0 (the "License"); you may */
|
|
/* not use this file except in compliance with the License. You may obtain */
|
|
/* a copy of the License at */
|
|
/* */
|
|
/* http://www.apache.org/licenses/LICENSE-2.0 */
|
|
/* */
|
|
/* Unless required by applicable law or agreed to in writing, software */
|
|
/* distributed under the License is distributed on an "AS IS" BASIS, */
|
|
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */
|
|
/* See the License for the specific language governing permissions and */
|
|
/* limitations under the License. */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
#ifndef REQUEST_MANAGER_VIRTUAL_MACHINE_H_
|
|
#define REQUEST_MANAGER_VIRTUAL_MACHINE_H
|
|
|
|
#include "Request.h"
|
|
#include "Nebula.h"
|
|
|
|
using namespace std;
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
class RequestManagerVirtualMachine: public Request
|
|
{
|
|
protected:
|
|
RequestManagerVirtualMachine(const string& method_name,
|
|
const string& help,
|
|
const string& params)
|
|
:Request(method_name,params,help)
|
|
{
|
|
Nebula& nd = Nebula::instance();
|
|
pool = nd.get_vmpool();
|
|
|
|
auth_object = PoolObjectSQL::VM;
|
|
auth_op = AuthRequest::MANAGE;
|
|
};
|
|
|
|
~RequestManagerVirtualMachine(){};
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
|
|
virtual void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att) = 0;
|
|
|
|
bool vm_authorization(int id,
|
|
ImageTemplate * tmpl,
|
|
VirtualMachineTemplate* vtmpl,
|
|
RequestAttributes& att,
|
|
PoolObjectAuth * host_perms,
|
|
PoolObjectAuth * ds_perm,
|
|
PoolObjectAuth * img_perm,
|
|
AuthRequest::Operation op);
|
|
|
|
bool quota_resize_authorization(
|
|
Template * deltas,
|
|
RequestAttributes& att,
|
|
PoolObjectAuth& vm_perms);
|
|
|
|
bool quota_resize_authorization(
|
|
int oid,
|
|
Template * deltas,
|
|
RequestAttributes& att);
|
|
|
|
int get_host_information(
|
|
int hid,
|
|
string& name,
|
|
string& vmm,
|
|
int& cluster_id,
|
|
bool& is_public_cloud,
|
|
PoolObjectAuth& host_perms,
|
|
RequestAttributes& att);
|
|
|
|
int get_ds_information(
|
|
int ds_id,
|
|
set<int>& ds_cluster_ids,
|
|
string& tm_mad,
|
|
RequestAttributes& att,
|
|
bool& ds_migr);
|
|
|
|
int get_default_ds_information(
|
|
int cluster_id,
|
|
int& ds_id,
|
|
string& tm_mad,
|
|
RequestAttributes& att);
|
|
|
|
bool check_host(int hid,
|
|
bool enforce,
|
|
VirtualMachine* vm,
|
|
string& error);
|
|
|
|
int add_history(VirtualMachine * vm,
|
|
int hid,
|
|
int cid,
|
|
const string& hostname,
|
|
const string& vmm_mad,
|
|
const string& tm_mad,
|
|
int ds_id,
|
|
RequestAttributes& att);
|
|
|
|
VirtualMachine * get_vm(int id, RequestAttributes& att);
|
|
};
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineAction : public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
//auth_op is MANAGE for all actions but "resched" and "unresched"
|
|
//this is dynamically set for each request in the execute method
|
|
VirtualMachineAction():
|
|
RequestManagerVirtualMachine("one.vm.action",
|
|
"Performs an action on a virtual machine",
|
|
"A:ssi"){};
|
|
~VirtualMachineAction(){};
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att);
|
|
};
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineDeploy : public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
VirtualMachineDeploy():
|
|
RequestManagerVirtualMachine("one.vm.deploy",
|
|
"Deploys a virtual machine",
|
|
"A:siibi")
|
|
{
|
|
auth_op = Nebula::instance().get_vm_auth_op(History::DEPLOY_ACTION);
|
|
};
|
|
|
|
~VirtualMachineDeploy(){};
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att);
|
|
};
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineMigrate : public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
VirtualMachineMigrate():
|
|
RequestManagerVirtualMachine("one.vm.migrate",
|
|
"Migrates a virtual machine",
|
|
"A:siibbi"){
|
|
auth_op = Nebula::instance().get_vm_auth_op(History::MIGRATE_ACTION);
|
|
};
|
|
|
|
~VirtualMachineMigrate(){};
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att);
|
|
};
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineDiskSaveas : public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
VirtualMachineDiskSaveas():
|
|
RequestManagerVirtualMachine("one.vm.disksaveas",
|
|
"Save a disk from virtual machine as a new image",
|
|
"A:siissi"){
|
|
auth_op= Nebula::instance().get_vm_auth_op(History::DISK_SAVEAS_ACTION);
|
|
};
|
|
|
|
~VirtualMachineDiskSaveas(){};
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att);
|
|
};
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineMonitoring : public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
|
|
VirtualMachineMonitoring():
|
|
RequestManagerVirtualMachine("one.vm.monitoring",
|
|
"Returns the virtual machine monitoring records",
|
|
"A:si"){
|
|
auth_op = AuthRequest::USE;
|
|
};
|
|
|
|
~VirtualMachineMonitoring(){};
|
|
|
|
void request_execute(
|
|
xmlrpc_c::paramList const& paramList, RequestAttributes& att);
|
|
};
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineAttach : public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
VirtualMachineAttach():
|
|
RequestManagerVirtualMachine("one.vm.attach",
|
|
"Attaches a new disk to the virtual machine",
|
|
"A:sis"){
|
|
auth_op= Nebula::instance().get_vm_auth_op(History::DISK_ATTACH_ACTION);
|
|
};
|
|
|
|
~VirtualMachineAttach(){};
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att);
|
|
};
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineDetach : public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
VirtualMachineDetach():
|
|
RequestManagerVirtualMachine("one.vm.detach",
|
|
"Detaches a disk from a virtual machine",
|
|
"A:sii"){
|
|
//Attach & detach are set to the same auth op in OpenNebulaTemplate
|
|
auth_op= Nebula::instance().get_vm_auth_op(History::DISK_DETACH_ACTION);
|
|
};
|
|
|
|
~VirtualMachineDetach(){};
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att);
|
|
};
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineAttachNic : public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
VirtualMachineAttachNic():
|
|
RequestManagerVirtualMachine("one.vm.attachnic",
|
|
"Attaches a new NIC to the virtual machine",
|
|
"A:sis"){
|
|
auth_op = Nebula::instance().get_vm_auth_op(History::NIC_ATTACH_ACTION);
|
|
};
|
|
|
|
~VirtualMachineAttachNic(){};
|
|
|
|
/**
|
|
* Process a NIC attahment request to a Virtual Machine
|
|
* @param id of the VirtualMachine
|
|
* @param tl with the new NIC description
|
|
* @param att attributes of this request
|
|
* @return ErroCode as defined in Request
|
|
*/
|
|
ErrorCode request_execute(int id, VirtualMachineTemplate& tl,
|
|
RequestAttributes& att);
|
|
|
|
protected:
|
|
|
|
void request_execute(xmlrpc_c::paramList const& pl, RequestAttributes& ra);
|
|
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineDetachNic : public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
VirtualMachineDetachNic():
|
|
RequestManagerVirtualMachine("one.vm.detachnic",
|
|
"Detaches a NIC from a virtual machine",
|
|
"A:sii"){
|
|
//Attach & detach are set to the same auth op in OpenNebulaTemplate
|
|
auth_op = Nebula::instance().get_vm_auth_op(History::NIC_DETACH_ACTION);
|
|
};
|
|
|
|
~VirtualMachineDetachNic(){};
|
|
|
|
/**
|
|
* Process a NIC detach request to a Virtual Machine
|
|
* @param id of the VirtualMachine
|
|
* @param nic_id id of the NIC
|
|
* @param att attributes of this request
|
|
* @return ErroCode as defined in Request
|
|
*/
|
|
ErrorCode request_execute(int id, int nic_id, RequestAttributes& att);
|
|
|
|
protected:
|
|
void request_execute(xmlrpc_c::paramList const& pl, RequestAttributes& ra);
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineResize : public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
VirtualMachineResize():
|
|
RequestManagerVirtualMachine("one.vm.resize",
|
|
"Changes the capacity of the virtual machine",
|
|
"A:sisb"){
|
|
auth_op = Nebula::instance().get_vm_auth_op(History::RESIZE_ACTION);
|
|
};
|
|
|
|
~VirtualMachineResize(){};
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att);
|
|
};
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineSnapshotCreate: public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
VirtualMachineSnapshotCreate():
|
|
RequestManagerVirtualMachine("one.vm.snapshotcreate",
|
|
"Creates a new virtual machine snapshot",
|
|
"A:sis"){
|
|
Nebula& nd = Nebula::instance();
|
|
|
|
//All VM snapshot operations are set to the same auth value
|
|
auth_op = nd.get_vm_auth_op(History::SNAPSHOT_CREATE_ACTION);
|
|
};
|
|
|
|
~VirtualMachineSnapshotCreate(){};
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att);
|
|
};
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineSnapshotRevert: public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
VirtualMachineSnapshotRevert():
|
|
RequestManagerVirtualMachine("one.vm.snapshotrevert",
|
|
"Reverts a virtual machine to a snapshot",
|
|
"A:sii"){
|
|
Nebula& nd = Nebula::instance();
|
|
|
|
//All VM snapshot operations are set to the same auth value
|
|
auth_op = nd.get_vm_auth_op(History::SNAPSHOT_REVERT_ACTION);
|
|
};
|
|
|
|
~VirtualMachineSnapshotRevert(){};
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att);
|
|
};
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineSnapshotDelete: public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
VirtualMachineSnapshotDelete():
|
|
RequestManagerVirtualMachine("one.vm.snapshotdelete",
|
|
"Deletes a virtual machine snapshot",
|
|
"A:sii"){
|
|
Nebula& nd = Nebula::instance();
|
|
|
|
//All VM snapshot operations are set to the same auth value
|
|
auth_op = nd.get_vm_auth_op(History::SNAPSHOT_DELETE_ACTION);
|
|
};
|
|
|
|
~VirtualMachineSnapshotDelete(){};
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att);
|
|
};
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineRecover: public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
VirtualMachineRecover():
|
|
RequestManagerVirtualMachine("one.vm.recover",
|
|
"Recovers a virtual machine",
|
|
"A:sii"){};
|
|
~VirtualMachineRecover(){};
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att);
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachinePoolCalculateShowback : public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
|
|
VirtualMachinePoolCalculateShowback():
|
|
RequestManagerVirtualMachine("one.vmpool.calculateshowback",
|
|
"Processes all the history records, and stores the monthly cost"
|
|
" for each VM", "A:sii")
|
|
{
|
|
Nebula& nd = Nebula::instance();
|
|
pool = nd.get_vmpool();
|
|
|
|
auth_object = PoolObjectSQL::VM;
|
|
};
|
|
|
|
~VirtualMachinePoolCalculateShowback(){};
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
|
|
void request_execute(
|
|
xmlrpc_c::paramList const& paramList, RequestAttributes& att);
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineDiskSnapshotCreate: public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
VirtualMachineDiskSnapshotCreate():
|
|
RequestManagerVirtualMachine("one.vm.disksnapshotcreate",
|
|
"Creates a new virtual machine disk snapshot",
|
|
"A:siis"){
|
|
Nebula& nd = Nebula::instance();
|
|
ipool = nd.get_ipool();
|
|
|
|
//All VM disk snapshot operations are set to the same auth value
|
|
auth_op = nd.get_vm_auth_op(History::DISK_SNAPSHOT_CREATE_ACTION);
|
|
};
|
|
|
|
~VirtualMachineDiskSnapshotCreate(){};
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att);
|
|
|
|
private:
|
|
ImagePool* ipool;
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineDiskSnapshotRevert: public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
VirtualMachineDiskSnapshotRevert():
|
|
RequestManagerVirtualMachine("one.vm.disksnapshotrevert",
|
|
"Reverts disk state to a snapshot",
|
|
"A:siii"){
|
|
Nebula& nd = Nebula::instance();
|
|
|
|
//All VM disk snapshot operations are set to the same auth value
|
|
auth_op = nd.get_vm_auth_op(History::DISK_SNAPSHOT_REVERT_ACTION);
|
|
};
|
|
|
|
~VirtualMachineDiskSnapshotRevert(){};
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att);
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineDiskSnapshotDelete: public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
VirtualMachineDiskSnapshotDelete():
|
|
RequestManagerVirtualMachine("one.vm.disksnapshotdelete",
|
|
"Deletes a disk snapshot",
|
|
"A:siii"){
|
|
Nebula& nd = Nebula::instance();
|
|
ipool = nd.get_ipool();
|
|
|
|
//All VM disk snapshot operations are set to the same auth value
|
|
auth_op = nd.get_vm_auth_op(History::DISK_SNAPSHOT_DELETE_ACTION);
|
|
};
|
|
|
|
~VirtualMachineDiskSnapshotDelete(){};
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att);
|
|
|
|
private:
|
|
ImagePool* ipool;
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineUpdateConf: public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
VirtualMachineUpdateConf():
|
|
RequestManagerVirtualMachine("one.vm.updateconf",
|
|
"Updates several configuration attributes of a VM",
|
|
"A:sis"){
|
|
auth_op = Nebula::instance().get_vm_auth_op(History::UPDATECONF_ACTION);
|
|
};
|
|
|
|
~VirtualMachineUpdateConf(){};
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att);
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineDiskResize : public RequestManagerVirtualMachine
|
|
{
|
|
public:
|
|
VirtualMachineDiskResize():
|
|
RequestManagerVirtualMachine("one.vm.diskresize",
|
|
"Resizes a disk from a virtual machine",
|
|
"A:siis"){
|
|
Nebula& nd = Nebula::instance();
|
|
ipool = nd.get_ipool();
|
|
|
|
auth_op = nd.get_vm_auth_op(History::DISK_RESIZE_ACTION);
|
|
};
|
|
|
|
~VirtualMachineDiskResize(){};
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att);
|
|
private:
|
|
ImagePool* ipool;
|
|
};
|
|
|
|
#endif
|