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
|
/*___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 "uti/sge_binding_hlp.h"
#include "shepherd_binding.h"
#include "sge_dstring.h"
#include "sge_string.h"
#include "err_trace.h"
#if defined(SOLARISAMD64) || defined(SOLARIS86)
# include "sge_uidgid.h"
# include <sys/pset.h>
#endif
#if defined(PLPA_LINUX)
static bool binding_set_linear_linux(int first_socket, int first_core,
int amount_of_cores, int offset, const binding_type_t type);
static bool binding_set_striding_linux(int first_socket, int first_core,
int amount_of_cores, int offset, int n, const binding_type_t type);
static bool set_processor_binding_mask(plpa_cpu_set_t* cpuset, const int processor_ids[],
const int no_of_ids);
/* DG TODO BETTER WITH POINTER */
static bool bind_process_to_mask(const pid_t pid, const plpa_cpu_set_t cpuset);
static bool binding_explicit(const int* list_of_sockets, const int samount,
const int* list_of_cores, const int camount, const binding_type_t type);
static bool create_binding_env_linux(const int* proc_id, const int amount);
static bool add_proc_ids_linux(int socket, int core, int** proc_id, int* proc_id_size);
#endif
#if defined(SOLARISAMD64) || defined(SOLARIS86)
static bool bind_shepherd_to_pset(int pset_id);
#endif
#if defined(PLPA_LINUX)
/****** shepherd_binding/do_core_binding() *************************************
* NAME
* do_core_binding() -- Performs the core binding task for the Linux OS.
*
* SYNOPSIS
* int do_core_binding(void)
*
* FUNCTION
* Performs core binding on shepherd side. All information required for
* the binding is communicated from execd to shepherd in the config
* file value "binding". If there is "NULL" no core binding is done.
*
* This function is Linux specific.
*
* If there is any instruction the bookkeeping for these cores is already
* done. In case of Solaris the processor set is already created by
* execution daemon. Hence shepherd has just to add itself to it.
* In case of Linux the whole binding is done by shepherd. In each case
* the binding is inherited from shepherd to the job it starts.
*
* DG TODO change return value to bool
*
* RESULT
* int - Returns 0 in case of success and a negative value in case of problems.
*
* NOTES
* MT-NOTE: do_core_binding() is not MT safe
*
*******************************************************************************/
int do_core_binding(void)
{
/* Check if "binding" parameter in 'config' file
* is available and not set to "binding=no_job_binding".
* If so, we do an early abortion.
*/
char *binding = get_conf_val("binding");
binding_type_t type;
if (binding == NULL || strcasecmp("NULL", binding) == 0) {
shepherd_trace("do_core_binding: \"binding\" parameter not found in config file");
return -1;
}
if (strcasecmp("no_job_binding", binding) == 0) {
shepherd_trace("do_core_binding: skip binding - no core binding configured");
return -1;
}
/* get the binding type (set = 0 | env = 1 | pe = 2) where default is 0 */
type = binding_parse_type(binding);
/* do a binding accorting the strategy */
if (strstr(binding, "linear") != NULL) {
/* do a linear binding */
int amount;
int socket;
int core;
shepherd_trace("do_core_binding: do linear");
/* get the amount of cores to bind on */
if ((amount = binding_linear_parse_amount(binding)) < 0) {
shepherd_trace("do_core_binding: couldn't parse the amount of cores from config file");
return -1;
}
/* get the socket to begin binding with (choosen by execution daemon) */
if ((socket = binding_linear_parse_socket_offset(binding)) < 0) {
shepherd_trace("do_core_binding: couldn't get the socket number from config file");
return -1;
}
/* get the core to begin binding with (choosen by execution daemon) */
if ((core = binding_linear_parse_core_offset(binding)) < 0) {
shepherd_trace("do_core_binding: couldn't get the core number from config file");
return -1;
}
/* perform core binding on current process */
if (binding_set_linear_linux(socket, core, amount, 1, type) == false) {
/* core binding was not successful */
if (type == BINDING_TYPE_SET) {
shepherd_trace("do_core_binding: linear binding was not successful");
} else if (type == BINDING_TYPE_ENV) {
shepherd_trace("do_core_binding: couldn't set SGE_BINDING environment variable");
} else if (type == BINDING_TYPE_PE) {
shepherd_trace("do_core_binding: couldn't produce rankfile");
}
} else {
if (type == BINDING_TYPE_SET) {
shepherd_trace("do_core_binding: job successfully bound");
} else if (type == BINDING_TYPE_ENV) {
shepherd_trace("do_core_binding: SGE_BINDING environment variable created");
} else if (type == BINDING_TYPE_PE) {
shepherd_trace("do_core_binding: rankefile produced");
}
}
} else if (strstr(binding, "striding") != NULL) {
int amount = binding_striding_parse_amount(binding);
int stepsize = binding_striding_parse_step_size(binding);
/* these are the real start parameters */
int first_socket = 0, first_core = 0;
shepherd_trace("do_core_binding: striding");
if (amount <= 0) {
shepherd_trace("do_core_binding: error parsing <amount>");
return -1;
}
if (stepsize < 0) {
shepherd_trace("do_core_binding: error parsing <stepsize>");
return -1;
}
first_socket = binding_striding_parse_first_socket(binding);
if (first_core == -1) {
shepherd_trace("do_core_binding: error parsing <socket>");
return -1;
}
first_core = binding_striding_parse_first_core(binding);
if (first_socket == -1) {
shepherd_trace("do_core_binding: error parsing <core>");
return -1;
}
/* last core has to be incremented because core 0 is first core to be used */
if (stepsize == 0) {
/* stepsize must be >= 1 */
stepsize = 1;
}
shepherd_trace("do_core_binding: striding set binding: first_core: %d first_socket %d amount %d stepsize %d",
first_core, first_socket, amount, stepsize);
/* get the first core and first socket which is available for striding */
/* perform core binding on current process */
if (binding_set_striding_linux(first_socket, first_core, amount, 0, stepsize, type)) {
shepherd_trace("do_core_binding: striding: binding done");
} else {
shepherd_trace("do_core_binding: striding: binding not done");
}
} else if (strstr(binding, "explicit") != NULL) {
/* list with the sockets (first part of the <socket>,<core> tuples) */
int* sockets = NULL;
/* length of sockets list */
int nr_of_sockets = 0;
/* list with the cores to be bound on the sockets */
int* cores = NULL;
/* length of cores list */
int nr_of_cores = 0;
shepherd_trace("do_core_binding: explicit");
/* get <socket>,<core> pairs out of binding string */
if (binding_explicit_extract_sockets_cores(binding, &sockets, &nr_of_sockets,
&cores, &nr_of_cores) == true) {
if (nr_of_sockets == 0 && nr_of_cores == 0) {
/* no cores and no sockets are found */
shepherd_trace("do_core_binding: explicit: no socket or no core was specified");
} else if (nr_of_sockets != nr_of_cores) {
shepherd_trace("do_core_binding: explicit: unequal amount of specified sockets and cores");
} else {
/* do core binding according the <socket>,<core> tuples */
if (binding_explicit(sockets, nr_of_sockets, cores, nr_of_cores, type) == true) {
shepherd_trace("do_core_binding: explicit: binding done");
} else {
shepherd_trace("do_core_binding: explicit: no core binding done");
}
}
FREE(sockets);
FREE(cores);
} else {
FREE(sockets);
FREE(cores);
shepherd_trace("do_core_binding: explicit: couldn't extract <socket>,<core> pair");
}
} else {
if (binding != NULL) {
shepherd_trace("do_core_binding: WARNING: unknown \"binding\" parameter: %s",
binding);
} else {
shepherd_trace("do_core_binding: WARNING: binding was null!");
}
}
shepherd_trace("do_core_binding: finishing");
return 0;
}
#endif
#if defined(SOLARIS86) || defined(SOLARISAMD64)
/****** shepherd_binding/do_core_binding() *************************************
* NAME
* do_core_binding() -- Performs the core binding task for the Solaris OS.
*
* SYNOPSIS
* int do_core_binding(void)
*
* FUNCTION
* Performs core binding on shepherd side. All information required for
* the binding is communicated from execd to shepherd in the config
* file value "binding". If there is "NULL" no core binding is done.
*
* This function is Solaris specific.
*
* DG TODO change return value to bool
*
* RESULT
* int - Returns 0 in case of success and a negative value in case of problems.
*
* NOTES
* MT-NOTE: do_core_binding() is not MT safe
*
*******************************************************************************/
int do_core_binding(void)
{
int retval = 0;
/* just read out what is in "config" file and attach to the given psrset if
it is specified */
char *binding = get_conf_val("binding");
if (binding == NULL) {
shepherd_trace("do_core_binding: \"binding\" parameter not found in config file");
retval = -1;
} else if (strcasecmp("no_job_binding", binding) == 0 || strcasecmp("NULL", binding) == 0) {
shepherd_trace("do_core_binding: skip binding - no core binding configured");
retval = -1;
}
if (retval == 0 && strstr(binding, "psrset:") != NULL) {
int processor_set_id = 0;
shepherd_trace("do_core_binding: psrset found - attaching to it!");
/* parse the psrset number right after "psrset:" */
if (sge_strtok(binding, ":") != NULL) {
/* parse the rest of the line */
char* pset_id;
if ((pset_id = sge_strtok(NULL, ":")) != NULL) {
/* finally get the processor set id */
processor_set_id = atoi(pset_id);
} else {
shepherd_trace("do_core_binding: couldn't find the psrset id after \"psrset:\" in config file (binding)");
retval = -1;
}
} else {
shepherd_trace("do_core_binding: found string \"psrset:\" but no \":\" - almost impossible");
retval = -1;
}
if (retval == 0) {
if (processor_set_id == -1) {
/* prcoessor_set_id == -1: Check here for a special processor_set_id (negative; 0)
which does show that no binding is needed since this processor set
would require (exactly) all of the remaining cores. Creating
such a processor set is not possible because one processor must
left for the OS. But the job is implicitly bound to the processors
since it can not use any onther processor from the other processor
sets. */
shepherd_trace("do_core_binding: psrset not created since all remaining processors would be used");
shepherd_trace("do_core_binding: binding is done implicitly");
} else {
/* start user rights (root) are required for creating processor sets */
sge_switch2start_user();
if (bind_shepherd_to_pset(processor_set_id) == false) {
shepherd_trace("do_core_binding: couldn't bind to existing processor set!");
} else {
shepherd_trace("do_core_binding: successfully bound to existing processor set!");
}
/* switch back to admin user */
sge_switch2admin_user();
}
}
} else { /* "psrset" is not in config file defined */
shepherd_trace("do_core_binding: no processor set found in config file! do nothing");
retval = -1;
}
shepherd_trace("do_core_binding: finishing");
return retval;
}
/****** shepherd_binding/bind_shepherd_to_pset() *******************************
* NAME
* bind_shepherd_to_pset() -- Binds the current process to a processor set.
*
* SYNOPSIS
* static bool bind_shepherd_to_pset(int pset_id)
*
* FUNCTION
* Binds the current shepherd process to an existing processor set.
*
* INPUTS
* int pset_id - Existing processor set id.
*
* RESULT
* static bool - true in case the process was bound false otherwise
*
* NOTES
* MT-NOTE: bind_shepherd_to_pset() is MT safe
*
*******************************************************************************/
static bool bind_shepherd_to_pset(int pset_id)
{
/* try to bind current process to processor set */
if (pset_bind((psetid_t)pset_id, P_PID, P_MYID, NULL) != 0) {
/* binding was not successful */
return false;
}
/* successfully bound current process to processor set */
return true;
}
#endif
/* helper for core_binding */
#if defined(PLPA_LINUX)
/****** shepherd_binding/add_proc_ids_linux() **********************************
* NAME
* add_proc_ids_linux() -- Adds the processor ids of a core to an existing array.
*
* SYNOPSIS
* static bool add_proc_ids_linux(int socket, int core, int** proc_id, int*
* proc_id_size)
*
* FUNCTION
* Adds the Linux internal processor ids of a specific core (which is described
* via the logicial socket and core number) to an array. The length of the array
* is updated. If the array point to NULL then a new array is allocated. The array
* has to be freed from outside.
*
* INPUTS
* int socket - Logical socket number (beginning with 0 without holes)
* int core - Logical core number on the given socket (beginning with 0)
*
* OUTPUTS
* int** proc_id - Array of Linux internal processor ids.
* int* proc_id_size - Size of the array.
*
* RESULT
* static bool - Returns true when the proc_id array was updated successfuly,
* false when something went wrong (like not finding the core).
*
* NOTES
* MT-NOTE: add_proc_ids_linux() is MT safe
*
*******************************************************************************/
static bool add_proc_ids_linux(int socket, int core, int** proc_id, int* proc_id_size)
{
/* OS internal processor IDs for a given logical socket, core pair */
int* pids = NULL;
int pids_size = 0;
int retval = true;
if (proc_id_size == NULL || proc_id == NULL)
return false;
/* get processor ids */
if (get_processor_ids_linux(socket, core, &pids, &pids_size) && pids_size > 0 && pids != NULL) {
/* append the processor ids to the given proc_id array */
/* grow proc_id array */
(*proc_id) = (int*) realloc((*proc_id), ((*proc_id_size) + pids_size) * sizeof(int));
if (*proc_id != NULL) {
int i = 0;
/* copy all processor ids */
for (i = (*proc_id_size); i < (*proc_id_size) + pids_size; i++) {
(*proc_id)[i] = pids[i-(*proc_id_size)];
}
} else {
retval = false;
}
/* update output size */
(*proc_id_size) += pids_size;
} else {
retval = false;
}
FREE(pids);
return retval;
}
/****** shepherd_binding/binding_set_linear_linux() ***************************************
* NAME
* binding_set_linear_linux() -- Bind current process linear to chunk of cores.
*
* SYNOPSIS
* bool binding_set_linear(int first_socket, int first_core, int
* amount_of_cores, int offset)
*
* FUNCTION
* Binds current process (shepherd) to a set of cores. All processes
* started by the current process are inheriting the core binding (Linux).
*
* The core binding is done in a linear manner, that means that
* the process is bound to 'amount_of_cores' cores using one core
* after another starting at socket 'first_socket' (usually 0) and
* core = 'first_core' (usually 0) + 'offset'. If the core number
* is higher than the number of cores which are provided by socket
* 'first_socket' then the next socket is taken (the core number
* defines how many cores are skiped).
*
* INPUTS
* int first_socket - The first socket (starting at 0) to bind to.
* int first_core - The first core to bind.
* int amount_of_cores - The amount of cores to bind to.
* int offset - The user specified core number offset.
* binding_type_t type - The type of binding ONLY FOR EXECD ( set | env | pe )
*
* RESULT
* bool - true if binding for current process was done, false if not
*
* NOTES
* MT-NOTE: binding_set_linear() is not MT safe
*
* SEE ALSO
* ???/???
*******************************************************************************/
static bool binding_set_linear_linux(int first_socket, int first_core,
int amount_of_cores, int offset, const binding_type_t type)
{
/* sets bitmask in a linear manner */
/* first core is on exclusive host 0 */
/* first core could be set from scheduler */
/* offset is the first core to start with (make sense only with exclusive host) */
dstring error = DSTRING_INIT;
if (_has_core_binding(&error) == true) {
sge_dstring_clear(&error);
/* bitmask for processors to turn on and off */
plpa_cpu_set_t cpuset;
/* turn off all processors */
PLPA_CPU_ZERO(&cpuset);
sge_dstring_free(&error);
if (_has_topology_information()) {
/* amount of cores set in processor binding mask */
int cores_set;
/* next socket to use */
int next_socket = first_socket;
/* the amount of cores of the next socket */
int socket_amount_of_cores;
/* next core to use */
int next_core = first_core + offset;
/* all the processor ids selected for the mask */
int* proc_id = NULL;
/* size of proc_id array */
int proc_id_size = 0;
/* maximal amount of sockets on this system */
int max_amount_of_sockets = get_amount_of_sockets();
/* strategy: go to the first_socket and the first_core + offset and
fill up socket and go to the next one. */
/* TODO maybe better to search for using a core exclusively? */
while (get_amount_of_cores(next_socket) <= next_core) {
/* TODO which kind of warning when first socket does not offer this? */
/* move on to next socket - could be that we have to deal only with cores
instead of <socket><core> tuples */
next_core -= get_amount_of_cores(next_socket);
next_socket++;
if (next_socket >= max_amount_of_sockets) {
/* we are out of sockets - we do nothing */
return false;
}
}
add_proc_ids_linux(next_socket, next_core, &proc_id, &proc_id_size);
/* collect the other processor ids with the strategy */
for (cores_set = 1; cores_set < amount_of_cores; cores_set++) {
next_core++;
/* jump to next socket when it is needed */
/* maybe the next socket could offer 0 cores (I can' see when,
but just to be sure) */
while ((socket_amount_of_cores = get_amount_of_cores(next_socket))
<= next_core) {
next_socket++;
next_core = next_core - socket_amount_of_cores;
if (next_socket >= max_amount_of_sockets) {
/* we are out of sockets - we do nothing */
FREE(proc_id);
return false;
}
}
/* get processor ids */
add_proc_ids_linux(next_socket, next_core, &proc_id, &proc_id_size);
}
/* set the mask for all processor ids */
set_processor_binding_mask(&cpuset, proc_id, proc_id_size);
/* check what to do with the processor ids (set, env or pe) */
if (type == BINDING_TYPE_PE) {
/* is done outside */
} else if (type == BINDING_TYPE_ENV) {
/* set the environment variable */
/* this does not show up in "environment" file !!! */
if (create_binding_env_linux(proc_id, proc_id_size) == true) {
shepherd_trace("binding_set_linear_linux: SGE_BINDING env var created");
} else {
shepherd_trace("binding_set_linear_linux: problems while creating SGE_BINDING env");
}
} else {
/* bind SET process to mask */
if (bind_process_to_mask((pid_t) 0, cpuset) == false) {
/* there was an error while binding */
FREE(proc_id);
return false;
}
}
FREE(proc_id);
} else {
/* TODO DG strategy without topology information but with
working library? */
shepherd_trace("binding_set_linear_linux: no information about topology");
return false;
}
} else {
shepherd_trace("binding_set_linear_linux: PLPA binding not supported: %s",
sge_dstring_get_string(&error));
sge_dstring_free(&error);
}
return true;
}
/****** shepherd_binding/binding_set_striding_linux() *************************************
* NAME
* binding_set_striding_linux() -- Binds current process to cores.
*
* SYNOPSIS
* bool binding_set_striding_linux(int first_socket, int first_core, int
* amount_of_cores, int offset, int stepsize)
*
* FUNCTION
* Performs a core binding for the calling process according to the
* 'striding' strategy. The first core used is specified by first_socket
* (beginning with 0) and first_core (beginning with 0). If first_core is
* greater than available cores on first_socket, the next socket is examined
* and first_core is reduced by the skipped cores. If the first_core could
* not be found on system (because it was to high) no binding will be done.
*
* If the first core was choosen the next one is defined by the step size 'n'
* which is incremented to the first core found. If the socket has not the
* core (because it was the last core of the socket for example) the next
* socket is examined.
*
* If the system is out of cores and there are still some cores to select
* (because of the amount_of_cores parameter) no core binding will be performed.
*
* INPUTS
* int first_socket - first socket to begin with
* int first_core - first core to start with
* int amount_of_cores - total amount of cores to be used
* int offset - core offset for first core (increments first core used)
* int stepsize - step size
* int type - type of binding (set or env or pe)
*
* RESULT
* bool - Returns true if the binding was performed, otherwise false.
*
* NOTES
* MT-NOTE: binding_set_striding() is MT safe
*
* SEE ALSO
* ???/???
*******************************************************************************/
bool binding_set_striding_linux(int first_socket, int first_core, int amount_of_cores,
int offset, int stepsize, const binding_type_t type)
{
/* n := take every n-th core */
bool bound = false;
dstring error = DSTRING_INIT;
if (_has_core_binding(&error) == true) {
sge_dstring_free(&error);
/* bitmask for processors to turn on and off */
plpa_cpu_set_t cpuset;
/* turn off all processors */
PLPA_CPU_ZERO(&cpuset);
/* when library offers architecture:
- get virtual processor ids in the following manner:
* on socket "first_socket" choose core number "first_core + offset"
* then add n: if core is not available go to next socket
* ...
*/
if (_has_topology_information()) {
/* amount of cores set in processor binding mask */
int cores_set = 0;
/* next socket to use */
int next_socket = first_socket;
/* next core to use */
int next_core = first_core + offset;
/* all the processor ids selected for the mask */
int* proc_id = NULL;
int proc_id_size = 0;
/* maximal amount of sockets on this system */
int max_amount_of_sockets = get_amount_of_sockets();
/* check if we are already out of range */
if (next_socket >= max_amount_of_sockets) {
shepherd_trace("binding_set_striding_linux: already out of sockets");
return false;
}
while (get_amount_of_cores(next_socket) <= next_core) {
/* move on to next socket - could be that we have to deal only with cores
instead of <socket><core> tuples */
next_core -= get_amount_of_cores(next_socket);
next_socket++;
if (next_socket >= max_amount_of_sockets) {
/* we are out of sockets - we do nothing */
shepherd_trace("binding_set_striding_linux: first core: out of sockets");
return false;
}
}
add_proc_ids_linux(next_socket, next_core, &proc_id, &proc_id_size);
/* turn on processor id in mask */
/* collect the rest of the processor ids */
for (cores_set = 1; cores_set < amount_of_cores; cores_set++) {
/* calculate next_core number */
next_core += stepsize;
/* check if we are already out of range */
if (next_socket >= max_amount_of_sockets) {
shepherd_trace("binding_set_striding_linux: out of sockets");
FREE(proc_id);
return false;
}
while (get_amount_of_cores(next_socket) <= next_core) {
/* move on to next socket - could be that we have to deal only with cores
instead of <socket><core> tuples */
next_core -= get_amount_of_cores(next_socket);
next_socket++;
if (next_socket >= max_amount_of_sockets) {
/* we are out of sockets - we do nothing */
shepherd_trace("binding_set_striding_linux: out of sockets!");
FREE(proc_id);
return false;
}
}
/* add processor ids for core */
add_proc_ids_linux(next_socket, next_core, &proc_id, &proc_id_size);
} /* collecting processor ids */
/* set the mask for all processor ids */
set_processor_binding_mask(&cpuset, proc_id, proc_id_size);
if (type == BINDING_TYPE_PE) {
/* rankfile is created: do nothing */
} else if (type == BINDING_TYPE_ENV) {
/* set the environment variable */
if (create_binding_env_linux(proc_id, proc_id_size) == true) {
shepherd_trace("binding_set_striding_linux: SGE_BINDING env var created");
} else {
shepherd_trace("binding_set_striding_linux: problems while creating SGE_BINDING env");
}
} else {
/* bind process to mask */
if (bind_process_to_mask((pid_t) 0, cpuset) == true) {
/* there was an error while binding */
bound = true;
}
}
FREE(proc_id);
} else {
/* setting bitmask without topology information which could
not be right? */
shepherd_trace("binding_set_striding_linux: bitmask without topology information");
return false;
}
} else {
/* has no core binding feature */
sge_dstring_free(&error);
return false;
}
return bound;
}
/****** shepherd_binding/set_processor_binding_mask() *******************************
* NAME
* set_processor_binding_mask() -- Sets the processor binding mask with processor ids.
*
* SYNOPSIS
* static bool set_processor_binding_mask(plpa_cpu_set_t* cpuset, const int*
* processor_ids)
*
* FUNCTION
* Turns on all given processors on a processor id mask.
*
* INPUTS
* const int* processor_ids - An array with all processor ids to turn on.
* const int no_of_ids) - The length of the array.
*
* OUTPUTS
* plpa_cpu_set_t* cpuset - The processor id mask
*
* RESULT
* static bool - false when errors occured otherwise true
*
* NOTES
* MT-NOTE: set_processor_binding_mask() is MT safe
*
* SEE ALSO
* ???/???
*******************************************************************************/
static bool set_processor_binding_mask(plpa_cpu_set_t* cpuset, const int processor_ids[],
const int no_of_ids)
{
int proc_num;
if (processor_ids == NULL || cpuset == NULL) {
return false;
}
/* turns on all processors from processor_ids array */
for (proc_num = 0; proc_num < no_of_ids; proc_num++) {
PLPA_CPU_SET(processor_ids[proc_num], cpuset);
}
return true;
}
/****** shepherd_binding/bind_process_to_mask() *************************************
* NAME
* bind_process_to_mask() -- ???
*
* SYNOPSIS
* static bool bind_process_to_mask(const pid_t pid, const plpa_cpu_set_t
* cpuset)
*
* FUNCTION
* ???
*
* INPUTS
* const pid_t pid - ???
* const plpa_cpu_set_t cpuset - ???
*
* RESULT
* static bool -
*
* NOTES
* MT-NOTE: bind_process_to_mask() is not MT safe
*
* SEE ALSO
* ???/???
*******************************************************************************/
static bool bind_process_to_mask(const pid_t pid, const plpa_cpu_set_t cpuset)
{
if (has_core_binding()) {
/* we only need core binding capabilites, no topology is required */
/* DG TODO delete addres and change header in order to make cputset to pointer */
if (plpa_sched_setaffinity(pid, sizeof(plpa_cpu_set_t), &cpuset) != 0) {
return false;
} else {
return true;
}
}
return false;
}
/****** shepherd_binding/binding_explicit() *****************************************
* NAME
* binding_explicit() -- Binds current process to specified CPU cores.
*
* SYNOPSIS
* bool binding_explicit(int* list_of_cores, int camount, int*
* list_of_sockets, int samount)
*
* FUNCTION
* Binds the current process to the cores specified by a <socket>,<core>
* tuple. The tuple is given by a list of sockets and a list of cores.
* The elements on the same position of these lists are reflecting
* a tuple. Therefore the length of the lists must be the same.
*
* Binding is currently done on Linux hosts only where the machine topology
* can be retrieved with PLPA library. It also does require this library.
*
* INPUTS
* int* list_of_sockets - List of sockets in the same order as list of cores.
* int samount - Length of the list of sockets.
* int* list_of_cores - List of cores in the same order as list of sockets.
* int camount - Length of the list of cores.
* int type - Type of binding ( set | env | pe ).
*
* RESULT
* bool - true when the current process was bound like specified with the
* input parameter
*
* NOTES
* MT-NOTE: binding_explicit() is not MT safe
*
* SEE ALSO
* ???/???
*******************************************************************************/
static bool binding_explicit(const int* list_of_sockets, const int samount,
const int* list_of_cores, const int camount, const binding_type_t type)
{
/* return value: successful bound or not */
bool bound = false;
/* check if we have exactly the same amount of sockets as cores */
if (camount != samount) {
shepherd_trace("binding_explicit: bug: amount of sockets != amount of cores");
return false;
}
if (list_of_sockets == NULL || list_of_cores == NULL) {
shepherd_trace("binding_explicit: wrong input values");
}
/* do only on linux when we have core binding feature in kernel */
if (has_core_binding() == true) {
if (_has_topology_information()) {
/* bitmask for processors to turn on and off */
plpa_cpu_set_t cpuset;
/* turn off all processors */
PLPA_CPU_ZERO(&cpuset);
/* the internal processor ids selected for the binding mask */
int* proc_id = NULL;
int proc_id_size = 0;
/* processor id counter */
int pr_id_ctr;
/* Fetch for each socket,core tuple the processor id.
If this is not possible for one do nothing and return false. */
/* go through all socket,core tuples and get the processor id */
for (pr_id_ctr = 0; pr_id_ctr < camount; pr_id_ctr++) {
/* get the processor id */
/* get the OS internal processor ids */
if (add_proc_ids_linux(list_of_sockets[pr_id_ctr], list_of_cores[pr_id_ctr],
&proc_id, &proc_id_size) != true) {
FREE(proc_id);
return false;
}
}
/* generate the core binding mask out of the processor id array */
set_processor_binding_mask(&cpuset, proc_id, proc_id_size);
if (type == BINDING_TYPE_PE) {
/* rankfile is created */
} else if (type == BINDING_TYPE_ENV) {
/* set the environment variable */
if (create_binding_env_linux(proc_id, proc_id_size) == true) {
shepherd_trace("binding_explicit: SGE_BINDING env var created");
} else {
shepherd_trace("binding_explicit: problems while creating SGE_BINDING env");
}
} else {
/* do the core binding for the current process with the mask */
if (bind_process_to_mask((pid_t) 0, cpuset) == true) {
/* there was an error while binding */
bound = true;
} else {
/* couldn't be bound return false */
shepherd_trace("binding_explicit: bind_process_to_mask was not successful");
}
}
FREE(proc_id);
} else {
/* has no topology information */
shepherd_trace("binding_explicit: Linux does not offer topology information");
}
} else {
/* has no core binding ability */
shepherd_trace("binding_explicit: host does not support core binding");
}
return bound;
}
/****** shepherd_binding/create_binding_env_linux() ****************************
* NAME
* create_binding_env_linux() -- Creates SGE_BINDING env variable.
*
* SYNOPSIS
* bool create_binding_env_linux(const int* proc_id, const int amount)
*
* FUNCTION
* Creates the SGE_BINDING environment variable on Linux operating system.
* This environment variable contains a space separated list of Linux
* internal processor ids given as input parameter.
*
* INPUTS
* const int* proc_id - List of processor ids.
* const int amount - Length of processor id list.
*
* RESULT
* bool - true when SGE_BINDING env var could be generated false if not
*
* NOTES
* MT-NOTE: create_binding_env_linux() is MT safe
*
*******************************************************************************/
bool create_binding_env_linux(const int* proc_id, const int amount)
{
bool retval = true;
dstring sge_binding = DSTRING_INIT;
dstring proc = DSTRING_INIT;
int i;
for (i = 0; i < amount; i++) {
sge_dstring_clear(&proc);
/* DG TODO env ends with whitespace char */
sge_dstring_sprintf(&proc, "%d ", proc_id[i]);
sge_dstring_append_dstring(&sge_binding, &proc);
}
if (sge_setenv("SGE_BINDING", sge_dstring_get_string(&sge_binding)) != 1) {
/* settting env var was not successful */
retval = false;
shepherd_trace("create_binding_env_linux: Couldn't set environment variable!");
}
sge_dstring_free(&sge_binding);
sge_dstring_free(&proc);
return retval;
}
#endif
|