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 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369
|
/*___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.
*
* Portions of this software are Copyright (c) 2011 Univa Corporation
*
************************************************************************/
/*___INFO__MARK_END__*/
#include <string.h>
#include "uti/sge_rmon.h"
#include "uti/sge_log.h"
#include "uti/sge_hostname.h"
#include "uti/sge_parse_num_par.h"
#include "uti/sge_dstring.h"
#include "cull/cull_list.h"
#include "sched/sge_select_queue.h"
#include "sgeobj/sge_manop.h"
#include "sgeobj/sge_answer.h"
#include "sgeobj/sge_calendar.h"
#include "sgeobj/sge_centry.h"
#include "sgeobj/sge_ckpt.h"
#include "sgeobj/sge_cqueue.h"
#include "sgeobj/sge_job.h"
#include "sgeobj/sge_qinstance.h"
#include "sgeobj/sge_qinstance_state.h"
#include "sgeobj/sge_mesobj.h"
#include "sgeobj/sge_pe.h"
#include "sgeobj/sge_qref.h"
#include "sgeobj/sge_str.h"
#include "sgeobj/sge_userset.h"
#include "sgeobj/sge_host.h"
#include "sgeobj/sge_utility.h"
#include "sgeobj/sge_path_alias.h"
#include "sgeobj/sge_eval_expression.h"
#include "sgeobj/sge_resource_utilization_RDE_L.h"
#include "sgeobj/sge_resource_utilization_RUE_L.h"
#include "sgeobj/msg_sgeobjlib.h"
#include "sge.h"
#include "msg_common.h"
#define QINSTANCE_LAYER BASIS_LAYER
/****** sgeobj/qinstance/qinstance_list_locate() ******************************
* NAME
* qinstance_list_locate() -- find a qinstance
*
* SYNOPSIS
* lListElem *
* qinstance_list_locate(const lList *this_list,
* const char *hostname, const char *cqueue_name)
*
* FUNCTION
* Find a qinstance in "this_list" which is part of the cluster queue
* with the name "cqueue_name" and resides on the host with the name
* "hostname".
*
* INPUTS
* const lList *this_list - QU_Type list
* const char *hostname - hostname
* const char *cqueue_name - cluster queue name
*
* RESULT
* lListElem * - QU_Type element
*
* NOTES
* MT-NOTE: qinstance_list_locate() is MT safe
*******************************************************************************/
lListElem *
qinstance_list_locate(const lList *this_list, const char *hostname,
const char *cqueue_name)
{
lListElem *ret = NULL;
if (cqueue_name == NULL) {
ret = lGetElemHost(this_list, QU_qhostname, hostname);
} else {
for_each(ret, this_list) {
const char *qname = lGetString(ret, QU_qname);
const char *hname = lGetHost(ret, QU_qhostname);
/* use qinstance expression */
if (!sge_eval_expression(TYPE_CSTR, cqueue_name, qname, NULL)) {
if (!sge_eval_expression(TYPE_HOST, hostname, hname, NULL)) {
break;
}
}
}
}
return ret;
}
/****** sgeobj/qinstance/qinstance_list_locate2() *****************************
* NAME
* qinstance_list_locate2() -- find a qinstance using the fullname
*
* SYNOPSIS
* lListElem *
* qinstance_list_locate2(const lList *queue_list,
* const char *full_name)
*
* FUNCTION
* find a qinstance using the fullname
*
* INPUTS
* const lList *queue_list - QU_Type list
* const char *full_name - fullname of the qinstance (<cqueue>@<hostname>)
*
* RESULT
* lListElem * - QU_type element
*
* NOTES
* MT-NOTE: qinstance_list_locate2() is MT safe
*******************************************************************************/
lListElem *
qinstance_list_locate2(const lList *queue_list, const char *full_name)
{
return lGetElemStr(queue_list, QU_full_name, full_name);
}
/****** sgeobj/qinstance/qinstance_get_name() *********************************
* NAME
* qinstance_get_name() -- returns the fullname of a qinstance object
*
* SYNOPSIS
* const char *
* qinstance_get_name(const lListElem *this_elem,
* dstring *string_buffer)
*
* FUNCTION
* Returns the fullname of a qinstance object
*
* INPUTS
* const lListElem *this_elem - QU_Type
* dstring *string_buffer - dynamic string buffer
*
* RESULT
* const char * - pointer to the internal string buffer of "string_buffer"
*
* NOTES
* MT-NOTE: qinstance_get_name() is MT safe
*******************************************************************************/
const char *
qinstance_get_name(const lListElem *this_elem, dstring *string_buffer)
{
const char *ret = NULL;
if (this_elem != NULL && string_buffer != NULL) {
ret = sge_dstring_sprintf(string_buffer, SFN"@"SFN,
lGetString(this_elem, QU_qname),
lGetHost(this_elem, QU_qhostname));
}
return ret;
}
/****** sgeobj/qinstance/qinstance_list_set_tag() *****************************
* NAME
* qinstance_list_set_tag() -- tag a list of qinstances
*
* SYNOPSIS
* void
* qinstance_list_set_tag(lList *this_list, u_long32 tag_value)
*
* FUNCTION
* Tag a list of qinstances ("this_list") with "tag_value".
*
* INPUTS
* lList *this_list - QU_Type list
* u_long32 tag_value - unsingned long value (not a bitmask)
*
* RESULT
* void - None
*
* NOTES
* MT-NOTE: qinstance_list_set_tag() is MT safe
*******************************************************************************/
void
qinstance_list_set_tag(lList *this_list, u_long32 tag_value)
{
if (this_list != NULL) {
lListElem *qinstance = NULL;
for_each(qinstance, this_list) {
lSetUlong(qinstance, QU_tag, tag_value);
}
}
}
/****** sgeobj/qinstance/qinstance_increase_qversion() ************************
* NAME
* qinstance_increase_qversion() -- increase the qinstance queue version
*
* SYNOPSIS
* void qinstance_increase_qversion(lListElem *this_elem)
*
* FUNCTION
* Increase the queue version of the given qinstance "this_elem".
*
* INPUTS
* lListElem *this_elem - QU_Type element
*
* RESULT
* void - None
*
* NOTES
* MT-NOTE: qinstance_increase_qversion() is MT safe
*******************************************************************************/
void
qinstance_increase_qversion(lListElem *this_elem)
{
DENTER(TOP_LAYER, "qinstance_increase_qversion");
lAddUlong(this_elem, QU_version, 1);
DRETURN_VOID;
}
/****** sgeobj/qinstance/qinstance_check_owner() ******************************
* NAME
* qinstance_check_owner() -- check if a user is queue owner
*
* SYNOPSIS
* bool
* qinstance_check_owner(const lListElem *queue, const char *user_name)
*
* FUNCTION
* Checks if the given user is an owner of the given queue.
* Managers and operators are implicitly owner of all queues.
*
* INPUTS
* const lListElem *queue - the queue to check
* const char *user_name - the user name to check
*
* RESULT
* bool - true, if the user is owner, else false
******************************************************************************/
bool
qinstance_check_owner(const lListElem *this_elem, const char *user_name)
{
bool ret = false;
DENTER(TOP_LAYER, "qinstance_check_owner");
if (this_elem == NULL) {
ret = false;
} else if (user_name == NULL) {
ret = false;
} else if (manop_is_operator(user_name)) {
ret = true;
} else {
lList *owner_list = lGetList(this_elem, QU_owner_list);
if (lGetElemStr(owner_list, US_name, user_name) != NULL) {
ret = true;
}
}
DRETURN(ret);
}
/****** sgeobj/qinstance/qinstance_is_pe_referenced() *************************
* NAME
* qinstance_is_pe_referenced() -- Is the PE object referenced
*
* SYNOPSIS
* bool
* qinstance_is_pe_referenced(const lListElem *this_elem,
* const lListElem *pe)
*
* FUNCTION
* Is the given PE ("pe") referenced in the qinstance element "this_elem".
*
* INPUTS
* const lListElem *this_elem - QU_Type element
* const lListElem *pe - PE_Type element
*
* RESULT
* bool - test result
* true - is referenced
* false - is not referenced
*
* NOTES
* MT-NOTE: qinstance_is_pe_referenced() is MT safe
*******************************************************************************/
bool
qinstance_is_pe_referenced(const lListElem *this_elem, const lListElem *pe)
{
bool ret = false;
lListElem *re_ref_elem;
DENTER(TOP_LAYER, "qinstance_is_pe_referenced");
for_each(re_ref_elem, lGetList(this_elem, QU_pe_list)) {
if (pe_is_matching(pe, lGetString(re_ref_elem, ST_name))) {
ret = true;
break;
}
}
DRETURN(ret);
}
/****** sgeobj/qinstance/qinstance_is_calendar_referenced() *******************
* NAME
* qinstance_is_calendar_referenced() -- is the calendar referenced
*
* SYNOPSIS
* bool
* qinstance_is_calendar_referenced(const lListElem *this_elem,
* const lListElem *calendar)
*
* FUNCTION
* Is the "calendar" referenced in the qinstance "this_elem".
*
* INPUTS
* const lListElem *this_elem - QU_Type element
* const lListElem *calendar - CAL_Type element
*
* RESULT
* bool - test result
* true - is referenced
* false - is not referenced
*
* NOTES
* MT-NOTE: qinstance_is_calendar_referenced() is MT safe
*******************************************************************************/
bool
qinstance_is_calendar_referenced(const lListElem *this_elem,
const lListElem *calendar)
{
bool ret = false;
const char *queue_calendar = NULL;
DENTER(TOP_LAYER, "qinstance_is_calendar_referenced");
queue_calendar = lGetString(this_elem, QU_calendar);
if (queue_calendar != NULL) {
const char *calendar_name = lGetString(calendar, CAL_name);
if (calendar_name && !strcmp(queue_calendar, calendar_name)) {
ret = true;
}
}
DRETURN(ret);
}
/****** sgeobj/qinstance/qinstance_is_a_pe_referenced() ***********************
* NAME
* qinstance_is_a_pe_referenced() -- is a PE referenced
*
* SYNOPSIS
* bool qinstance_is_a_pe_referenced(const lListElem *this_elem)
*
* FUNCTION
* Test if at least one PE is referenced by qinstance "this_elem"
*
* INPUTS
* const lListElem *this_elem - QU_Type
*
* RESULT
* bool - test result
* true - an PE is referenced
* false - no PE is referenced ("NONE")
*
* NOTES
* MT-NOTE: qinstance_is_a_pe_referenced() is MT safe
*******************************************************************************/
bool
qinstance_is_a_pe_referenced(const lListElem *this_elem)
{
bool ret = false;
DENTER(TOP_LAYER, "qinstance_is_a_pe_referenced");
if (lGetNumberOfElem(lGetList(this_elem, QU_pe_list))) {
ret = true;
}
DRETURN(ret);
}
/****** sgeobj/qinstance/qinstance_is_ckpt_referenced() ***********************
* NAME
* qinstance_is_ckpt_referenced() -- Is the CKTP referenced
*
* SYNOPSIS
* bool
* qinstance_is_ckpt_referenced(const lListElem *this_elem,
* const lListElem *ckpt)
*
* FUNCTION
* Tests if the given CKPT object ("ckpt") is referenced in
* the qinstance "this_elem".
*
* INPUTS
* const lListElem *this_elem - QU_Type element
* const lListElem *ckpt - CKPT_Type element
*
* RESULT
* bool - test result
* true - CKPT is referenced
* false - CKPT is not referenced
*
* NOTES
* MT-NOTE: qinstance_is_ckpt_referenced() is MT safe
*******************************************************************************/
bool
qinstance_is_ckpt_referenced(const lListElem *this_elem, const lListElem *ckpt)
{
bool ret = false;
lList *ckpt_list = lGetList(this_elem, QU_ckpt_list);
DENTER(TOP_LAYER, "qinstance_is_ckpt_referenced");
if (lGetElemStr(ckpt_list, ST_name, lGetString(ckpt, CK_name)) != NULL) {
ret = true;
}
DRETURN(ret);
}
/****** sgeobj/qinstance/qinstance_is_a_ckpt_referenced() *********************
* NAME
* qinstance_is_a_ckpt_referenced() -- Is an CKPT object referenced
*
* SYNOPSIS
* bool qinstance_is_a_ckpt_referenced(const lListElem *this_elem)
*
* FUNCTION
* Is an CKPT object referenced in "this_elem".
*
* INPUTS
* const lListElem *this_elem - CKPT_Type element
*
* RESULT
* bool - test result
* true - a CKPT is referenced
* false - no CKPT is referenced
*
* NOTES
* MT-NOTE: qinstance_is_a_ckpt_referenced() is MT safe
*******************************************************************************/
bool
qinstance_is_a_ckpt_referenced(const lListElem *this_elem)
{
bool ret = false;
DENTER(TOP_LAYER, "qinstance_is_a_ckpt_referenced");
if (lGetNumberOfElem(lGetList(this_elem, QU_ckpt_list))) {
ret = true;
}
DRETURN(ret);
}
/****** sgeobj/qinstance/qinstance_is_centry_a_complex_value() ****************
* NAME
* qinstance_is_centry_a_complex_value() -- Is it a complex_value
*
* SYNOPSIS
* bool
* qinstance_is_centry_a_complex_value(const lListElem *this_elem,
* const lListElem *centry)
*
* FUNCTION
* Is the given "centry" in the list of complex_values of "this_elem".
*
* INPUTS
* const lListElem *this_elem - QU_Type element
* const lListElem *centry - CE_Type element
*
* RESULT
* bool - test result
* true - it is a complex value
* false - no complex value
* NOTES
* MT-NOTE: qinstance_is_centry_a_complex_value() is MT safe
*******************************************************************************/
bool
qinstance_is_centry_a_complex_value(const lListElem *this_elem,
const lListElem *centry)
{
bool ret = false;
DENTER(TOP_LAYER, "qinstance_is_centry_a_complex_value");
if (this_elem != NULL) {
const char *name = lGetString(centry, CE_name);
lList *centry_list = lGetList(this_elem, QU_consumable_config_list);
lListElem *centry_ref = lGetElemStr(centry_list, CE_name, name);
if (centry_ref != NULL || get_rsrc(name, true, NULL, NULL, NULL, NULL)==0) {
ret = true;
}
}
DRETURN(ret);
}
/****** sgeobj/qinstance/qinstance_list_find_matching() ***********************
* NAME
* qinstance_list_find_matching() -- find certain qinstances
*
* SYNOPSIS
* bool
* qinstance_list_find_matching(const lList *this_list,
* lList **answer_list,
* const char *hostname_pattern,
* lList **qref_list)
*
* FUNCTION
* Finds all qinstances in "this_list" whose hostname part matches
* the "hostname_pattern" (fnmatch pattern) and stores the
* qinstance name in "qref_list". In case of any error "answer_list"
* will be filled.
*
* INPUTS
* const lList *this_list - QU_Type list
* lList **answer_list - AN_Type list
* const char *hostname_pattern - fnmatch hostname pattern
* lList **qref_list - QR_Type list
*
* RESULT
* bool - error result
* true - success
*
* NOTES
* MT-NOTE: qinstance_list_find_matching() is MT safe
*******************************************************************************/
bool
qinstance_list_find_matching(const lList *this_list, lList **answer_list,
const char *hostname_pattern, lList **qref_list)
{
bool ret = true;
DENTER(QINSTANCE_LAYER, "qinstance_list_find_matching");
if (qref_list == NULL) {
DRETURN(true);
}
if (this_list != NULL && hostname_pattern != NULL) {
lListElem *qinstance;
char host[CL_MAXHOSTLEN];
if ((getuniquehostname(hostname_pattern, host, 0)) == CL_RETVAL_OK) {
hostname_pattern = host;
}
for_each(qinstance, this_list) {
const char *hostname = lGetHost(qinstance, QU_qhostname);
/* use qinstance expression */
if (!sge_eval_expression(TYPE_HOST, hostname_pattern, hostname, answer_list)) {
lAddElemStr(qref_list, QR_name, lGetString(qinstance, QU_full_name), QR_Type);
}
}
}
DRETURN(ret);
}
/****** sgeobj/qinstance/qinstance_slots_used() *******************************
* NAME
* qinstance_slots_used() -- Returns the number of currently used slots
*
* SYNOPSIS
* int
* qinstance_slots_used(const lListElem *this_elem)
*
* FUNCTION
* Returns the number of currently used slots.
*
* INPUTS
* const lListElem *this_elem - QU_Type element
*
* RESULT
* int - number of slots
*
* NOTES
* MT-NOTE: qinstance_slots_used() is MT safe
*******************************************************************************/
int
qinstance_slots_used(const lListElem *this_elem)
{
int ret = 1000000; /* when slots is unknown */
lListElem *slots;
DENTER(QINSTANCE_LAYER, "qinstance_slots_used");
slots = lGetSubStr(this_elem, RUE_name, SGE_ATTR_SLOTS, QU_resource_utilization);
if (slots != NULL) {
ret = lGetDouble(slots, RUE_utilized_now);
} else {
/* this happens on qinstance_create when a queue instance is created
before others queue instances in the subordinate lists
are created */
CRITICAL((SGE_EVENT, MSG_QINSTANCE_MISSLOTS_S,
lGetString(this_elem, QU_full_name)));
}
DRETURN(ret);
}
/****** sgeobj/qinstance/qinstance_slots_reserved() ***************************
* NAME
* qinstance_slots_reserved() -- the number of maximal reserved slots
*
* SYNOPSIS
* int qinstance_slots_reserved(const lListElem *this_elem)
*
* FUNCTION
* Returns the number of maximal reserved slots by all advance reservations
*
* INPUTS
* const lListElem *this_elem - QU_Type element
*
* RESULT
* int - number of slots
*
* NOTES
* MT-NOTE: qinstance_slots_reserved() is MT safe
*******************************************************************************/
int
qinstance_slots_reserved(const lListElem *this_elem)
{
int ret = 0;
lListElem *slots;
lListElem *utilized;
DENTER(QINSTANCE_LAYER, "qinstance_slots_reserved");
slots = lGetSubStr(this_elem, RUE_name, SGE_ATTR_SLOTS, QU_resource_utilization);
if (slots != NULL) {
for_each(utilized, lGetList(slots, RUE_utilized)) {
ret = MAX(ret, lGetDouble(utilized, RDE_amount));
}
}
DRETURN(ret);
}
/****** sgeobj/qinstance/qinstance_set_slots_used() ***************************
* NAME
* qinstance_set_slots_used() -- Modifies the number of used slots
*
* SYNOPSIS
* void
* qinstance_set_slots_used(lListElem *this_elem, int new_slots)
*
* FUNCTION
* Modifies the number of used slots
*
* INPUTS
* lListElem *this_elem - QU_Type
* int new_slots - new slot value
*
* RESULT
* void - NONE
*
* NOTES
* MT-NOTE: qinstance_set_slots_used() is MT safe
*******************************************************************************/
void
qinstance_set_slots_used(lListElem *this_elem, int new_slots)
{
lListElem *slots;
DENTER(QINSTANCE_LAYER, "qinstance_set_slots_used");
slots = lGetSubStr(this_elem, RUE_name, "slots", QU_resource_utilization);
if (slots != NULL) {
lSetDouble(slots, RUE_utilized_now, new_slots);
} else {
/* because this should never happen and an critical error */
CRITICAL((SGE_EVENT, MSG_QINSTANCE_MISSLOTS_S,
lGetString(this_elem, QU_full_name)));
}
DRETURN_VOID;
}
/****** sgeobj/qinstance/qinstance_debit_consumable() *************************
* NAME
* qinstance_debit_consumable() -- Debits/Undebits consumables
*
* SYNOPSIS
* int
* qinstance_debit_consumable(lListElem *qep,
* lListElem *jep,
* lList *centry_list,
* int slots)
*
* FUNCTION
* Checks if there are nonstatic load values available for the
* qinstance. If this is the case, then the "unknown" state
* of that machine will be released.
*
* INPUTS
* lListElem *qep - Qinstance resource container
* lListElem *jep - The job (JB_Type) defining which resources and how
* much of them need to be (un)debited
* lList *centry_list - The global complex list that is needed to interpret
* the jobs' resource requests.
* int slots - The number of slots for which we are debiting.
* Positive slots numbers cause debiting, negative
* ones cause undebiting.
*
* RESULT
* Returns -1 in case of an error. Otherwise the number of (un)debitations
* that actually took place is returned. If 0 is returned that means the
* consumable resources of the 'ep' object has not changed.
*
* NOTES
* MT-NOTE: qinstance_debit_consumable() is MT safe
*******************************************************************************/
int
qinstance_debit_consumable(lListElem *qep, lListElem *jep, lList *centry_list,
int slots, bool is_master_task, bool *just_check)
{
return rc_debit_consumable(jep, qep, centry_list, slots,
QU_consumable_config_list,
QU_resource_utilization,
lGetString(qep, QU_qname), is_master_task, just_check);
}
/****** sgeobj/qinstance/qinstance_message_add() *****************************
* NAME
* qinstance_message_add() -- Adds a message to the qinstance structure
*
* SYNOPSIS
* bool
* qinstance_message_add(lListElem *this_elem, u_long32 type,
* const char *message)
*
* FUNCTION
* Adds a message to the qinstance structure
*
* INPUTS
* lListElem *this_elem - QU_Type
* u_long32 type - message type
* const char *message - message
*
* RESULT
* bool - error state
* true - success
* false - error
*
* NOTES
* MT-NOTE: qinstance_message_add() is MT safe
*******************************************************************************/
bool
qinstance_message_add(lListElem *this_elem, u_long32 type, const char *message)
{
bool ret = true;
DENTER(TOP_LAYER, "qinstance_message_add");
object_message_add(this_elem, QU_message_list, type, message);
DRETURN(ret);
}
/****** sgeobj/qinstance/qinstance_message_trash_all_of_type_X() **************
* NAME
* qinstance_message_trash_all_of_type_X() -- Trash messages
*
* SYNOPSIS
* bool
* qinstance_message_trash_all_of_type_X(lListElem *this_elem,
* u_long32 type)
*
* FUNCTION
* Removes all messages with the message "type" id.
*
* INPUTS
* lListElem *this_elem - QU_Type
* u_long32 type - message type
*
* RESULT
* bool - error state
* true - success
* false - error
*
* NOTES
* MT-NOTE: qinstance_message_trash_all_of_type_X() is MT safe
*******************************************************************************/
bool
qinstance_message_trash_all_of_type_X(lListElem *this_elem, u_long32 type)
{
bool ret = true;
DENTER(TOP_LAYER, "qinstance_message_trash_all_of_type_X");
object_message_trash_all_of_type_X(this_elem, QU_message_list, type);
DRETURN(ret);
}
/****** sgeobj/qinstance/qinstance_set_full_name() ****************************
* NAME
* qinstance_set_full_name() -- set the full name of the qinstance
*
* SYNOPSIS
* void
* qinstance_set_full_name(lListElem *this_elem)
*
* FUNCTION
* Set the full name of the qinstance. The QU_qname name attribute
* will be used as input for the cqueue part and QU_qhostname
* as hostname part of the full name.
*
* INPUTS
* lListElem *this_elem - QU_Type
*
* RESULT
* void - NONE
*
* NOTES
* MT-NOTE: qinstance_set_full_name() is MT safe
*******************************************************************************/
void
qinstance_set_full_name(lListElem *this_elem)
{
dstring buffer = DSTRING_INIT;
const char *cqueue_name = lGetString(this_elem, QU_qname);
const char *hostname = lGetHost(this_elem, QU_qhostname);
sge_dstring_sprintf(&buffer, "%s@%s", cqueue_name, hostname);
lSetString(this_elem, QU_full_name,
sge_dstring_get_string(&buffer));
sge_dstring_free(&buffer);
}
/****** sgeobj/qinstance/qinstance_validate() *********************************
* NAME
* qinstance_validate() -- validates and initializes qinstances
*
* SYNOPSIS
* bool
* qinstance_validate(lListElem *this_elem, lList **answer_list)
*
* FUNCTION
* Validates qinstance attributes and initializes them if necessary.
*
* INPUTS
* lListElem *this_elem - QU_Type
* lList **answer_list - AN_Type
*
* RESULT
* void - error result
* true - success
* false - error
*
* NOTES
* MT-NOTE: qinstance_validate() is MT safe
*******************************************************************************/
bool
qinstance_validate(lListElem *this_elem, lList **answer_list, lList *master_exechost_list)
{
bool ret = true;
lList *centry_master_list = *(centry_list_get_master_list());
DENTER(TOP_LAYER, "qinstance_validate");
/* QU_full_name isn't spooled, if it is not set, create it */
if (lGetString(this_elem, QU_full_name) == NULL) {
qinstance_set_full_name(this_elem);
}
/* handle slots from now on as a consumble attribute of queue */
qinstance_set_conf_slots_used(this_elem);
/* remove all queue message, which are regenerated during the unspooling
the queue */
qinstance_message_trash_all_of_type_X(this_elem, ~QI_ERROR);
/* setup actual list of queue */
qinstance_debit_consumable(this_elem, NULL, centry_master_list, 0, true, NULL);
/* init double values of consumable configuration */
if (centry_list_fill_request(lGetList(this_elem, QU_consumable_config_list),
answer_list, centry_master_list, true, false, true) != 0) {
ret = false;
}
if (ret) {
if (ensure_attrib_available(NULL, this_elem,
QU_load_thresholds) ||
ensure_attrib_available(NULL, this_elem,
QU_suspend_thresholds) ||
ensure_attrib_available(NULL, this_elem,
QU_consumable_config_list)) {
ret = false;
}
}
/* qinstance state */
if (ret) {
qinstance_state_set_unknown(this_elem, true);
qinstance_state_set_cal_disabled(this_elem, false);
qinstance_state_set_cal_suspended(this_elem, false);
qinstance_set_slots_used(this_elem, 0);
if (host_list_locate(master_exechost_list,
lGetHost(this_elem, QU_qhostname)) == NULL) {
answer_list_add_sprintf(answer_list, STATUS_EUNKNOWN,
ANSWER_QUALITY_ERROR,
MSG_QINSTANCE_HOSTFORQUEUEDOESNOTEXIST_SS,
lGetString(this_elem, QU_qname),
lGetHost(this_elem, QU_qhostname));
ret = false;
}
}
DRETURN(ret);
}
/****** sgeobj/qinstance/qinstance_list_validate() ****************************
* NAME
* qinstance_list_validate() -- validates and initializes qinstances
*
* SYNOPSIS
* bool
* qinstance_list_validate(lList *this_list, lList **answer_list)
*
* FUNCTION
* Validates qinstances attributes and initializes them if necessary.
*
* INPUTS
* lList *this_list - QU_Type list
* lList **answer_list - AN_Type
*
* RESULT
* void - error result
* true - success
* false - error
*
* NOTES
* MT-NOTE: qinstance_list_validate() is MT safe
*******************************************************************************/
bool
qinstance_list_validate(lList *this_list, lList **answer_list, lList *master_exechost_list)
{
bool ret = true;
lListElem *qinstance;
DENTER(TOP_LAYER, "qinstance_list_validate");
for_each(qinstance, this_list) {
if (!qinstance_validate(qinstance, answer_list, master_exechost_list)) {
ret = false;
break;
}
}
DRETURN(ret);
}
/****** lib/sgeobj/debit_consumable() ****************************************
* NAME
* rc_debit_consumable() -- Debit/Undebit consumables from resource container
*
* SYNOPSIS
* int
* rc_debit_consumable(lListElem *jep, lListElem *ep, lList *centry_list,
* int slots, int config_nm, int actual_nm,
* const char *obj_name)
*
* FUNCTION
* Updates all consumable actual values of a resource container
* for 'slots' slots of the given job. Positive slots numbers
* cause debiting, negative ones cause undebiting.
*
* INPUTS
* lListElem *jep - The job (JB_Type) defining which resources and how
* much of them need to be (un)debited
*
* lListElem *ep - The resource container (global/host/queue)
* that owns the resources (EH_Type).
*
* lList *centry_list - The global complex list that is needed to interpret
* the jobs' resource requests.
*
* int slots - The number of slots for which we are debiting.
* Positive slots numbers cause debiting, negative
* ones cause undebiting.
*
* int config_nm - The CULL field of the 'ep' object that contains a
* CE_Type list of configured complex values.
*
* int actual_nm - The CULL field of the 'ep' object that contains a
* CE_Type list of actual complex values.
*
* const char *obj_name - The name of the object we are debiting from. This
* is only used for monitoring/diagnosis purposes.
*
* bool *just_check - If != NULL do not do the actual debiting, but just
* check if debiting would exceed resources.
* Only makes sense for debiting (slots > 0).
*
* RESULT
* Returns -1 in case of an error. Otherwise the number of (un)debitations
* that actually took place is returned. If 0 is returned that means the
* consumable resources of the 'ep' object has not changed.
******************************************************************************/
int
rc_debit_consumable(lListElem *jep, lListElem *ep, lList *centry_list,
int slots, int config_nm, int actual_nm,
const char *obj_name, bool is_master_task,
bool *just_check)
{
lListElem *cr, *cr_config, *dcep;
double dval;
const char *name;
int mods = 0;
DENTER(TOP_LAYER, "rc_debit_consumable");
if (ep == NULL) {
DRETURN(0);
}
/* assume debiting would work */
if (just_check != NULL) {
*just_check = true;
}
for_each (cr_config, lGetList(ep, config_nm)) {
int debit_slots = slots;
u_long32 consumable;
name = lGetString(cr_config, CE_name);
dval = 0;
/* search default request */
if (!(dcep = centry_list_locate(centry_list, name))) {
ERROR((SGE_EVENT, MSG_ATTRIB_MISSINGATTRIBUTEXINCOMPLEXES_S , name));
DRETURN(-1);
}
consumable = lGetUlong(dcep, CE_consumable);
if (consumable == CONSUMABLE_NO) {
/* no error, nothing to debit */
continue;
} else if (consumable == CONSUMABLE_JOB) {
if (!is_master_task) {
/* no error, only_master_task is debited */
continue;
}
/* it's a job consumable, we don't multiply with slots */
if (slots > 0) {
debit_slots = 1;
} else if (slots < 0) {
debit_slots = -1;
}
}
/* ensure attribute is in actual list */
cr = lGetSubStr(ep, RUE_name, name, actual_nm);
if (just_check == NULL && cr == NULL) {
cr = lAddSubStr(ep, RUE_name, name, actual_nm, RUE_Type);
/* RUE_utilized_now is implicitly set to zero */
}
if (jep) {
bool tmp_ret = job_get_contribution(jep, NULL, name, &dval, dcep);
if (tmp_ret && dval != 0.0) {
if (just_check == NULL) {
DPRINTF(("debiting %f of %s on %s %s for %d slots\n", dval, name,
(config_nm==QU_consumable_config_list)?"queue":"host",
obj_name, debit_slots));
lAddDouble(cr, RUE_utilized_now, debit_slots * dval);
} else {
double actual_value = cr == NULL ? 0 : lGetDouble(cr, RUE_utilized_now);
double config_value = lGetDouble(cr_config, CE_doubleval);
/* for exclusive consumables ignore the number of slots */
if (lGetUlong(dcep, CE_relop) == CMPLXEXCL_OP) {
debit_slots = 1;
}
if ((config_value - actual_value - debit_slots * dval) < 0) {
ERROR((SGE_EVENT, MSG_CAPACITYEXCEEDED_FSSSIF, dval, name,
(config_nm==QU_consumable_config_list)?"queue":"host",
obj_name, debit_slots, config_value - actual_value));
*just_check = false;
break;
}
}
mods++;
} else if (lGetUlong(dcep, CE_relop) == CMPLXEXCL_OP) {
/*
* The job doesn't request the exclusive complex, but it still has effect:
* A job actually requesting to run exclusive will not be dispatched
* to this host - scheduler checks if there is a job running either
* requesting the exclusive resource or a job not requesting it is
* blocking the host.
*
* For the consumable check (just_check != NULL) this means that
* we check if the resource is actually in use (RU_utilized_now).
*/
dval = 1.0;
if (just_check == NULL) {
DPRINTF(("debiting (implicit exclusive) %f of %s on %s %s for %d slots\n", dval, name,
(config_nm==QU_consumable_config_list)?"queue":"host",
obj_name, debit_slots));
lAddDouble(cr, RUE_utilized_now_nonexclusive, debit_slots * dval);
} else {
double actual_value = cr == NULL ? 0 : lGetDouble(cr, RUE_utilized_now);
if (actual_value > 0) {
ERROR((SGE_EVENT, MSG_EXCLCAPACITYEXCEEDED_FSSSI, dval, name,
(config_nm==QU_consumable_config_list)?"queue":"host",
obj_name, debit_slots));
*just_check = false;
break;
}
}
mods++;
}
}
}
DRETURN(mods);
}
void
qinstance_set_conf_slots_used(lListElem *this_elem)
{
lListElem *slots;
DENTER(QINSTANCE_LAYER, "qinstance_set_conf_slots_used");
slots = lGetSubStr(this_elem, CE_name, "slots",
QU_consumable_config_list);
if (slots == NULL) {
slots = lAddSubStr(this_elem, CE_name, "slots",
QU_consumable_config_list, CE_Type);
}
if (slots != NULL) {
dstring buffer = DSTRING_INIT;
u_long32 slots_value = lGetUlong(this_elem, QU_job_slots);
sge_dstring_sprintf(&buffer, sge_u32, slots_value);
lSetDouble(slots, CE_doubleval, slots_value);
lSetString(slots, CE_stringval, sge_dstring_get_string(&buffer));
sge_dstring_free(&buffer);
}
DRETURN_VOID;
}
/****** sge_qinstance/qinstance_list_verify_execd_job() ************************
* NAME
* qinstance_list_verify_execd_job() -- verify a queue instance list
*
* SYNOPSIS
* bool
* qinstance_list_verify_execd_job(const lList *queue_list, lList **answer_list)
*
* FUNCTION
* Verify correctness of a queue instance list, that has been sent by qmaster
* to execd as part of a job start order.
*
* INPUTS
* const lList *queue_list - the queue instance list
* lList **answer_list - answer list to pass back error messages
*
* RESULT
* bool - true: everything ok, else false
*
* NOTES
* MT-NOTE: qinstance_list_verify_execd_job() is MT safe
*
* SEE ALSO
* sge_qinstance/qinstance_verify()
*******************************************************************************/
bool
qinstance_list_verify_execd_job(const lList *queue_list, lList **answer_list)
{
DENTER(TOP_LAYER, "qinstance_list_verify_execd_job");
if (queue_list == NULL) {
answer_list_add_sprintf(answer_list, STATUS_ESYNTAX, ANSWER_QUALITY_ERROR,
MSG_NULLELEMENTPASSEDTO_S, SGE_FUNC);
DRETURN(false);
} else {
const lListElem *qep;
for_each (qep, queue_list) {
if (!qinstance_verify(qep, answer_list)) {
DRETURN(false);
}
}
}
DRETURN(true);
}
/****** sge_qinstance/qinstance_verify() ***************************************
* NAME
* qinstance_verify() -- verify a queue instance in execd
*
* SYNOPSIS
* bool
* qinstance_verify(const lListElem *qep, lList **answer_list)
*
* FUNCTION
* Verify a single queue instance, that has been sent by qmaster to execd
* as part of a job start order.
*
* INPUTS
* const lListElem *qep - the queue instance to verify
* lList **answer_list - answer list to pass back error messages
*
* RESULT
* bool - true: everything ok, else false
*
* NOTES
* MT-NOTE: qinstance_verify() is MT safe
*******************************************************************************/
bool
qinstance_verify(const lListElem *qep, lList **answer_list)
{
bool ret = true;
DENTER(TOP_LAYER, "qinstance_verify");
if (qep == NULL) {
answer_list_add_sprintf(answer_list, STATUS_ESYNTAX, ANSWER_QUALITY_ERROR,
MSG_NULLELEMENTPASSEDTO_S, SGE_FUNC);
ret = false;
}
if (ret) {
ret = verify_host_name(answer_list, lGetHost(qep, QU_qhostname));
}
if (ret) {
if (verify_str_key(answer_list, lGetString(qep, QU_qname),
MAX_VERIFY_STRING, lNm2Str(QU_qname), KEY_TABLE) != STATUS_OK) {
ret = false;
}
}
if (ret) {
ret = qinstance_verify_full_name(answer_list, lGetString(qep, QU_full_name));
}
if (ret) {
ret = path_verify(lGetString(qep, QU_shell), answer_list, "shell", true);
}
DRETURN(ret);
}
/****** sge_qinstance/qinstance_verify_full_name() *****************************
* NAME
* qinstance_verify_full_name() -- verify a queue instance full name
*
* SYNOPSIS
* bool
* qinstance_verify_full_name(lList **answer_list, const char *full_name)
*
* FUNCTION
* Verifies if a queue instance full name is correct (form cqueue@host).
*
* INPUTS
* lList **answer_list - answer list to pass back error messages
* const char *full_name - the queue instance name to verify
*
* RESULT
* bool - true: everything ok, else false
*
* NOTES
* MT-NOTE: qinstance_verify_full_name() is MT safe
*******************************************************************************/
bool
qinstance_verify_full_name(lList **answer_list, const char *full_name)
{
bool ret = true;
dstring cqueue_name = DSTRING_INIT;
dstring host_domain = DSTRING_INIT;
bool has_hostname, has_domain;
if (full_name == NULL) {
answer_list_add_sprintf(answer_list, STATUS_ESYNTAX, ANSWER_QUALITY_ERROR,
MSG_INVALID_QINSTANCE_NAME_S, "<null>");
ret = false;
}
/* split the queue instance name and verify its components */
if (ret) {
if (!cqueue_name_split(full_name, &cqueue_name, &host_domain,
&has_hostname, &has_domain)) {
/* report syntax error */
answer_list_add_sprintf(answer_list, STATUS_ESYNTAX, ANSWER_QUALITY_ERROR,
MSG_INVALID_QINSTANCE_NAME_S, full_name);
ret = false;
}
}
/* the cqueue name */
if (ret) {
if (verify_str_key(answer_list, sge_dstring_get_string(&cqueue_name),
MAX_VERIFY_STRING, "cluster queue", KEY_TABLE) != STATUS_OK) {
ret = false;
}
}
/* the hostname or host group */
if (ret) {
if (has_hostname) {
ret = verify_host_name(answer_list, sge_dstring_get_string(&host_domain));
} else if (has_domain) {
if (verify_str_key(answer_list, sge_dstring_get_string(&host_domain) + 1,
MAX_VERIFY_STRING, "host domain", KEY_TABLE) != STATUS_OK) {
ret = false;
}
} else {
answer_list_add_sprintf(answer_list, STATUS_ESYNTAX, ANSWER_QUALITY_ERROR,
MSG_INVALID_QINSTANCE_NAME_S, full_name);
ret = false;
}
}
sge_dstring_free(&cqueue_name);
sge_dstring_free(&host_domain);
return ret;
}
/****** sge_qinstance/qinstance_set_error() ************************************
* NAME
* qinstance_set_error() -- set/unset qinstance into state
*
* SYNOPSIS
* void qinstance_set_error(lListElem *qinstance, u_long32 type, const char
* *message, bool set_error)
*
* FUNCTION
* Sets or unsets a qinstance into error state and adds or removes the given
* error message
*
* INPUTS
* lListElem *qinstance - qinstance object (QU_Type)
* u_long32 type - new state
* const char *message - error message to set
* bool set_error - set or unset
*
* NOTES
* MT-NOTE: qinstance_set_error() is MT safe
*******************************************************************************/
void
qinstance_set_error(lListElem *qinstance, u_long32 type, const char *message, bool set_error)
{
qinstance_set_state(qinstance, set_error, type);
if (set_error) {
qinstance_message_add(qinstance, type, message);
} else {
qinstance_message_trash_all_of_type_X(qinstance, type);
}
}
|