1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
|
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
*
* The Contents of this file are made available subject to the terms of
* the Sun Industry Standards Source License Version 1.2
*
* Sun Microsystems Inc., March, 2001
*
*
* Sun Industry Standards Source License Version 1.2
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.2 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2001 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
************************************************************************/
/*___INFO__MARK_END__*/
#include <strings.h>
#include <ctype.h>
#include "uti/sge_rmon.h"
#include "uti/sge_log.h"
#include "uti/config_file.h"
#include "uti/sge_signal.h"
#include "cull/cull_list.h"
#include "sgeobj/sge_object.h"
#include "sgeobj/sge_answer.h"
#include "sgeobj/sge_job.h"
#include "sgeobj/sge_cqueue.h"
#include "sgeobj/sge_attr.h"
#include "sgeobj/sge_qinstance.h"
#include "sgeobj/sge_utility.h"
#include "sgeobj/sge_ckpt.h"
#include "sgeobj/sge_str.h"
#include "sgeobj/msg_sgeobjlib.h"
#include "symbols.h"
#include "msg_common.h"
/****** sgeobj/ckpt/ckpt_is_referenced() **************************************
* NAME
* ckpt_is_referenced() -- Is a given CKPT referenced in other objects?
*
* SYNOPSIS
* bool ckpt_is_referenced(const lListElem *ckpt, lList **answer_list,
* const lList *master_job_list,
* const lList *master_cqueue_list)
*
* FUNCTION
* This function returns true if the given "ckpt" is referenced
* in at least one of the objects contained in "master_job_list" or
* "master_cqueue_list". If this is the case than
* a corresponding message will be added to the "answer_list".
*
* INPUTS
* const lListElem *ckpt - CK_Type object
* lList **answer_list - AN_Type list
* const lList *master_job_list - JB_Type list
* const lList *master_cqueue_list - CQ_Type list
*
* RESULT
* bool - true or false
******************************************************************************/
bool ckpt_is_referenced(const lListElem *ckpt, lList **answer_list,
const lList *master_job_list,
const lList *master_cqueue_list)
{
bool ret = false;
{
lListElem *job = NULL;
for_each(job, master_job_list) {
if (job_is_ckpt_referenced(job, ckpt)) {
const char *ckpt_name = lGetString(ckpt, CK_name);
u_long32 job_id = lGetUlong(job, JB_job_number);
answer_list_add_sprintf(answer_list, STATUS_EUNKNOWN,
ANSWER_QUALITY_INFO, MSG_CKPTREFINJOB_SU,
ckpt_name, sge_u32c(job_id));
ret = true;
break;
}
}
}
if (!ret) {
lListElem *queue = NULL, *ckl = NULL;
/* fix for bug 6422335
* check the cq configuration for ckpt references instead of qinstances
*/
const char *ckpt_name = lGetString(ckpt, CK_name);
for_each(queue, master_cqueue_list) {
for_each(ckl, lGetList(queue, CQ_ckpt_list)){
if (lGetSubStr(ckl, ST_name, ckpt_name, ASTRLIST_value)) {
answer_list_add_sprintf(answer_list, STATUS_EUNKNOWN,
ANSWER_QUALITY_INFO,
MSG_CKPTREFINQUEUE_SS,
ckpt_name, lGetString(queue, CQ_name));
ret = true;
break;
}
}
}
}
return ret;
}
/****** sgeobj/ckpt/ckpt_list_locate() ***************************************
* NAME
* ckpt_list_locate -- find a ckpt object in a list
*
* SYNOPSIS
* lListElem *ckpt_list_locate(lList *ckpt_list, const char *ckpt_name)
*
* FUNCTION
* This function will return a ckpt object by name if it exists.
*
*
* INPUTS
* lList *ckpt_list - CK_Type object
* const char *ckpt_name - name of the ckpt object.
*
* RESULT
* NULL - ckpt object with name "ckpt_name" does not exist
* !NULL - pointer to the cull element (CK_Type)
******************************************************************************/
lListElem *ckpt_list_locate(const lList *ckpt_list, const char *ckpt_name)
{
return lGetElemStr(ckpt_list, CK_name, ckpt_name);
}
/****** sgeobj/ckpt/sge_parse_checkpoint_attr() *******************************
* NAME
* sge_parse_checkpoint_attr() -- make "when" bitmask from string
*
* SYNOPSIS
* int sge_parse_checkpoint_attr(const char *attr_str)
*
* FUNCTION
* Parse checkpoint "when" string and return a bitmask.
*
* INPUTS
* const char *attr_str - when string
*
* RESULT
* int - bitmask of checkpoint specifers
* 0 if attr_str == NULL or nothing set or value
* may be a time value
*
* NOTES
* MT-NOTE: sge_parse_checkpoint_attr() is MT safe
*******************************************************************************/
int sge_parse_checkpoint_attr(const char *attr_str)
{
int opr;
if (attr_str == NULL) {
return 0;
}
/* May be it's a time value */
if (isdigit((int) *attr_str) || (*attr_str == ':')) {
return 0;
}
opr = 0;
while (*attr_str) {
if (*attr_str == CHECKPOINT_AT_MINIMUM_INTERVAL_SYM)
opr = opr | CHECKPOINT_AT_MINIMUM_INTERVAL;
else if (*attr_str == CHECKPOINT_AT_SHUTDOWN_SYM)
opr = opr | CHECKPOINT_AT_SHUTDOWN;
else if (*attr_str == CHECKPOINT_SUSPEND_SYM)
opr = opr | CHECKPOINT_SUSPEND;
else if (*attr_str == NO_CHECKPOINT_SYM)
opr = opr | NO_CHECKPOINT;
else if (*attr_str == CHECKPOINT_AT_AUTO_RES_SYM)
opr = opr | CHECKPOINT_AT_AUTO_RES;
else {
opr = -1;
break;
}
attr_str++;
}
return opr;
}
/****** sgeobj/ckpt/ckpt_validate() ******************************************
* NAME
* ckpt_validate -- validate all ckpt interface parameters
*
* SYNOPSIS
* int ckpt_validate(lListElem *ep, lList **alpp);
*
* FUNCTION
* This function will test all ckpt interface parameters.
* If all are valid then it will return successfull.
*
* INPUTS
* ep - element which sould be verified.
* answer - answer list where the function stored error messages
*
* RESULT
* [answer] - error messages will be added to this list
* STATUS_OK - success
* STATUS_EUNKNOWN or STATUS_EEXIST - error
*
* NOTES
* MT-NOTE: ckpt_validate() is not MT safe
******************************************************************************/
int ckpt_validate(const lListElem *this_elem, lList **alpp)
{
static const char* ckpt_interfaces[] = {
"USERDEFINED",
"HIBERNATOR",
"TRANSPARENT",
"APPLICATION-LEVEL",
"CPR"
};
static struct attr {
int nm;
char *text;
} ckpt_commands[] = {
{ CK_ckpt_command, "ckpt_command" },
{ CK_migr_command, "migr_command" },
{ CK_rest_command, "restart_command"},
{ CK_clean_command, "clean_command"},
{ NoName, NULL} };
unsigned i;
int found = 0;
const char *s, *interface;
DENTER(TOP_LAYER, "ckpt_validate");
if (!this_elem) {
CRITICAL((SGE_EVENT, MSG_SGETEXT_NULLPTRPASSED_S, SGE_FUNC));
answer_list_add(alpp, SGE_EVENT, STATUS_EUNKNOWN, ANSWER_QUALITY_ERROR);
DEXIT;
return STATUS_EUNKNOWN;
}
/* -------- CK_name */
if (verify_str_key(
alpp, lGetString(this_elem, CK_name),
MAX_VERIFY_STRING, "checkpoint interface", KEY_TABLE) != STATUS_OK) {
DEXIT;
return STATUS_EUNKNOWN;
}
/*
* check if ckpt obj can be added
* check allowed interfaces and license
*/
interface = lGetString(this_elem, CK_interface);
found = 0;
/* handle NULL pointer for interface name */
if (interface == NULL) {
interface = "<null>";
} else {
for (i=0; i < (sizeof(ckpt_interfaces)/sizeof(char*)); i++) {
if (!strcasecmp(interface, ckpt_interfaces[i])) {
found = 1;
break;
}
}
}
if (!found) {
ERROR((SGE_EVENT, MSG_SGETEXT_NO_INTERFACE_S, interface));
answer_list_add(alpp, SGE_EVENT,
STATUS_ESEMANTIC, ANSWER_QUALITY_ERROR);
DEXIT;
return STATUS_EEXIST;
}
for (i = 0; ckpt_commands[i].nm != NoName; i++) {
if (replace_params(lGetString(this_elem, ckpt_commands[i].nm),
NULL, 0, ckpt_variables)) {
ERROR((SGE_EVENT, MSG_OBJ_CKPTENV_SSS,
ckpt_commands[i].text, lGetString(this_elem, CK_name), err_msg));
answer_list_add(alpp, SGE_EVENT, STATUS_EEXIST, ANSWER_QUALITY_ERROR);
DEXIT;
return STATUS_EEXIST;
}
}
/* -------- CK_signal */
if ((s=lGetString(this_elem, CK_signal)) &&
strcasecmp(s, "none") &&
sge_sys_str2signal(s)==-1) {
ERROR((SGE_EVENT, MSG_CKPT_XISNOTASIGNALSTRING_S , s));
answer_list_add(alpp, SGE_EVENT, STATUS_EEXIST, ANSWER_QUALITY_ERROR);
DEXIT;
return STATUS_EEXIST;
}
DEXIT;
return STATUS_OK;
}
/****** sgeobj/ckpt/ckpt_list_get_master_list() *******************************
* NAME
* ckpt_list_get_master_list() -- Return pointer to master ckpt list
*
* SYNOPSIS
* lList ** ckpt_list_get_master_list(void)
*
* FUNCTION
* Return pointer to master ckpt list
*
* RESULT
* lList ** - master ckpt list
*******************************************************************************/
lList **
ckpt_list_get_master_list(void)
{
return object_type_get_master_list(SGE_TYPE_CKPT);
}
/****** sgeobj/ckpt/ckpt_list_do_all_exist() **********************************
* NAME
* ckpt_list_do_all_exist() -- Do all ckpt's exist?
*
* SYNOPSIS
* bool
* ckpt_list_do_all_exist(const lList *ckpt_list,
* lList **answer_list,
* const lList *ckpt_ref_list)
*
* FUNCTION
* Test if the checkpointing objects whose name is contained in
* "ckpt_ref_list" is contained in "ckpt_list".
*
* INPUTS
* const lList *ckpt_list - CK_Type list
* lList **answer_list - AN_Type list
* const lList *ckpt_ref_list - ST_Type list containing ckpt names
*
* RESULT
* bool - true if all ckpt objects exist
*******************************************************************************/
bool
ckpt_list_do_all_exist(const lList *ckpt_list, lList **answer_list,
const lList *ckpt_ref_list)
{
bool ret = true;
lListElem *ckpt_ref_elem = NULL;
DENTER(TOP_LAYER, "ckpt_list_do_all_exist");
for_each(ckpt_ref_elem, ckpt_ref_list) {
const char *ckpt_ref_string = lGetString(ckpt_ref_elem, ST_name);
if (ckpt_list_locate(ckpt_list, ckpt_ref_string) == NULL) {
answer_list_add_sprintf(answer_list, STATUS_EEXIST,
ANSWER_QUALITY_ERROR,
MSG_CKPTREFDOESNOTEXIST_S, ckpt_ref_string);
ret = false;
break;
}
}
DEXIT;
return ret;
}
/****** src/sge_generic_ckpt() **********************************************
*
* NAME
* sge_generic_ckpt -- build up a generic ckpt object
*
* SYNOPSIS
* lListElem* sge_generic_ckpt(
* char *ckpt_name
* );
*
* FUNCTION
* build up a generic ckpt object
*
* INPUTS
* ckpt_name - name used for the CK_name attribute of the generic
* pe object. If NULL then "template" is the default name.
*
* RESULT
* !NULL - Pointer to a new CULL object of type CK_Type
* NULL - Error
*
* EXAMPLE
*
* NOTES
*
* BUGS
*
* SEE ALSO
*
*****************************************************************************/
lListElem* sge_generic_ckpt(char *ckpt_name)
{
lListElem *ep;
DENTER(TOP_LAYER, "sge_generic_ckpt");
ep = lCreateElem(CK_Type);
if (ckpt_name)
lSetString(ep, CK_name, ckpt_name);
else
lSetString(ep, CK_name, "template");
lSetString(ep, CK_interface, "userdefined");
lSetString(ep, CK_ckpt_command, "none");
lSetString(ep, CK_migr_command, "none");
lSetString(ep, CK_rest_command, "none");
lSetString(ep, CK_clean_command, "none");
lSetString(ep, CK_ckpt_dir, "/tmp");
lSetString(ep, CK_when, "sx");
lSetString(ep, CK_signal, "none");
lSetUlong(ep, CK_job_pid, 0);
DEXIT;
return ep;
}
|