|  | /* | 
|  | *  Copyright (C) 2000-2007 SWsoft. All rights reserved. | 
|  | * | 
|  | *  This program is free software; you can redistribute it and/or modify | 
|  | *  it under the terms of the GNU General Public License as published by | 
|  | *  the Free Software Foundation; either version 2 of the License, or | 
|  | *  (at your option) any later version. | 
|  | * | 
|  | *  This program is distributed in the hope that it will be useful, | 
|  | *  but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | *  GNU General Public License for more details. | 
|  | * | 
|  | *  You should have received a copy of the GNU General Public License | 
|  | *  along with this program; if not, write to the Free Software | 
|  | *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | 
|  | */ | 
|  | #ifndef	_RES_H_ | 
|  | #define _RES_H_ | 
|  |  | 
|  | #include "types.h" | 
|  | #include "net.h" | 
|  | #include "cpu.h" | 
|  | #include "dev.h" | 
|  | #include "ub.h" | 
|  | #include "cap.h" | 
|  | #include "quota.h" | 
|  | #include "fs.h" | 
|  | #include "dist.h" | 
|  | #include "cpt.h" | 
|  | #include "meminfo.h" | 
|  | #include "veth.h" | 
|  |  | 
|  | typedef struct { | 
|  | envid_t veid; | 
|  | unsigned long ipt_mask; | 
|  |  | 
|  | /* | 
|  | * features_known is the set of features that are present | 
|  | * in config file. this make vzctl work with new kernel | 
|  | * that supports features vzctl still doesn't know yet. | 
|  | * features that kernel support and that are not present | 
|  | * in this mask kernel sets to default values. | 
|  | */ | 
|  | unsigned long long features_mask; | 
|  | unsigned long long features_known; | 
|  | } env_param; | 
|  |  | 
|  | typedef struct { | 
|  | list_head_t userpw; | 
|  | list_head_t nameserver; | 
|  | list_head_t searchdomain; | 
|  | char *hostname; | 
|  | int wait; | 
|  | } misc_param; | 
|  |  | 
|  | struct mod_action; | 
|  |  | 
|  | typedef struct name_param { | 
|  | int veid; | 
|  | char *name; | 
|  | } name_param; | 
|  |  | 
|  | /** Data structure for VE resources. | 
|  | */ | 
|  | typedef struct vps_res { | 
|  | fs_param fs;		/**< file system parameters. */ | 
|  | tmpl_param tmpl;	/**< template parameters. */ | 
|  | env_param env;		/**< environment parameters. */ | 
|  | net_param net;		/**< network parameters. */ | 
|  | cpu_param cpu;		/**< cpu parameters. */ | 
|  | dev_param dev;		/**< device parameters. */ | 
|  | ub_param ub;		/**< UBC aprameters. */ | 
|  | cap_param cap;		/**< capability parameters. */ | 
|  | dq_param dq;		/**< disk quota parameters. */ | 
|  | cpt_param cpt;		/**< chekpointing parameters */ | 
|  | meminfo_param meminfo; | 
|  | veth_param veth;	/**< veth parameters */ | 
|  | misc_param misc; | 
|  | name_param name; | 
|  | } vps_res; | 
|  |  | 
|  | enum { | 
|  | APPCONF_MAP_NAME    = 0x01, | 
|  | }; | 
|  |  | 
|  | typedef struct { | 
|  | int save; | 
|  | int fast_kill; | 
|  | int skip_lock; | 
|  | int skip_setup; | 
|  | int start_disabled; | 
|  | int start_force; | 
|  | int setmode; | 
|  | int onboot; | 
|  | char *config; | 
|  | char *origin_sample; | 
|  | char *lockdir; | 
|  | char *apply_cfg; | 
|  | int apply_cfg_map; | 
|  | int reset_ub; | 
|  | } vps_opt; | 
|  |  | 
|  | struct log_s { | 
|  | char *log_file; | 
|  | int level; | 
|  | int enable; | 
|  | int *verbose; | 
|  | }; | 
|  |  | 
|  | struct vps_param { | 
|  | struct log_s log; | 
|  | vps_res res; | 
|  | vps_res del_res; | 
|  | vps_opt opt; | 
|  | struct mod_action *mod; | 
|  | struct vps_param *g_param; | 
|  | }; | 
|  | typedef struct vps_param vps_param; | 
|  |  | 
|  | /** Setting VE resources. | 
|  | * | 
|  | * @param h		VE handler. | 
|  | * @param veid		VE id. | 
|  | * @param actions	distribution action scripts. | 
|  | * @param fs		VE FS parameters | 
|  | * @param param		VE parameters. | 
|  | * @param vps_state	VE state. | 
|  | * @param action	external modules. | 
|  | * @return		0 on success. | 
|  | */ | 
|  | int vps_setup_res(vps_handler *h, envid_t veid, dist_actions *actions, | 
|  | fs_param *fs, vps_param *param, int vps_state, skipFlags skip, | 
|  | struct mod_action *action); | 
|  | int vps_cleanup_res(vps_handler *h, envid_t veid, vps_param *param, | 
|  | int vps_state); | 
|  | int setup_resource_management(vps_handler *h, envid_t veid, vps_res *res); | 
|  | int need_configure(vps_res *res); | 
|  |  | 
|  | #endif |