2008-11-13 19:21:17 +03:00
/* -------------------------------------------------------------------------- */
2010-02-22 20:00:30 +03:00
/* Copyright 2002-2010, OpenNebula Project Leads (OpenNebula.org) */
2008-11-13 19:21:17 +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 VIRTUAL_NETWORK_H_
# define VIRTUAL_NETWORK_H_
# include "PoolSQL.h"
# include "VirtualNetworkTemplate.h"
# include "Leases.h"
# include <vector>
# include <string>
# include <map>
# include <time.h>
# include <sstream>
using namespace std ;
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/**
* The Virtual Network class . It represents a Virtual Network at manages its leases .
* One lease is formed by one IP and one MAC address .
* MAC address are derived from IP addresses .
*/
class VirtualNetwork : public PoolObjectSQL
{
public :
2009-03-06 15:10:15 +03:00
2008-11-13 19:21:17 +03:00
/**
* Possible types of networks
2009-03-06 15:10:15 +03:00
*/
2008-11-13 19:21:17 +03:00
enum NetworkType
{
UNINITIALIZED = - 1 ,
RANGED = 0 ,
2010-09-02 22:44:14 +04:00
FIXED = 1
2008-11-13 19:21:17 +03:00
} ;
2009-03-06 15:10:15 +03:00
2008-11-13 19:21:17 +03:00
// *************************************************************************
// Virtual Network Public Methods
// *************************************************************************
2009-07-09 18:34:34 +04:00
2010-07-09 14:10:05 +04:00
/**
* Get the Vnet unique identifier VNID , that matches the OID of the object
* @ return VNID Image identifier
*/
int get_vnid ( ) const
{
return oid ;
} ;
2009-07-09 18:34:34 +04:00
/**
* Gets the uid of the owner of the Virtual Network
* @ return uid
* */
int get_uid ( )
{
return uid ;
}
2010-06-10 18:26:27 +04:00
/**
* Returns true if the Virtual Network is public
* @ return true if the Virtual Network is public
*/
2010-07-09 14:10:05 +04:00
bool isPublic ( )
2010-06-10 18:26:27 +04:00
{
2010-06-25 14:08:05 +04:00
return ( public_vnet = = 1 ) ;
2010-06-10 18:26:27 +04:00
} ;
2010-07-01 21:04:52 +04:00
2010-06-29 20:32:55 +04:00
/**
* Publish or unpublish a virtual network
* @ param pub true to publish the image
* @ return 0 on success
*/
void publish ( bool pub )
{
if ( pub = = true )
{
public_vnet = 1 ;
}
else
{
public_vnet = 0 ;
}
}
2010-06-10 18:26:27 +04:00
2011-02-01 20:26:26 +03:00
/**
* Adds Leases to the virtual network .
* Only available for FIXED networks .
* @ param leases_template template in the form LEASES = [ IP = XX , MAC = XX ] .
* MAC is optional . For the moment , the template can only contain one
* LEASE definition .
* @ param error_msg If the action fails , this message contains
* the reason .
* @ return 0 on success
*/
int add_leases ( VirtualNetworkTemplate * leases_template , char * * error_msg ) ;
/**
* Removes Leases from the virtual network ; if they are not used .
* Only available for FIXED networks .
* @ param leases_template template in the form LEASES = [ IP = XX ] .
* For the moment , the template can only contain one LEASE definition .
* @ param error_msg If the action fails , this message contains
* the reason .
* @ return 0 on success
*/
int remove_leases ( VirtualNetworkTemplate * leases_template , char * * error_msg ) ;
2008-11-13 19:21:17 +03:00
/**
* Gets a new lease for a specific VM
* @ param vid VM identifier
* @ param _ip pointer to string for IP to be stored into
* @ param _mac pointer to string for MAC to be stored into
2009-03-06 15:10:15 +03:00
* @ param _bridge name of the physical bridge this VN binds to
2008-11-13 19:21:17 +03:00
* @ return 0 if success
*/
int get_lease ( int vid , string & _ip , string & _mac , string & _bridge )
{
_bridge = bridge ;
return leases - > get ( vid , _ip , _mac ) ;
} ;
2008-11-15 03:40:27 +03:00
/**
* Asks for an specific lease of the given virtual network
* @ param vid VM identifier
* @ param _ip the ip of the requested lease
* @ param _mac pointer to string for MAC to be stored into
2009-03-06 15:10:15 +03:00
* @ param _bridge name of the physical bridge this VN binds to
2008-11-15 03:40:27 +03:00
* @ return 0 if success
*/
int set_lease ( int vid , const string & _ip , string & _mac , string & _bridge )
{
_bridge = bridge ;
return leases - > set ( vid , _ip , _mac ) ;
} ;
2009-03-06 15:10:15 +03:00
2008-11-13 19:21:17 +03:00
/**
* Release previously given lease
* @ param _ip IP identifying the lease
* @ return 0 if success
*/
void release_lease ( const string & ip )
{
return leases - > release ( ip ) ;
} ;
2009-03-06 15:10:15 +03:00
2008-11-13 19:21:17 +03:00
/**
* Gets size of the network ( used + free )
* @ return number of hosts that can be fitted in this network
*/
unsigned int get_size ( )
{
return leases - > size ;
} ;
2009-03-06 15:10:15 +03:00
2008-11-13 19:21:17 +03:00
/**
* Function to write a Virtual Network in an output stream
*/
friend ostream & operator < < ( ostream & os , VirtualNetwork & vn ) ;
2009-03-06 15:10:15 +03:00
2009-07-09 18:34:34 +04:00
/**
* Function to print the VirtualNetwork object into a string in
* plain text
* @ param str the resulting string
2010-04-11 00:15:47 +04:00
* @ return a reference to the generated string
2009-07-09 18:34:34 +04:00
*/
string & to_str ( string & str ) const ;
/**
* Function to print the VirtualNetwork object into a string in
* XML format
* @ param xml the resulting XML string
2010-04-11 00:15:47 +04:00
* @ return a reference to the generated string
2009-07-09 18:34:34 +04:00
*/
string & to_xml ( string & xml ) const ;
2010-04-11 00:15:47 +04:00
2010-06-25 14:08:05 +04:00
/**
* Modifies the given nic attribute adding the following attributes :
* * IP : leased from network
* * MAC : leased from network
* * BRIDGE : for this virtual network
* @ param nic attribute for the VM template
* @ param vid of the VM getting the lease
* @ return 0 on success
*/
int nic_attribute ( VectorAttribute * nic , int vid ) ;
2010-03-06 02:15:03 +03:00
//------------------------------------------------------------------------
// Template
// ------------------------------------------------------------------------
/**
* Gets the values of a template attribute
* @ param name of the attribute
* @ param values of the attribute
* @ return the number of values
*/
int get_template_attribute (
string & name ,
vector < const Attribute * > & values ) const
{
2010-07-14 21:37:43 +04:00
return vn_template - > get ( name , values ) ;
2010-03-06 02:15:03 +03:00
} ;
/**
* Gets the values of a template attribute
* @ param name of the attribute
* @ param values of the attribute
* @ return the number of values
*/
int get_template_attribute (
const char * name ,
vector < const Attribute * > & values ) const
{
string str = name ;
2010-07-14 21:37:43 +04:00
return vn_template - > get ( str , values ) ;
2010-03-06 02:15:03 +03:00
} ;
/**
* Gets a string based VN attribute
* @ param name of the attribute
* @ param value of the attribute ( a string ) , will be " " if not defined
*/
void get_template_attribute (
const char * name ,
string & value ) const
{
string str = name ;
2010-07-14 21:37:43 +04:00
vn_template - > get ( str , value ) ;
2010-03-06 02:15:03 +03:00
}
/**
* Gets a string based VN attribute
* @ param name of the attribute
* @ param value of the attribute ( an int ) , will be 0 if not defined
*/
void get_template_attribute (
const char * name ,
int & value ) const
{
string str = name ;
2010-07-14 21:37:43 +04:00
vn_template - > get ( str , value ) ;
2010-03-06 02:15:03 +03:00
}
2010-06-25 16:34:44 +04:00
2008-11-13 19:21:17 +03:00
private :
// -------------------------------------------------------------------------
// Friends
// -------------------------------------------------------------------------
friend class VirtualNetworkPool ;
// *************************************************************************
// Virtual Network Private Attributes
// *************************************************************************
// -------------------------------------------------------------------------
// Identification variables
// -------------------------------------------------------------------------
/**
* Name of the Virtual Network
*/
2010-04-11 00:15:47 +04:00
string name ;
2009-03-06 15:10:15 +03:00
2008-11-13 19:21:17 +03:00
/**
* Owner of the Virtual Network
*/
2010-04-11 00:15:47 +04:00
int uid ;
2008-11-13 19:21:17 +03:00
// -------------------------------------------------------------------------
// Binded physical attributes
// -------------------------------------------------------------------------
2009-03-06 15:10:15 +03:00
2008-11-13 19:21:17 +03:00
/**
* Name of the bridge this VNW binds to
*/
2010-04-11 00:15:47 +04:00
string bridge ;
2008-11-13 19:21:17 +03:00
// -------------------------------------------------------------------------
// Virtual Network Description
// -------------------------------------------------------------------------
/**
* Holds the type of this network
*/
2010-04-11 00:15:47 +04:00
NetworkType type ;
2009-03-06 15:10:15 +03:00
2010-06-07 19:51:46 +04:00
/**
* Public scope of this Virtual Network
*/
2010-06-10 18:26:27 +04:00
int public_vnet ;
2010-06-07 19:51:46 +04:00
2008-11-13 19:21:17 +03:00
/**
* Pointer to leases class , can be fixed or ranged .
* Holds information on given ( and , optionally , possible ) leases
*/
2010-04-11 00:15:47 +04:00
Leases * leases ;
2009-03-06 15:10:15 +03:00
2008-11-13 19:21:17 +03:00
/**
* The Virtual Network template , holds the VNW attributes .
*/
2010-07-14 21:37:43 +04:00
VirtualNetworkTemplate * vn_template ;
2009-03-06 15:10:15 +03:00
2008-11-13 19:21:17 +03:00
// *************************************************************************
// DataBase implementation (Private)
// *************************************************************************
2010-05-03 15:13:47 +04:00
/**
* Execute an INSERT or REPLACE Sql query .
* @ param db The SQL DB
* @ param replace Execute an INSERT or a REPLACE
* @ return 0 on success
*/
int insert_replace ( SqlDB * db , bool replace ) ;
2008-11-13 19:21:17 +03:00
/**
* Bootstraps the database table ( s ) associated to the Virtual Network
*/
2010-04-11 00:15:47 +04:00
static void bootstrap ( SqlDB * db )
2008-11-13 19:21:17 +03:00
{
2010-04-11 00:15:47 +04:00
ostringstream oss_vnet ( VirtualNetwork : : db_bootstrap ) ;
ostringstream oss_lease ( Leases : : db_bootstrap ) ;
2009-03-06 15:10:15 +03:00
2010-04-11 00:15:47 +04:00
db - > exec ( oss_vnet ) ;
db - > exec ( oss_lease ) ;
2008-11-13 19:21:17 +03:00
} ;
2009-03-06 15:10:15 +03:00
2008-11-13 19:21:17 +03:00
/**
2010-04-11 00:15:47 +04:00
* Callback function to unmarshall a VNW object ( VirtualNetwork : : select )
2008-11-13 19:21:17 +03:00
* @ param num the number of columns read from the DB
2010-04-11 00:15:47 +04:00
* @ param names the column names
* @ param vaues the column values
2008-11-13 19:21:17 +03:00
* @ return 0 on success
*/
2010-04-11 00:15:47 +04:00
int select_cb ( void * nil , int num , char * * values , char * * names ) ;
2009-03-06 15:10:15 +03:00
2008-11-13 19:21:17 +03:00
/**
* Function to drop VN entry in vn_pool
* @ return 0 on success
*/
2010-04-11 00:15:47 +04:00
int vn_drop ( SqlDB * db ) ;
2008-11-13 19:21:17 +03:00
protected :
2009-03-06 15:10:15 +03:00
2008-11-13 19:21:17 +03:00
//**************************************************************************
// Constructor
//**************************************************************************
2009-03-06 15:10:15 +03:00
2010-07-14 21:37:43 +04:00
VirtualNetwork ( VirtualNetworkTemplate * _vn_template = 0 ) ;
2008-11-13 19:21:17 +03:00
~ VirtualNetwork ( ) ;
2009-03-06 15:10:15 +03:00
2008-11-13 19:21:17 +03:00
// *************************************************************************
// DataBase implementation
// *************************************************************************
enum ColNames
{
OID = 0 ,
UID = 1 ,
NAME = 2 ,
TYPE = 3 ,
BRIDGE = 4 ,
2010-06-10 18:26:27 +04:00
PUBLIC = 5 ,
2010-08-03 15:11:02 +04:00
TEMPLATE = 6 ,
LIMIT = 7
2008-11-13 19:21:17 +03:00
} ;
static const char * table ;
static const char * db_names ;
static const char * db_bootstrap ;
2009-03-06 15:10:15 +03:00
2008-11-13 19:21:17 +03:00
/**
* Reads the Virtual Network ( identified with its OID ) from the database .
* @ param db pointer to the db
* @ return 0 on success
*/
2010-04-11 00:15:47 +04:00
int select ( SqlDB * db ) ;
2008-11-13 19:21:17 +03:00
/**
* Writes the Virtual Network and its associated template and leases in the database .
* @ param db pointer to the db
* @ return 0 on success
*/
2010-08-05 21:28:28 +04:00
int insert ( SqlDB * db , string & error_str ) ;
2008-11-13 19:21:17 +03:00
/**
* Writes / updates the Virtual Network data fields in the database .
* @ param db pointer to the db
* @ return 0 on success
*/
2010-04-11 00:15:47 +04:00
int update ( SqlDB * db ) ;
2009-03-06 15:10:15 +03:00
2008-11-13 19:21:17 +03:00
/**
* Deletes a VNW from the database and all its associated information :
* - VNW template
* - given leases
* @ param db pointer to the db
* @ return 0 on success
*/
2010-04-11 00:15:47 +04:00
int drop ( SqlDB * db )
2009-03-06 15:10:15 +03:00
{
2010-04-11 00:15:47 +04:00
int rc ;
2009-03-06 15:10:15 +03:00
2010-08-03 15:11:02 +04:00
rc = leases - > drop ( db ) ;
2009-03-06 15:10:15 +03:00
2008-11-13 19:21:17 +03:00
rc + = vn_drop ( db ) ;
2009-03-06 15:10:15 +03:00
2010-04-11 00:15:47 +04:00
return rc ;
2008-11-13 19:21:17 +03:00
}
2009-07-09 18:34:34 +04:00
/**
2010-04-11 00:15:47 +04:00
* Dumps the contect of a VirtualNetwork object in the given stream using
* XML format
2009-07-09 18:34:34 +04:00
* @ param oss the output stream
2010-04-11 00:15:47 +04:00
* @ param num the number of columns read from the DB
* @ param names the column names
* @ param vaues the column values
2009-07-09 18:34:34 +04:00
* @ return 0 on success
*/
2010-04-11 00:15:47 +04:00
static int dump ( ostringstream & oss , int num , char * * values , char * * names ) ;
2008-11-13 19:21:17 +03:00
} ;
2010-05-03 15:13:47 +04:00
# endif /*VIRTUAL_NETWORK_H_*/