2014-12-19 19:30:00 +03:00
/* ------------------------------------------------------------------------ */
2018-01-02 20:27:37 +03:00
/* Copyright 2002-2018, OpenNebula Project, OpenNebula Systems */
2014-12-19 19:30:00 +03:00
/* */
/* 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 VDC_H_
# define VDC_H_
2014-12-23 18:32:06 +03:00
# include <set>
2014-12-19 19:30:00 +03:00
# include "PoolObjectSQL.h"
# include "NebulaLog.h"
using namespace std ;
2015-01-30 03:12:17 +03:00
/**
* Represents a set of resources in a zone . The class is able to manage
* the ACL rules associated to the set .
*/
2015-07-01 22:15:40 +03:00
class ResourceSet
2015-01-30 03:12:17 +03:00
{
public :
2018-04-20 18:03:18 +03:00
static string type_to_vdc_str ( PoolObjectSQL : : ObjectType type )
{
switch ( type )
{
case PoolObjectSQL : : HOST : return " HOST " ;
case PoolObjectSQL : : NET : return " VNET " ;
case PoolObjectSQL : : DATASTORE : return " DATASTORE " ;
case PoolObjectSQL : : CLUSTER : return " CLUSTER " ;
default : return " " ;
}
}
2015-01-30 03:12:17 +03:00
/**
2015-07-01 22:15:40 +03:00
* Constructor for the ResourceSet , ACL rules are set based on the
2015-01-30 03:12:17 +03:00
* resource type
*/
ResourceSet ( PoolObjectSQL : : ObjectType _type ) ;
/**
* Writes the ResourceSet in XML form the the given stream , in the form :
* < RESOURCE >
* < ZONE_ID >
2015-01-30 15:56:06 +03:00
* < RESOURCE_ID >
2015-01-30 03:12:17 +03:00
* < / RESOURCE >
2015-01-30 15:56:06 +03:00
* RESOURCE is set from xml_name attribute .
2015-01-30 03:12:17 +03:00
* @ param oss the outpur string stream
*/
void to_xml ( ostringstream & oss ) const ;
/**
* Builds the ResourceSet from the xml node
* @ param content of the resource set
* @ return 0 on success
*/
int from_xml_node ( vector < xmlNodePtr > & content ) ;
/**
* Adds a resource to the set . The ACL rules are updated for the groups
2015-07-01 22:15:40 +03:00
*
2015-01-30 03:12:17 +03:00
* @ param groups set of groups to apply the rules to
* @ param zone_id ID of the zone
* @ param id ID of the vnet
* @ param error returns the error reason , if any
*
* @ return 0 on success
*/
int add ( const set < int > & groups , int zone_id , int id , string & error ) ;
/**
* Deletes a resource from the set . The ACL rules are updated
*
* @ param groups set of groups to apply the rules to
* @ param zone_id ID of the zone
* @ param id ID of the vnet
* @ param error returns the error reason , if any
*
* @ return 0 on success
*/
int del ( const set < int > & groups , int zone_id , int id , string & error ) ;
/**
* Set ACL rules for a group to access this resource set
2015-07-01 22:15:40 +03:00
*
2015-01-30 03:12:17 +03:00
* @ param group_id the group
*/
void add_group_rules ( int group_id ) ;
2015-07-01 22:15:40 +03:00
2015-01-30 03:12:17 +03:00
/**
* Remove ACL access rules to this resource set for a group
2015-07-01 22:15:40 +03:00
*
2015-01-30 03:12:17 +03:00
* @ param group_id the group
2015-07-01 22:15:40 +03:00
*/
2015-01-30 03:12:17 +03:00
void del_group_rules ( int group_id ) ;
2015-07-01 22:15:40 +03:00
/**
2015-01-30 03:12:17 +03:00
* Add an ACL rule for group and resource
*
* @ param group_id of the group
* @ param zone_id of the zone
* @ param id of the resource
*/
void add_rule ( int group_id , int zone_id , int id ) ;
2015-07-01 22:15:40 +03:00
/**
2015-01-30 03:12:17 +03:00
* Remove an ACL rule for group and resource
*/
2015-07-01 22:15:40 +03:00
void del_rule ( int group_id , int zone_id , int id ) ;
2015-01-30 03:12:17 +03:00
2018-03-28 21:55:17 +03:00
2015-01-30 03:12:17 +03:00
private :
/**
* < ZONE_ID , RESOURCE_ID > pairs for the resource set
2015-07-01 22:15:40 +03:00
*/
2015-01-30 03:12:17 +03:00
set < pair < int , int > > resources ;
/**
* < resource , rights > pairs to add / remove to ACL list for this set .
2015-07-01 22:15:40 +03:00
*/
2015-01-30 03:12:17 +03:00
set < pair < long long , long long > > rules ;
2015-07-01 22:15:40 +03:00
/**
2015-01-30 03:12:17 +03:00
* The resource type of this set .
*/
PoolObjectSQL : : ObjectType type ;
/**
* XML Name of the resource
*/
string xml_name ;
2018-03-28 21:55:17 +03:00
/**
* Insert acl rules into rules attribute .
*
* @ param default_vdc_acl the mask for the acls .
* @ param type Object type for the acls .
*/
2018-04-09 09:57:02 +03:00
void insert_default_rules ( string default_vdc_acl , PoolObjectSQL : : ObjectType type ) ;
2015-01-30 03:12:17 +03:00
} ;
2014-12-19 19:30:00 +03:00
/**
* The Vdc class .
*/
class Vdc : public PoolObjectSQL
{
public :
/**
* Function to print the Vdc object into a string in XML format
* @ param xml the resulting XML string
* @ return a reference to the generated string
*/
string & to_xml ( string & xml ) const ;
/**
* Rebuilds the object from an xml formatted string
* @ param xml_str The xml - formatted string
*
* @ return 0 on success , - 1 otherwise
*/
int from_xml ( const string & xml_str ) ;
2014-12-23 18:32:06 +03:00
/**
* Adds a Group to the VDC . ACL Rules are updated only for this group .
*
* @ param group_id ID of the group
* @ param error_msg Returns the error reason , if any
*
* @ return 0 on success
*/
int add_group ( int group_id , string & error_msg ) ;
/**
* Deletes a Group from the VDC . ACL Rules are updated only for this group .
*
* @ param group_id ID of the group
* @ param error_msg Returns the error reason , if any
*
* @ return 0 on success
*/
int del_group ( int group_id , string & error_msg ) ;
/**
* Adds a cluster to the VDC
*
* @ param zone_id ID of the zone
* @ param cluster_id ID of the cluster
* @ param error_msg Returns the error reason , if any
*
* @ return 0 on success
*/
2015-01-30 03:12:17 +03:00
int add_cluster ( int zone_id , int cluster_id , string & error_msg )
{
return clusters . add ( groups , zone_id , cluster_id , error_msg ) ;
}
2014-12-23 18:32:06 +03:00
/**
* Deletes a cluster from the VDC
*
* @ param zone_id ID of the zone
* @ param cluster_id ID of the cluster
* @ param error_msg Returns the error reason , if any
*
* @ return 0 on success
*/
2015-01-30 03:12:17 +03:00
int del_cluster ( int zone_id , int cluster_id , string & error_msg )
{
return clusters . del ( groups , zone_id , cluster_id , error_msg ) ;
}
2014-12-23 18:32:06 +03:00
/**
* Adds a host to the VDC
*
* @ param zone_id ID of the zone
* @ param host_id ID of the host
* @ param error_msg Returns the error reason , if any
*
* @ return 0 on success
*/
2015-01-30 03:12:17 +03:00
int add_host ( int zone_id , int host_id , string & error_msg )
{
return hosts . add ( groups , zone_id , host_id , error_msg ) ;
}
2014-12-23 18:32:06 +03:00
/**
* Deletes a host from the VDC
*
* @ param zone_id ID of the zone
* @ param host_id ID of the host
* @ param error_msg Returns the error reason , if any
*
* @ return 0 on success
*/
2015-01-30 03:12:17 +03:00
int del_host ( int zone_id , int host_id , string & error_msg )
{
return hosts . del ( groups , zone_id , host_id , error_msg ) ;
}
2014-12-23 18:32:06 +03:00
/**
* Adds a datastore to the VDC
*
* @ param zone_id ID of the zone
* @ param datastore_id ID of the datastore
* @ param error_msg Returns the error reason , if any
*
* @ return 0 on success
*/
2015-01-30 03:12:17 +03:00
int add_datastore ( int zone_id , int datastore_id , string & error_msg )
{
return datastores . add ( groups , zone_id , datastore_id , error_msg ) ;
}
2014-12-23 18:32:06 +03:00
/**
* Deletes a datastore from the VDC
*
* @ param zone_id ID of the zone
* @ param datastore_id ID of the datastore
* @ param error_msg Returns the error reason , if any
*
* @ return 0 on success
*/
2015-01-30 03:12:17 +03:00
int del_datastore ( int zone_id , int datastore_id , string & error_msg )
{
return datastores . del ( groups , zone_id , datastore_id , error_msg ) ;
}
2014-12-23 18:32:06 +03:00
/**
* Adds a vnet to the VDC
*
* @ param zone_id ID of the zone
* @ param vnet_id ID of the vnet
* @ param error_msg Returns the error reason , if any
*
* @ return 0 on success
*/
2015-01-30 03:12:17 +03:00
int add_vnet ( int zone_id , int vnet_id , string & error_msg )
{
return vnets . add ( groups , zone_id , vnet_id , error_msg ) ;
}
2014-12-23 18:32:06 +03:00
/**
* Deletes a vnet from the VDC
*
* @ param zone_id ID of the zone
* @ param vnet_id ID of the vnet
* @ param error_msg Returns the error reason , if any
*
* @ return 0 on success
*/
2015-01-30 03:12:17 +03:00
int del_vnet ( int zone_id , int vnet_id , string & error_msg )
{
return vnets . del ( groups , zone_id , vnet_id , error_msg ) ;
}
2014-12-23 18:32:06 +03:00
/**
* Special ID to refer to all OpenNebula resources , from any cluster
* or in cluster none ( * in ACL rules ) .
*/
static const int ALL_RESOURCES ;
2014-12-19 19:30:00 +03:00
private :
// -------------------------------------------------------------------------
// Friends
// -------------------------------------------------------------------------
friend class VdcPool ;
// *************************************************************************
// Constructor
// *************************************************************************
Vdc ( int id , Template * vdc_template ) ;
~ Vdc ( ) ;
2014-12-23 18:32:06 +03:00
// *************************************************************************
// Attributes (Private)
// *************************************************************************
set < int > groups ;
2015-01-30 03:12:17 +03:00
ResourceSet clusters ;
ResourceSet hosts ;
ResourceSet datastores ;
ResourceSet vnets ;
2014-12-23 18:32:06 +03:00
2014-12-19 19:30:00 +03:00
// *************************************************************************
// DataBase implementation (Private)
// *************************************************************************
static const char * db_names ;
static const char * db_bootstrap ;
static const char * table ;
/**
* Execute an INSERT or REPLACE Sql query .
* @ param db The SQL DB
* @ param replace Execute an INSERT or a REPLACE
* @ param error_str Returns the error reason , if any
* @ return 0 one success
*/
int insert_replace ( SqlDB * db , bool replace , string & error_str ) ;
/**
* Bootstraps the database table ( s ) associated to the Vdc
* @ return 0 on success
*/
static int bootstrap ( SqlDB * db )
{
ostringstream oss ( Vdc : : db_bootstrap ) ;
2017-04-21 20:16:45 +03:00
return db - > exec_local_wr ( oss ) ;
2014-12-19 19:30:00 +03:00
} ;
/**
* Writes the Vdc in the database .
* @ param db pointer to the db
* @ return 0 on success
*/
int insert ( SqlDB * db , string & error_str ) ;
/**
* Writes / updates the Vdc ' s data fields in the database .
* @ param db pointer to the db
* @ return 0 on success
*/
int update ( SqlDB * db )
{
string error_str ;
return insert_replace ( db , true , error_str ) ;
}
2015-01-14 14:50:36 +03:00
/**
* Drops the Vdc from the database
* @ param db pointer to the db
* @ return 0 on success
*/
int drop ( SqlDB * db ) ;
2014-12-19 19:30:00 +03:00
/**
* Factory method for Vdc templates
*/
Template * get_new_template ( ) const
{
return new Template ;
}
} ;
# endif /*VDC_H_*/
2015-01-30 03:12:17 +03:00