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 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
|
/*___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 <string.h>
#include "uti/sge_rmon.h"
#include "uti/sge_string.h"
#include "uti/sge_log.h"
#include "comm/commlib.h"
#include "sgeobj/sge_qinstance.h"
#include "sgeobj/sge_answer.h"
#include "sgeobj/sge_centry.h"
#include "sgeobj/sge_load.h"
#include "sgeobj/sge_str.h"
#include "sgeobj/sge_object.h"
#include "sgeobj/sge_conf.h"
#include "sgeobj/sge_host.h"
#include "sgeobj/sge_cqueue.h"
#include "sgeobj/sge_hgroup.h"
#include "sgeobj/sge_href.h"
#include "sgeobj/msg_sgeobjlib.h"
#include "sge.h"
#include "msg_common.h"
lListElem *
host_list_locate(const lList *host_list, const char *hostname)
{
lListElem *ret = NULL;
DENTER(TOP_LAYER, "host_list_locate");
if (host_list != NULL) {
if (hostname != NULL) {
const lListElem *element = lFirst(host_list);
if (element != NULL) {
int nm = NoName;
if (object_has_type(element, EH_Type)) {
nm = object_get_primary_key(EH_Type);
} else if (object_has_type(element, AH_Type)) {
nm = object_get_primary_key(AH_Type);
} else if (object_has_type(element, SH_Type)) {
nm = object_get_primary_key(SH_Type);
}
ret = lGetElemHost(host_list, nm, hostname);
}
} else {
CRITICAL((SGE_EVENT, MSG_SGETEXT_NULLPTRPASSED_S, SGE_FUNC));
}
} else {
/*
* This is a normal case and no error
* if e.g. someone tries to find a element at qmaster startup to
* check if a certain element should be added
*/
ret = NULL;
}
DRETURN(ret);
}
/****** sgeobj/host/host_is_referenced() **************************************
* NAME
* host_is_referenced() -- Is a given host referenced in other objects?
*
* SYNOPSIS
* bool host_is_referenced(const lListElem *host,
* lList **answer_list,
* const lList *queue_list
* const lList *hgrp_list)
*
* FUNCTION
* This function returns true if the given "host" is referenced
* in a cqueue contained in "queue_list" or in a host group.
* If this is the case than a corresponding message will be added
* to the "answer_list".
*
* INPUTS
* const lListElem *host - EH_Type, AH_Type or SH_Type object
* lList **answer_list - AN_Type list
* const lList *queue_list - CQ_Type list
* const lList *hgrp_list - HGRP_Type list (Master list)
*
* RESULT
* int - true (1) or false (0)
******************************************************************************/
bool host_is_referenced(const lListElem *host,
lList **answer_list,
const lList *queue_list,
const lList *hgrp_list)
{
bool ret = false;
if (host != NULL) {
lListElem *cqueue = NULL;
lListElem *queue = NULL;
const char *hostname = NULL;
int nm = NoName;
if (object_has_type(host, EH_Type)) {
nm = object_get_primary_key(EH_Type);
} else if (object_has_type(host, AH_Type)) {
nm = object_get_primary_key(AH_Type);
} else if (object_has_type(host, SH_Type)) {
nm = object_get_primary_key(SH_Type);
}
hostname = lGetHost(host, nm);
/* look at all the queue instances and figure out, if one still references
the host we are looking for */
for_each(cqueue, queue_list) {
queue = lGetSubHost(cqueue, QU_qhostname, hostname, CQ_qinstances);
if (queue != NULL) {
const char *queuename = lGetString(cqueue, CQ_name);
sprintf(SGE_EVENT, MSG_HOSTREFINQUEUE_SS, hostname, queuename);
answer_list_add(answer_list, SGE_EVENT, STATUS_EUNKNOWN,
ANSWER_QUALITY_ERROR);
ret = true;
break;
}
}
/* if we have not found a reference yet, we keep looking in the host groups, if
we have an exec host */
if (!ret && object_has_type(host, EH_Type)) {
lListElem *hgrp_elem = NULL;
lList *host_list = NULL;
for_each (hgrp_elem, hgrp_list) {
hgroup_find_all_references(hgrp_elem, NULL, hgrp_list, &host_list, NULL);
if (host_list != NULL) {
if (lGetElemHost(host_list, HR_name, hostname) != NULL) {
const char *hgrp_name = lGetHost(hgrp_elem, HGRP_name);
sprintf(SGE_EVENT, MSG_HOSTREFINHGRP_SS, hostname, hgrp_name);
answer_list_add(answer_list, SGE_EVENT, STATUS_EUNKNOWN,
ANSWER_QUALITY_ERROR);
ret = true;
break;
}
lFreeList(&host_list);
}
}
}
}
return ret;
}
/****** sgeobj/host/host_get_load_value() *************************************
* NAME
* host_get_load_value() -- return a load value of an exec host
*
* SYNOPSIS
* const char* host_get_load_value(lListElem *host, const char *name)
*
* FUNCTION
* Returns a certain load value for a certain host.
*
* INPUTS
* lListElem *host - the host to query
* const char *name - the name of the load value
*
* RESULT
* const char* - string describing the load value
*
* EXAMPLE
* lListElem *host = lGetElemHost(Master_Host_List, EH_name, "myhost");
* const char *value = host_get_load_value(host, "np_load_avg");
* printf("The load on host myhost is %s\n", value);
*
*******************************************************************************/
const char *host_get_load_value(lListElem *host, const char *name)
{
lListElem *load;
const char *value = NULL;
if (host != NULL) {
load = lGetSubStr(host, HL_name, name, EH_load_list);
if(load != NULL) {
value = lGetString(load, HL_value);
}
}
return value;
}
/* MT-NOTE: sge_resolve_host() is MT safe */
int sge_resolve_host(lListElem *ep, int nm)
{
int pos;
int ret = CL_RETVAL_OK;
int dataType;
char unique[CL_MAXHOSTLEN];
const char *hostname;
DENTER(TOP_LAYER, "sge_resolve_host");
memset(unique, 0, CL_MAXHOSTLEN);
if (ep == NULL) {
DRETURN(-1);
}
/* ep is no host element, if ep has no nm */
if ((pos = lGetPosViaElem(ep, nm, SGE_NO_ABORT)) < 0) {
DRETURN(-1);
}
dataType = lGetPosType(lGetElemDescr(ep),pos);
switch (dataType) {
case lStringT:
hostname = lGetPosString(ep, pos);
DPRINTF(("!!!!!!! sge_resolve_host: WARNING call with old lStringT data type,\n"));
DPRINTF(("!!!!!!! this data type should be replaced with lHostT data type in\n"));
DPRINTF(("!!!!!!! the future! Nevertheless, just a warning! Function works fine!\n"));
break;
case lHostT:
hostname = lGetPosHost(ep, pos);
break;
default:
hostname = NULL;
ret = CL_RETVAL_GETHOSTNAME_ERROR;
break;
}
/* Check to find hostname only if it was not contained in expression */
if (hostname != NULL && !sge_is_expression(hostname)) {
ret = sge_resolve_hostname(hostname, unique, nm, sizeof(unique));
if (ret == CL_RETVAL_OK) {
switch (dataType) {
case lStringT:
lSetPosString(ep, pos, unique);
break;
case lHostT:
lSetPosHost(ep, pos, unique);
break;
}
}
}
DRETURN(ret);
}
/* MT-NOTE: sge_resolve_hostname() is MT safe */
int sge_resolve_hostname(const char *hostname, char *unique, int nm, size_t lunique)
{
int ret = CL_RETVAL_OK;
DENTER(TOP_LAYER, "sge_resolve_hostname");
if (hostname == NULL) {
DRETURN(CL_RETVAL_PARAMS);
}
/*
* these "special" names are resolved:
* "global", "unknown", "template")
*/
switch (nm) {
case CE_stringval:
if (strcmp(hostname, SGE_UNKNOWN_NAME) != 0) {
ret = getuniquehostname(hostname, unique, 0);
} else {
sge_strlcpy(unique, hostname, lunique);
}
break;
case EH_name:
case CONF_name:
if ((strcmp(hostname, SGE_GLOBAL_NAME)!=0) &&
(strcmp(hostname, SGE_TEMPLATE_NAME)!=0)) {
ret = getuniquehostname(hostname, unique, 0);
} else {
sge_strlcpy(unique, hostname, lunique);
}
break;
default:
ret = getuniquehostname(hostname, unique, 0);
break;
}
if (ret != CL_RETVAL_OK) {
sge_strlcpy(unique, hostname, lunique);
}
DRETURN(ret);
}
bool
host_is_centry_referenced(const lListElem *this_elem, const lListElem *centry)
{
bool ret = false;
DENTER(TOP_LAYER, "host_is_centry_referenced");
if (this_elem != NULL) {
const char *name = lGetString(centry, CE_name);
const lList *ce_values = lGetList(this_elem, EH_consumable_config_list);
const lList *load_list = lGetList(this_elem, EH_load_list);
const lList *rep_vars = lGetList(this_elem, EH_report_variables);
/*
* centry may be referenced in
* - complex_values
* - load_list
* - report_variables
*/
if (lGetElemStr(ce_values, CE_name, name) != NULL ||
lGetElemStr(load_list, HL_name, name) != NULL ||
lGetElemStr(rep_vars, STU_name, name) != NULL) {
ret = true;
}
}
DRETURN(ret);
}
bool
host_is_centry_a_complex_value(const lListElem *this_elem,
const lListElem *centry)
{
bool ret = false;
DENTER(TOP_LAYER, "host_is_centry_a_complex_value");
if (this_elem != NULL) {
const char *name = lGetString(centry, CE_name);
const lList *ce_values = lGetList(this_elem, EH_consumable_config_list);
const lList *load_list = lGetList(this_elem, EH_load_list);
/*
* centry may be referenced in
* - complex_values
* - load_list
*/
if (lGetElemStr(ce_values, CE_name, name) != NULL ||
lGetElemStr(load_list, HL_name, name) != NULL) {
ret = true;
}
}
DRETURN(ret);
}
/****** sgeobj/host/host_list_merge() ******************************************
* NAME
* host_list_merge() -- merge global host settings into exec hosts
*
* SYNOPSIS
* bool
* host_list_merge(lList *this_list)
*
* FUNCTION
* Merges settings from the global host to the exec hosts objects.
* Currently this applies only to the report_variables attribute.
*
* INPUTS
* lList *this_list - the exec host list to work on
*
* RESULT
* bool - true on success, else false
*
* NOTES
* MT-NOTE: host_list_merge() is MT safe
*
* SEE ALSO
* sgeobj/host/host_merge()
*******************************************************************************/
bool
host_list_merge(lList *this_list)
{
bool ret = true;
DENTER(TOP_LAYER, "host_list_merge");
if (this_list != NULL) {
lListElem *global_host;
/* we merge global settings into host settings */
global_host = lGetElemHost(this_list, EH_name, SGE_GLOBAL_NAME);
if (global_host != NULL) {
lListElem *host;
/* for the global host, merged_report_variables == report_variables */
lSetList(global_host, EH_merged_report_variables,
lCopyList("", lGetList(global_host, EH_report_variables)));
/* do merge for all hosts except global */
for_each (host, this_list) {
if (host != global_host) {
/* on error continue, but return error status */
if (!host_merge(host, global_host)) {
ret = false;
}
}
}
}
}
DRETURN(ret);
}
/****** sgeobj/host/host_merge() **********************************************
* NAME
* host_merge() -- merge global host settings into an exec host
*
* SYNOPSIS
* bool
* host_merge(lListElem *host, const lListElem *global_host)
*
* FUNCTION
* Merges settings from the global host object into a specific exec host.
* Use the global settings, if no host specific settings are done.
* Currently this applies only to the report_variables attribute.
*
* INPUTS
* lListElem *host - the host object to hold the merged config
* const lListElem *global_host - the global host object
*
* RESULT
* bool - true on success, else false
*
* NOTES
* MT-NOTE: host_merge() is MT safe
*
* SEE ALSO
* sgeobj/host/host_list_merge()
*******************************************************************************/
bool
host_merge(lListElem *host, const lListElem *global_host)
{
bool ret = true;
DENTER(TOP_LAYER, "host_merge");
if (host != NULL && global_host != NULL) {
const lList *local_list = lGetList(host, EH_report_variables);
/* if we have a local list: use this one */
if (local_list != NULL && lGetNumberOfElem(local_list) != 0) {
lSetList(host, EH_merged_report_variables, lCopyList("", local_list));
} else {
const lList *global_list;
global_list = lGetList(global_host, EH_report_variables);
/* if we have no local list, but a global one, use this one */
if (global_list != NULL && lGetNumberOfElem(global_list) != 0) {
lSetList(host, EH_merged_report_variables,
lCopyList("", global_list));
} else {
/* if no report variables are configured in local and global object,
* delete the merged list.
*/
lSetList(host, EH_merged_report_variables, NULL);
}
}
}
DRETURN(ret);
}
|