2011-03-22 20:21:09 +03:00
/* -------------------------------------------------------------------------- */
2021-02-09 18:07:56 +03:00
/* Copyright 2002-2021, OpenNebula Project, OpenNebula Systems */
2011-03-22 20:21:09 +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 IMAGE_MANAGER_H_
# define IMAGE_MANAGER_H_
2020-06-29 13:14:00 +03:00
# include "DriverManager.h"
# include "ProtocolMessages.h"
2020-07-24 17:00:59 +03:00
# include "Listener.h"
2011-03-22 20:21:09 +03:00
2020-06-29 13:14:00 +03:00
class DatastorePool ;
2011-03-22 20:21:09 +03:00
class Image ;
2020-06-29 13:14:00 +03:00
class ImagePool ;
2015-05-30 14:33:06 +03:00
class Snapshots ;
2012-06-01 21:18:49 +04:00
class Template ;
2011-03-22 20:21:09 +03:00
2020-06-29 13:14:00 +03:00
2020-07-24 17:00:59 +03:00
class ImageManager : public DriverManager < Driver < image_msg_t > >
2011-03-22 20:21:09 +03:00
{
public :
2013-06-27 03:34:31 +04:00
ImageManager ( time_t _timer_period ,
time_t _monitor_period ,
ImagePool * _ipool ,
2013-06-27 04:30:49 +04:00
DatastorePool * _dspool ,
2020-06-29 13:14:00 +03:00
const std : : string & _mads_location ,
2019-07-17 23:11:02 +03:00
int _monitor_vm_disk ) :
2020-06-29 13:14:00 +03:00
DriverManager ( _mads_location ) ,
2020-07-24 17:00:59 +03:00
timer_thread ( _timer_period , [ this ] ( ) { timer_action ( ) ; } ) ,
2020-10-29 19:49:50 +03:00
timer_period ( _timer_period ) ,
2013-06-27 03:34:31 +04:00
monitor_period ( _monitor_period ) ,
2019-07-17 23:11:02 +03:00
monitor_vm_disk ( _monitor_vm_disk ) ,
2013-06-27 04:30:49 +04:00
ipool ( _ipool ) ,
dspool ( _dspool )
2011-03-22 20:21:09 +03:00
{
2020-07-24 17:00:59 +03:00
}
2011-03-22 20:21:09 +03:00
2020-07-24 17:00:59 +03:00
~ ImageManager ( ) = default ;
2011-03-22 20:21:09 +03:00
/**
2012-10-25 03:32:35 +04:00
* This functions starts the associated listener thread , and creates a
2011-03-22 20:21:09 +03:00
* new thread for the Information Manager . This thread will wait in
* an action loop till it receives ACTION_FINALIZE .
* @ return 0 on success .
*/
int start ( ) ;
2020-07-24 17:00:59 +03:00
void finalize ( )
2011-03-22 20:21:09 +03:00
{
2020-07-24 17:00:59 +03:00
timer_thread . stop ( ) ;
stop ( drivers_timeout ) ;
2011-03-22 20:21:09 +03:00
} ;
/**
2020-07-24 17:00:59 +03:00
* Loads the Image Driver defined in configuration file
* @ param _mads configuration of drivers
2011-03-22 20:21:09 +03:00
*/
2020-07-24 17:00:59 +03:00
int load_drivers ( const std : : vector < const VectorAttribute * > & _mads ) ;
2011-03-22 20:21:09 +03:00
/**************************************************************************/
/* Image Manager Actions */
/* Operates in a semi-sinchronous mode. Operations will be granted or not */
/* , when needed the image repository drivers will be used to perform FS */
/* operations in the background. */
/**************************************************************************/
/**
2011-03-23 02:14:27 +03:00
* Try to acquire an image from the repository for a VM .
* @ param image_id id of image
2012-02-25 00:13:56 +04:00
* @ param error string describing the error
2018-01-25 14:04:35 +03:00
* @ param attach true if attaching the image to a VM
2011-03-23 02:14:27 +03:00
* @ return pointer to the image or 0 if could not be acquired
2011-03-22 20:21:09 +03:00
*/
2020-09-10 10:08:29 +03:00
std : : unique_ptr < Image > acquire_image ( int vm_id , int image_id ,
bool attach , std : : string & error ) ;
2012-10-25 03:32:35 +04:00
2011-11-12 06:20:59 +04:00
/**
* Try to acquire an image from the repository for a VM .
* @ param name of the image
* @ param id of owner
2012-02-25 00:13:56 +04:00
* @ param error string describing the error
2018-01-25 14:04:35 +03:00
* @ param attach true if attaching the image to a VM
2011-11-12 06:20:59 +04:00
* @ return pointer to the image or 0 if could not be acquired
*/
2020-09-10 10:08:29 +03:00
std : : unique_ptr < Image > acquire_image ( int vm_id , const std : : string & name ,
2020-06-29 13:14:00 +03:00
int uid , bool attach , std : : string & error ) ;
2011-03-22 20:21:09 +03:00
2011-09-15 21:06:16 +04:00
/**
* Releases an image and triggers any needed operations in the repo
* @ param iid image id of the image to be released
2012-03-06 03:18:01 +04:00
* @ param failed the associated VM releasing the images is FAILED
2011-04-07 04:01:40 +04:00
*/
2012-10-25 03:32:35 +04:00
void release_image ( int vm_id , int iid , bool failed ) ;
2011-04-07 04:01:40 +04:00
2012-10-25 03:32:35 +04:00
/**
2012-06-12 20:59:23 +04:00
* Closes any cloning operation on the image , updating the state if needed
2015-12-20 00:35:09 +03:00
* @ param iid image id of the image to that was being cloned
2016-03-04 18:31:10 +03:00
* @ param ot Object type , image or market app
* @ param clone_oid the cloned resource id
2012-06-12 20:59:23 +04:00
*/
2016-03-04 18:31:10 +03:00
void release_cloning_resource ( int iid , PoolObjectSQL : : ObjectType ot , int clone_oid ) ;
/**
* Closes any cloning operation on the image , updating the state if needed
* @ param iid image id of the image to that was being cloned
* @ param clone_img_id the cloned image id
*/
void release_cloning_image ( int iid , int clone_img_id )
{
release_cloning_resource ( iid , PoolObjectSQL : : IMAGE , clone_img_id ) ;
} ;
/**
* Closes any cloning operation on the image , updating the state if needed
* @ param iid image id of the image to that was being cloned
* @ param clone_oid the cloned marketplace app id
*/
void release_cloning_app ( int iid , int clone_oid )
{
release_cloning_resource ( iid , PoolObjectSQL : : MARKETPLACEAPP , clone_oid ) ;
} ;
2012-06-12 20:59:23 +04:00
2011-03-22 20:21:09 +03:00
/**
* Enables the image
2013-03-12 20:32:17 +04:00
* @ param iid Image id
2011-03-22 20:21:09 +03:00
* @ param to_enable true will enable the image .
2013-03-12 20:32:17 +04:00
* @ param error_str Error reason , if any
2011-03-22 20:21:09 +03:00
* @ return 0 on success
*/
2020-06-29 13:14:00 +03:00
int enable_image ( int iid , bool to_enable , std : : string & error_str ) ;
2011-03-22 20:21:09 +03:00
/**
2011-03-25 02:11:10 +03:00
* Adds a new image to the repository copying or creating it as needed
2012-02-15 03:19:42 +04:00
* @ param img pointer to the image
* @ param ds_data data of the associated datastore in XML format
2016-01-26 22:46:45 +03:00
* @ param extra_data data to be sent to the driver
2012-10-19 14:52:57 +04:00
* @ param error Error reason
*
2011-03-25 02:11:10 +03:00
* @ return 0 on success
2011-03-22 20:21:09 +03:00
*/
2016-01-26 22:46:45 +03:00
int register_image ( int iid ,
2020-06-29 13:14:00 +03:00
const std : : string & ds_data ,
const std : : string & extra_data ,
std : : string & error ) ;
2012-10-19 14:52:57 +04:00
/**
* Checks if an image is ready to be cloned
*
* @ param cloning_id ID of the image to be cloned
* @ param oss_error Error reason , if any
*
* @ return 0 if the image can be cloned , - 1 otherwise
*/
2020-06-29 13:14:00 +03:00
int can_clone_image ( int cloning_id , std : : ostringstream & oss_error ) ;
2015-12-20 00:35:09 +03:00
/**
* Sets the state to CLONE for the given image
2016-03-04 18:31:10 +03:00
* @ param ot Object type , image or market app
* @ param new_id for the target image or market app
* @ param clonning_id the ID of the image to be cloned
* @ param error if any
* @ return 0 on success
*/
int set_clone_state ( PoolObjectSQL : : ObjectType ot , int new_id ,
int cloning_id , std : : string & error ) ;
/**
* Sets the state to CLONE for the given image
* @ param new_id for the target image
2015-12-20 00:35:09 +03:00
* @ param clonning_id the ID of the image to be cloned
* @ param error if any
2016-03-04 18:31:10 +03:00
* @ return 0 on success
2015-12-20 00:35:09 +03:00
*/
2016-03-04 18:31:10 +03:00
int set_img_clone_state ( int new_id , int cloning_id , std : : string & error )
{
return set_clone_state ( PoolObjectSQL : : IMAGE , new_id , cloning_id , error ) ;
} ;
/**
* Sets the state to CLONE for the given image
* @ param new_id for the target market app
* @ param clonning_id the ID of the image to be cloned
* @ param error if any
* @ return 0 on success
*/
int set_app_clone_state ( int new_id , int cloning_id , std : : string & error )
{
return set_clone_state ( PoolObjectSQL : : MARKETPLACEAPP , new_id , cloning_id , error ) ;
} ;
2011-03-22 20:21:09 +03:00
2012-06-13 02:32:01 +04:00
/**
* Clone an existing image to the repository
* @ param new_id of the new image
* @ param cloning_id of the image to be cloned
* @ param ds_data data of the associated datastore in XML format
2016-01-26 22:46:45 +03:00
* @ param extra_data data to be sent to the driver
2012-06-13 02:32:01 +04:00
* @ param error describing the error
* @ return 0 on success
*/
2012-10-25 03:32:35 +04:00
int clone_image ( int new_id ,
2012-06-13 02:32:01 +04:00
int cloning_id ,
2020-06-29 13:14:00 +03:00
const std : : string & ds_data ,
const std : : string & extra_data ,
std : : string & error ) ;
2011-03-25 02:11:10 +03:00
/**
2015-04-20 14:03:16 +03:00
* Deletes an image from the repository and the DB . The Datastore image list
* is also updated
2011-03-25 02:11:10 +03:00
* @ param iid id of image
2013-03-12 20:32:17 +04:00
* @ param error_str Error reason , if any
2011-03-25 02:11:10 +03:00
* @ return 0 on success
*/
2020-06-29 13:14:00 +03:00
int delete_image ( int iid , std : : string & error_str ) ;
2011-03-25 02:11:10 +03:00
2012-06-01 14:02:15 +04:00
/**
* Gets the size of an image by calling the STAT action of the associated
* datastore driver .
*
* @ param img_tmpl the template for the image
* @ param ds_tmpl the template for the datastore
2012-10-25 03:32:35 +04:00
* @ oaram result with a string representation of the size or if an error
2012-06-01 14:02:15 +04:00
* occurred describing the error .
* @ result 0 on success
*/
2020-06-29 13:14:00 +03:00
int stat_image ( Template * img_tmpl ,
const std : : string & ds_tmpl ,
std : : string & res ) ;
2012-06-01 14:02:15 +04:00
2013-07-05 23:14:34 +04:00
/**
* Trigger a monitor action for the datastore .
* @ param ds_id id of the datastore to monitor
*/
void monitor_datastore ( int ds_id ) ;
2015-05-30 14:33:06 +03:00
/**
* Set the snapshots for the given image . The image MUST be persistent
* and of type OS or DATABLOCK .
* @ param iid id of image
* @ param s snapshot list
*/
2015-07-01 18:56:50 +03:00
void set_image_snapshots ( int iid , const Snapshots & s ) ;
2015-05-30 14:33:06 +03:00
2018-03-19 19:03:09 +03:00
/**
* Clear the snapshots of an image by setting an empty set .
* @ param iid id of image
*/
void clear_image_snapshots ( int iid ) ;
2016-12-17 04:49:14 +03:00
/**
* Set the size for the given image . The image MUST be persistent
* and of type OS or DATABLOCK .
* @ param iid id of image
* @ param size
*/
void set_image_size ( int iid , long long size ) ;
2015-06-05 04:18:40 +03:00
/**
* Deletes the snapshot of an image
2015-06-05 05:45:20 +03:00
* @ param iid id of image
* @ param sid id of the snapshot
* @ param error_str Error reason , if any
* @ return 0 on success
2015-06-05 04:18:40 +03:00
*/
2020-06-29 13:14:00 +03:00
int delete_snapshot ( int iid , int sid , std : : string & error ) ;
2015-06-05 04:18:40 +03:00
2015-06-05 05:45:20 +03:00
/**
* Reverts image state to a previous snapshot
* @ param iid id of image
* @ param sid id of the snapshot
* @ param error_str Error reason , if any
* @ return 0 on success
*/
2020-06-29 13:14:00 +03:00
int revert_snapshot ( int iid , int sid , std : : string & error ) ;
2015-06-05 05:45:20 +03:00
2015-06-05 17:01:06 +03:00
/**
* Flattens ths snapshot by commiting changes to base image .
* @ param iid id of image
* @ param sid id of the snapshot
* @ param error_str Error reason , if any
* @ return 0 on success
*/
2020-06-29 13:14:00 +03:00
int flatten_snapshot ( int iid , int sid , std : : string & error ) ;
2015-06-05 17:01:06 +03:00
2011-03-22 20:21:09 +03:00
private :
/**
* Generic name for the Image driver
*/
2020-06-29 13:14:00 +03:00
static const char * image_driver_name ;
2012-10-25 03:32:35 +04:00
2011-03-22 20:21:09 +03:00
/**
2020-07-24 17:00:59 +03:00
* Timer action async execution
2011-03-22 20:21:09 +03:00
*/
2020-07-24 17:00:59 +03:00
Timer timer_thread ;
2011-03-22 20:21:09 +03:00
2013-06-27 03:34:31 +04:00
/**
* Timer period for the Image Manager .
*/
time_t timer_period ;
/**
* Datastore Monitor Interval
*/
time_t monitor_period ;
2019-07-17 23:11:02 +03:00
/**
* Monitor Virtual Machine disk usage every X datastore monitoring .
* 0 to disable
*/
int monitor_vm_disk ;
2011-03-22 20:21:09 +03:00
/**
* Pointer to the Image Pool to access VMs
*/
ImagePool * ipool ;
2012-10-25 03:32:35 +04:00
2013-06-27 04:30:49 +04:00
/**
2013-07-12 18:51:36 +04:00
* Pointer to the DS Pool
2013-06-27 04:30:49 +04:00
*/
DatastorePool * dspool ;
2011-03-22 20:21:09 +03:00
/**
2020-07-24 17:00:59 +03:00
*
2011-03-22 20:21:09 +03:00
*/
2020-07-24 17:00:59 +03:00
static const int drivers_timeout = 10 ;
2011-03-22 20:21:09 +03:00
/**
* Returns a pointer to the Image Manager Driver used for the Repository
* @ return the Image Manager driver or 0 in not found
*/
2020-07-05 23:01:32 +03:00
const Driver < image_msg_t > * get ( ) const
2011-03-22 20:21:09 +03:00
{
2020-06-29 13:14:00 +03:00
return DriverManager : : get_driver ( image_driver_name ) ;
2011-03-22 20:21:09 +03:00
} ;
2012-10-25 03:32:35 +04:00
2011-03-22 20:21:09 +03:00
/**
* The action function executed when an action is triggered .
* @ param action the name of the action
* @ param arg arguments for the action function
*/
2020-06-29 13:14:00 +03:00
void do_action ( const std : : string & action , void * arg ) ;
2011-03-23 02:14:27 +03:00
/**
* Acquires an image updating its state .
* @ param image pointer to image , it should be locked
2018-01-25 14:04:35 +03:00
* @ param attach true if attaching the image to a VM
2011-03-23 02:14:27 +03:00
* @ return 0 on success
*/
2020-06-29 13:14:00 +03:00
int acquire_image ( int vm_id , Image * img , bool attach , std : : string & error ) ;
2011-03-24 18:37:15 +03:00
/**
* Moves a file to an image in the repository
* @ param image to be updated ( it ' s source attribute )
2012-10-25 03:32:35 +04:00
* @ param source path of the disk file
2011-03-24 18:37:15 +03:00
*/
2020-06-29 13:14:00 +03:00
void move_image ( Image * img , const std : : string & source ) ;
2012-02-17 20:28:31 +04:00
/**
* Formats an XML message for the MAD
*
* @ param img_data Image XML representation
* @ param ds_data Datastore XML representation
2015-11-04 19:31:56 +03:00
* @ param extra_data additional XML formatted data for the driver
2012-02-17 20:28:31 +04:00
* @ return the XML message
*/
2020-07-05 23:01:32 +03:00
static std : : string format_message ( const std : : string & img_data ,
2020-06-29 13:14:00 +03:00
const std : : string & ds_data ,
const std : : string & extra_data ) ;
// -------------------------------------------------------------------------
// Protocol implementation, procesing messages from driver
// -------------------------------------------------------------------------
/**
*
*/
2020-07-02 23:42:10 +03:00
static void _undefined ( std : : unique_ptr < image_msg_t > msg ) ;
2020-06-29 13:14:00 +03:00
/**
*
*/
2020-07-02 23:42:10 +03:00
void _stat ( std : : unique_ptr < image_msg_t > msg ) ;
2020-06-29 13:14:00 +03:00
/**
*
*/
2020-07-02 23:42:10 +03:00
void _cp ( std : : unique_ptr < image_msg_t > msg ) ;
2020-06-29 13:14:00 +03:00
/**
*
*/
2020-07-02 23:42:10 +03:00
void _clone ( std : : unique_ptr < image_msg_t > msg ) ;
2020-06-29 13:14:00 +03:00
/**
*
*/
2020-07-02 23:42:10 +03:00
void _mkfs ( std : : unique_ptr < image_msg_t > msg ) ;
2020-06-29 13:14:00 +03:00
/**
*
*/
2020-07-02 23:42:10 +03:00
void _rm ( std : : unique_ptr < image_msg_t > msg ) ;
2020-06-29 13:14:00 +03:00
/**
*
*/
2020-07-02 23:42:10 +03:00
void _monitor ( std : : unique_ptr < image_msg_t > msg ) ;
2020-06-29 13:14:00 +03:00
/**
*
*/
2020-07-02 23:42:10 +03:00
void _snap_delete ( std : : unique_ptr < image_msg_t > msg ) ;
2020-06-29 13:14:00 +03:00
/**
*
*/
2020-07-02 23:42:10 +03:00
void _snap_revert ( std : : unique_ptr < image_msg_t > msg ) ;
2020-06-29 13:14:00 +03:00
/**
*
*/
2020-07-02 23:42:10 +03:00
void _snap_flatten ( std : : unique_ptr < image_msg_t > msg ) ;
2020-06-29 13:14:00 +03:00
/**
*
*/
2020-07-02 23:42:10 +03:00
static void _log ( std : : unique_ptr < image_msg_t > msg ) ;
2013-06-27 03:34:31 +04:00
/**
* This function is executed periodically to monitor Datastores .
*/
2020-07-24 17:00:59 +03:00
void timer_action ( ) ;
2017-02-03 16:19:15 +03:00
2020-06-29 13:14:00 +03:00
2011-03-22 20:21:09 +03:00
} ;
# endif /*IMAGE_MANAGER_H*/