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
|
/*___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 <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#if defined(SOLARIS64) || defined(SOLARISAMD64)
# include <sys/pset.h>
#elif defined(ALPHA)
# include <sys/processor.h>
#elif defined(__sgi)
# include <sys/sysmp.h>
# include <sys/prctl.h>
# include <sys/schedctl.h>
#endif
#include "sge_uidgid.h"
#include "sge_nprocs.h"
#include "sge_pset.h"
#include "basis_types.h"
#include "config_file.h"
#include "execution_states.h"
#include "err_trace.h"
#include "sge_stdio.h"
#define PROC_SET_OK 0
#define PROC_SET_WARNING 1
#define PROC_SET_ERROR -1
#define PROC_SET_BUSY -2
#if defined(__sgi)
# define SGE_MPSET_MULTIPLIER 100
#endif
#if defined(ALPHA)
typedef long sbv_t;
#elif defined(__sgi)
/*
* declaration of sbv_t from sys/runq_private.h
* including sys/runq_private.h lead to compile errors.
*/
typedef unsigned long long sbv_t;
#endif
#if defined(ALPHA)
# if defined(ALPHA4)
int assign_pid_to_pset(pid_t *pid_list, long num_pids,
int pset_id, long flags);
int assign_cpu_to_pset(long cpu, int pset_id, long option);
# endif
int destroy_pset(int pset_id, int number);
int create_pset(void);
void print_pset_error(int ret);
#endif
#if defined(__sgi) || defined(ALPHA)
static int range2proc_vec(char *, sbv_t *, char *);
#endif
#if defined(__sgi) || defined(ALPHA) || defined(SOLARIS64) || defined(SOLARISAMD64)
static int free_processor_set(char *err_str);
static int set_processor_range(char *crange, int proc_set_num, char *err_str);
#endif
void sge_pset_create_processor_set(void)
{
#if defined(__sgi) || defined(ALPHA) || defined(SOLARIS64) || defined(SOLARISAMD64)
char err_str[2*SGE_PATH_MAX+128];
/* SGI IRIX processor set stuff */
if (strcasecmp("UNDEFINED",get_conf_val("processors"))) {
int ret;
sge_switch2start_user();
if ((ret=set_processor_range(get_conf_val("processors"),
(int) strtol(get_conf_val("job_id"), NULL, 10),
err_str)) != PROC_SET_OK) {
sge_switch2admin_user();
if (ret == PROC_SET_WARNING) /* not critical - e.g. not root */
shepherd_trace("warning: processor set not set in set_processor_range");
else { /* critical --> use err_str to indicate error */
shepherd_trace("critical error in set_processor_range - bailing out");
shepherd_state = SSTATE_PROCSET_NOTSET;
shepherd_error(1, err_str);
}
} else {
sge_switch2admin_user();
}
}
#endif
}
void sge_pset_free_processor_set(void)
{
#if defined(__sgi) || defined(ALPHA) || defined(SOLARIS64) || defined(SOLARISAMD64)
/* SGI IRIX processor set stuff */
if (strcasecmp("UNDEFINED",get_conf_val("processors"))) {
char err_str[2*SGE_PATH_MAX+128];
int ret;
sge_switch2start_user();
if ((ret=free_processor_set(err_str)) != PROC_SET_OK) {
sge_switch2admin_user();
switch (ret) {
case PROC_SET_WARNING: /* not critical - e.g. not root */
shepherd_trace("warning: processor set not freed in free_processor_set - "
"did no exist, probably");
break;
case PROC_SET_ERROR: /* critical - err_str indicates error */
shepherd_trace("critical error in free_processor_set - bailing out");
shepherd_state = SSTATE_PROCSET_NOTFREED;
shepherd_error(1, err_str);
break;
case PROC_SET_BUSY: /* still processes running in processor set */
shepherd_trace("error in releasing processor set");
shepherd_state = SSTATE_PROCSET_NOTFREED;
shepherd_error(1, err_str);
break;
default: /* should not occur */
sprintf(err_str,
"internal error after free_processor_set - ret=%d", ret);
shepherd_state = SSTATE_PROCSET_NOTFREED;
shepherd_error(1, err_str);
break;
}
} else {
sge_switch2admin_user();
}
}
#endif
}
#if defined(__sgi) || defined(ALPHA) || defined(SOLARIS64) || defined(SOLARISAMD64)
/****** shepherd/pset/set_processor_range() ***********************************
* NAME
* set_processor_range() -- sets processor range according to string
*
* SYNOPSIS
* int set_processor_range(char *crange,
* int proc_set_num,
* char *err_str)
*
* FUNCTION
* Sets processor range according to string specification.
* The unique processor set number will be stored in the file
* "processor_set_number" located in the current working directory.
*
* Format:
* n|[n][-[m]],... , n,m being int >= 0.
* no blanks are allowed in between (this is supposed to be
* handled by the queue configuration parsing routine)
*
* INPUTS
* char *crange - String specifier of the range. Will be
* modified via strtok internally.
* int proc_set_num - The base for a unique processor set number.
* This number is already supposed to be unique.
* for the job (currently the job_id).
* set_processor_range() manipulates it to make
* sure that it is a unique processor set number.
* char *err_str - The error message string to be used by the
* calling routine retuns value != PROC_SET_OK
* Also used for trace messages internally.
* Passed to invoked subroutines.
*
* RESULT
* int - error state
* PROC_SET_OK - Ok
* PROC_SET_ERROR - A critical error occurred; either during
* execution of sysmp() calls or as returned
* from range2proc_vec().
* PROC_SET_WARNING - A non-critical error occurred (e.g. the
* procedure is executed as unpriveliged user)
******************************************************************************/
static int set_processor_range(char *crange, int proc_set_num, char *err_str)
{
int ret;
FILE *fp;
#if defined(__sgi) || defined(ALPHA)
sbv_t proc_vec;
#endif
#if defined(__sgi) || defined(ALPHA)
if ((ret=range2proc_vec(crange, &proc_vec, err_str)))
return ret;
#endif
#if defined(ALPHA)
/* It is not possible to bind processor #0 to other psets than pset #0
* So if we get a pset with #0 contained in the range we do nothing.
* The process gets not bound to a processor but it is guaranteed
* that no other job will get processor #0 exclusively. It is upon
* the administrator to prevent overlapping of the psets in different
* queues
*/
if (!(proc_vec & 1)) { /* processor #0 not contained */
if ((proc_set_num = create_pset())<0) {
print_pset_error(proc_set_num); /* prints error to stdout */
shepherd_trace("MPPS_CREATE: failed to setup a new processor set");
return PROC_SET_ERROR;
}
if (assign_cpu_to_pset(proc_vec, proc_set_num, 0)<0) {
print_pset_error(proc_set_num); /* prints error to stdout */
shepherd_trace("MPPS_CREATE: failed assigning processors to processor set");
return PROC_SET_ERROR;
}
} else {
/* use default pset (id #0) */
proc_set_num = 0;
}
#elif defined(SOLARIS64) || defined(SOLARISAMD64)
/*
* We do not create a processor set here
* The system administrator is responsible to do this
* We read one id from crange. This is the processor-set id we should use.
*/
if (crange) {
char *tok, *next;
if ((tok=strtok(crange, " \t\n"))) {
proc_set_num = (int) strtol(tok, &next, 10);
if (next == tok) {
sprintf(err_str, "wrong processor set id format: %20.20s", crange);
shepherd_trace(err_str);
return PROC_SET_ERROR;
}
}
}
#endif
/* dump to file for later use */
if ((fp = fopen("processor_set_number","w"))) {
fprintf(fp,"%d\n",proc_set_num);
FCLOSE(fp);
} else {
shepherd_trace("MPPS_CREATE: failed creating file processor_set_number");
return PROC_SET_ERROR;
}
#if defined(ALPHA)
/* Now let's assign ourselves to the previously created processor set */
if (proc_set_num) {
pid_t pid_list[1];
pid_list[0] = getpid();
if (assign_pid_to_pset(pid_list, 1, proc_set_num, PSET_EXCLUSIVE)<0) {
print_pset_error(proc_set_num); /* prints error to stdout */
shepherd_trace("MPPS_CREATE: failed assigning processors to processor set");
return PROC_SET_ERROR;
}
}
#elif defined(SOLARIS64) || defined(SOLARISAMD64)
if (proc_set_num) {
int local_ret;
sprintf(err_str,"pset_bind: try to use processorset %d", proc_set_num);
shepherd_trace(err_str);
if (pset_bind(proc_set_num, P_PID, P_MYID, NULL)) {
switch (errno) {
case EFAULT:
shepherd_trace("pset_bind: The location pointed to by opset was not"
" NULL and not writable by the user");
local_ret = PROC_SET_ERROR;
break;
case EINVAL:
shepherd_trace("pset_bind: invalid processor set was specified");
local_ret = PROC_SET_ERROR;
break;
case EPERM:
shepherd_trace("pset_bind: The effective user of the calling "
"process is not super-user");
local_ret = PROC_SET_ERROR;
break;
default:
sprintf(err_str,"pset_bind: unexpected error - errno=%d", errno);
shepherd_trace(err_str);
local_ret = PROC_SET_ERROR;
break;
}
return local_ret;
}
}
#endif
return PROC_SET_OK;
FCLOSE_ERROR:
shepherd_trace("MPPS_CREATE: failed creating file processor_set_number");
return PROC_SET_ERROR;
}
/****** shepherd/pset/free_processor_set() ************************************
* NAME
* free_processor_set() -- Release the previously occupied proc set.
*
* SYNOPSIS
* int free_processor_set(char *err_str)
*
* FUNCTION
* Release the previously occupied processor set. The unique
* processor set number is read from the file "processor_set_number"
* which has to be located in the current working directory.
*
* INPUTS
* char *err_str - The error message string to be used by the calling
* routine if return value != PROC_SET_OK. Also used
* for trace messages internally
*
* RESULT
* int - Error state
* PROC_SET_OK - Ok
* PROC_SET_BUSY - The processor set is still in use, i.e.
* processes originating from the job have not
* finished.
* PROC_SET_ERROR - A critical error occurred. During execution
* of sysmp() calls.
* PROC_SET_WARNING - A non-critical error occurred (e.g. the
* procedure is executed as unpriviliged user)
******************************************************************************/
static int free_processor_set(char *err_str)
{
FILE *fp;
int proc_set_num;
/* read unique processor set number from file */
if ((fp = fopen("processor_set_number","r"))) {
fscanf(fp, "%d", &proc_set_num);
FCLOSE_IGNORE_ERROR(fp);
} else {
shepherd_trace("MPPS_CREATE: failed reading from file processor_set_number");
return PROC_SET_ERROR;
}
#if defined(ALPHA)
if (proc_set_num) {
int ret;
pid_t pid_list[1];
pid_list[0] = getpid();
/* assign shepherd back to default processor set */
if ((ret=assign_pid_to_pset(pid_list, 1, 0, 0))<0) {
print_pset_error(ret); /* prints error to stdout */
shepherd_trace("MPPS_CREATE: failed assigning processors to processor set");
return PROC_SET_ERROR;
}
if ((ret = destroy_pset(proc_set_num, 1))==PROCESSOR_SET_ACTIVE) {
print_pset_error(ret);
shepherd_trace("MPPS_CREATE: failed assigning processors to processor set");
return PROC_SET_ERROR;
}
}
#elif defined(SOLARIS64) || defined(SOLARISAMD64)
/*
* We do not release a processor set here
* The system administrator is responsible to do this
*/
#endif
return PROC_SET_OK;
}
#if defined(__sgi) || defined(ALPHA)
/****** shepherd/pset/range2proc_vec() ****************************************
* NAME
* range2proc_vec() -- Computes bit vector (prcessor set spec.)
*
* SYNOPSIS
* static int range2proc_vec(char *crange, sbv_t *proc_vec, char *err_str)
*
* FUNCTION
* Computes bit vector with bits set corresponding to string
* specification of processor range.
*
* INPUTS
* char *crange - String specifier of the range. Will be modified
* internally. Format:
* n|[n][-[m]],... , n,m being int >= 0.
* no blanks are allowed in between
* sbv_t *proc_vec - a bit vector of type sbv_t with all bits set
* contained in the range description and all
* other bits zero.
* char *err_str - The error message string to be used by the
* calling routine if return value != PROC_SET_OK.
* Also used for trace messages internally.
*
* RESULT
* static int - Error state
* PROC_SET_OK - Ok
* PROC_SET_ERROR - Invalid range value in range description.
******************************************************************************/
static int range2proc_vec(char *crange, sbv_t *proc_vec, char *err_str)
{
char *tok, *next, *p=crange;
int min, max, i;
int dash_used;
int sbvlen;
*proc_vec = (sbv_t) 0;
/* compute max number of processors and thus significant length of
* proc_vec
*/
sbvlen = sge_nprocs() - 1; /* LSB corresponds to proc. 0 */
/* loop trough range string with "," as token delimiter
* Set processor vector for each token = range definition element.
*/
while ((tok=strtok(p,","))) {
if (p) p=NULL;
/* for each token parse range, i.e. find
* whether min or max value is set and whether a "-" sign
* was used
*/
min = -1;
max = -1;
dash_used = 0;
while (*tok) {
next = NULL;
if (*tok == '-') {
dash_used = 1;
if (min == -1)
min = 0;
} else { /* should be a number */
if (min == -1 && !dash_used ) {
min = (int) strtol(tok, &next, 10);
if (next == tok || min < 0 || min > sbvlen) {
sprintf(err_str, "range2proc_vec: wrong processor range format: %20.20s", crange);
shepherd_trace(err_str);
return PROC_SET_ERROR;
}
} else if (max == -1 && dash_used ) {
max = (int) strtol(tok, &next, 10);
if (next == tok || max < 0 || max > sbvlen) {
sprintf(err_str, "range2proc_vec: wrong processor range format: %20.20s", crange);
shepherd_trace(err_str);
return PROC_SET_ERROR;
}
}
}
/* proceed either by one char in case of a "-" or by the
* width of the number field
*/
if (next)
tok = next;
else
tok++;
}
/* fill out full range specification "n-m" according to findings */
if (!dash_used )
max = min;
else {
if (min == -1) min = 0;
if (max == -1) max = sbvlen;
}
/* set processor vector as defined by range specification */
for(i=min; i<=max; i++)
*proc_vec |= (sbv_t) 1<<i;
}
return PROC_SET_OK;
}
#endif
#endif
|