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
|
/*___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_rmon.h"
#include "uti/sge_log.h"
#include "sgeobj/sge_ja_task.h"
#include "sgeobj/sge_answer.h"
#include "sgeobj/sge_suser.h"
#include "sgeobj/sge_job.h"
#include "sgeobj/sge_suser.h"
#include "sgeobj/sge_object.h"
#include "sge.h"
#include "basis_types.h"
#include "msg_qmaster.h"
/****** sgeobj/suser/Master_SUser_List ****************************************
* NAME
* Master_SUser_List -- list of submit users
*
* SYNOPSIS
* lList *Master_SUser_List;
*
* FUNCTION
* The global variable 'Master_SUser_List' is held within the master
* daemon. It containes one CULL element of type 'SU_Type' for each
* user who submitted a job.
* Enties within this list have to be updated when a new job
* enters/leaves the SGE system
*
* SEE ALSO
* sgeobj/suser/SU_Type
******************************************************************************/
/****** sgeobj/suser/suser_list_add() *****************************************
* NAME
* suser_list_add() -- Add a new entry (uniq) entry into a list
*
* SYNOPSIS
* lListElem* suser_list_add(lList **suser_list, lList **answer_list,
* const char *suser_name)
*
* FUNCTION
* This function creates a new CULL element for the user "susername"
* into the "suser_list". The newly created element will be returned.
* If an element for this user already exists than this element will
* be returned.
*
* INPUTS
* lList **suser_list - SU_Type list
* lList **answer_list - AN_Type list
* const char *suser_name - username
*
* RESULT
* lListElem* - SU_Type element or NULL
*
* SEE ALSO
* sgeobj/suser/SU_Type
* sgeobj/suser/Master_SUser_List
******************************************************************************/
lListElem *suser_list_add(lList **suser_list, lList **answer_list,
const char *suser_name)
{
lListElem *ret = NULL;
if (suser_list != NULL) {
ret = suser_list_find(*suser_list, suser_name);
if (ret == NULL) {
ret = lAddElemStr(suser_list, SU_name, suser_name, SU_Type);
}
}
return ret;
}
/****** sgeobj/suser/suser_list_find() ****************************************
* NAME
* suser_list_find() -- find a user entry in a list
*
* SYNOPSIS
* lListElem* suser_list_find(lList *suser_list,
* const char *suser_name)
*
* FUNCTION
* This function tries to find the first entry for user "suser_name"
* in the list "suser_list".
*
* INPUTS
* lList *suser_list - SU_Type list
* const char *suser_name - username
*
* RESULT
* lListElem* - SU_Type element pointer or NULL
*
* SEE ALSO
* sgeobj/suser/SU_Type
* sgeobj/suser/Master_SUser_List
******************************************************************************/
lListElem *suser_list_find(lList *suser_list, const char *suser_name)
{
lListElem *ret = NULL;
if (suser_list != NULL && suser_name != NULL) {
ret = lGetElemStr(suser_list, SU_name, suser_name);
}
return ret;
}
/****** sgeobj/suser/suser_increase_job_counter() *****************************
* NAME
* suser_increase_job_counter() -- increase the users job counter
*
* SYNOPSIS
* void suser_increase_job_counter(lListElem *suser)
*
* FUNCTION
* The job counter within "suser" will be increased by one
*
* INPUTS
* lListElem *suser - SU_Type list
*
* RESULT
* void - NONE
*
* SEE ALSO
* sgeobj/suser/SU_Type
* sgeobj/suser/Master_SUser_List
******************************************************************************/
void suser_increase_job_counter(lListElem *suser)
{
if (suser != NULL) {
lAddUlong(suser, SU_jobs, 1);
}
}
/****** sgeobj/suser/suser_decrease_job_counter() *****************************
* NAME
* suser_decrease_job_counter() -- decrease the users job counter
*
* SYNOPSIS
* void suser_decrease_job_counter(lListElem *suser)
*
* FUNCTION
* The job counter within "suser" will be decreased by one
*
* INPUTS
* lListElem *suser - SU_Type list
*
* RESULT
* void - NONE
*
* SEE ALSO
* sgeobj/suser/SU_Type
* sgeobj/suser/Master_SUser_List
******************************************************************************/
void suser_decrease_job_counter(lListElem *suser)
{
DENTER(TOP_LAYER, "suser_decrease_job_counter");
if (suser != NULL) {
u_long32 jobs = lGetUlong(suser, SU_jobs);
if (jobs == 0) {
ERROR((SGE_EVENT, MSG_SUSERCNTISALREADYZERO_S,
lGetString(suser, SU_name)));
} else {
lAddUlong(suser, SU_jobs, -1);
}
}
DEXIT;
}
/****** sgeobj/suser/suser_get_job_counter() **********************************
* NAME
* suser_get_job_counter() -- return the users job counter
*
* SYNOPSIS
* u_long32 suser_get_job_counter(lListElem *suser)
*
* FUNCTION
* Returns the current number of jobs registed for "suser"
*
* INPUTS
* lListElem *suser - SU_Type element
*
* RESULT
* u_long32 - number of jobs
*
* SEE ALSO
* sgeobj/suser/SU_Type
* sgeobj/suser/Master_SUser_List
******************************************************************************/
u_long32 suser_get_job_counter(lListElem *suser)
{
u_long32 ret = 0;
if (suser != NULL) {
ret = lGetUlong(suser, SU_jobs);
}
return ret;
}
/****** sgeobj/suser/suser_check_new_job() ************************************
* NAME
* suser_check_new_job() -- checks, if a job can be registered
*
* SYNOPSIS
* int suser_check_new_job(const lListElem *job, u_long32 max_u_jobs,
* int force_registration)
*
* FUNCTION
* This function checks whether a new "job" would exceed the maxium
* number of allowed jobs per user ("max_u_jobs"). JB_owner of "job"
* is the username which will be used by this function to compare
* the current number of registered jobs with "max_u_jobs". If the
* limit would be exceeded than the function will return 1 otherwise 0.
*
* INPUTS
* const lListElem *job - JB_Type element
* u_long32 max_u_jobs - maximum number of allowed jobs per user
* int force_registration - force job registration
*
* RESULT
* int - 1 => limit would be exceeded
* 0 => otherwise
******************************************************************************/
int suser_check_new_job(const lListElem *job, u_long32 max_u_jobs)
{
const char *submit_user = NULL;
lListElem *suser = NULL;
int ret = 1;
DENTER(TOP_LAYER, "suser_check_new_job");
submit_user = lGetString(job, JB_owner);
suser = suser_list_add(object_type_get_master_list(SGE_TYPE_SUSER), NULL, submit_user);
if (suser != NULL) {
if(max_u_jobs == 0 ||
max_u_jobs > suser_get_job_counter(suser))
ret = 0;
else
ret = 1;
}
DRETURN(ret);
}
/****** sgeobj/suser/suser_register_new_job() *********************************
* NAME
* suser_register_new_job() -- try to register a new job
*
* SYNOPSIS
* int suser_register_new_job(const lListElem *job,
* u_long32 max_u_jobs,
* int force_registration)
*
* FUNCTION
* This function checks whether a new "job" would exceed the maximum
* number of allowed jobs per user ("max_u_jobs"). JB_owner of "job"
* is the username which will be used by this function to compare
* the current number of registered jobs with "max_u_jobs". If the
* limit would be exceeded than the function will return 1, otherwise
* it will increase the jobcounter of the job owner and return 0.
* In some situations it may be necessary to force the incrementating
* of the jobcounter (reading jobs from spool area). This may be done
* with "force_registration".
*
* INPUTS
* const lListElem *job - JB_Type element
* u_long32 max_u_jobs - maximum number of allowed jobs per user
* int force_registration - force job registration
*
* RESULT
* int - 1 => limit would be exceeded
* 0 => otherwise
*
* SEE ALSO
* sgeobj/suser/SU_Type
* sgeobj/suser/Master_SUser_List
* qmaster/job/job_list_register_new_job()
******************************************************************************/
int suser_register_new_job(const lListElem *job, u_long32 max_u_jobs,
int force_registration)
{
const char *submit_user = NULL;
lListElem *suser = NULL;
int ret = 0;
DENTER(TOP_LAYER, "suser_register_new_job");
if(!force_registration){
ret = suser_check_new_job(job, max_u_jobs);
}
if( ret == 0){
submit_user = lGetString(job, JB_owner);
suser = suser_list_add(object_type_get_master_list(SGE_TYPE_SUSER), NULL, submit_user);
suser_increase_job_counter(suser);
}
DEXIT;
return ret;
}
/****** sgeobj/suser/suser_get_job_count() ************************************
* NAME
* suser_job_count() - number of jobs for a given user
*
* SYNOPSIS
* void suser_job_count(const lListElem *job)
*
* FUNCTION
* number of jobs for a given user
*
* INPUTS
* const lListElem *job - JB_Type element
*
* RESULT
* number of jobs in the system
******************************************************************************/
int suser_job_count(const lListElem *job)
{
const char *submit_user = NULL;
lListElem *suser = NULL;
int ret = 0;
DENTER(TOP_LAYER, "suser_job_job");
submit_user = lGetString(job, JB_owner);
suser = suser_list_find(*object_type_get_master_list(SGE_TYPE_SUSER), submit_user);
if (suser != NULL) {
ret = suser_get_job_counter(suser);
}
DEXIT;
return ret;
}
/****** sgeobj/suser/suser_unregister_job() ***********************************
* NAME
* suser_unregister_job() -- unregister a job
*
* SYNOPSIS
* void suser_unregister_job(const lListElem *job)
*
* FUNCTION
* Decrease the jobcounter for the job owner of "job".
*
* INPUTS
* const lListElem *job - JB_Type element
*
* RESULT
* void - NONE
*
* SEE ALSO
* sgeobj/suser/SU_Type
* sgeobj/suser/Master_SUser_List
******************************************************************************/
void suser_unregister_job(const lListElem *job)
{
const char *submit_user = NULL;
lListElem *suser = NULL;
DENTER(TOP_LAYER, "suser_unregister_job");
submit_user = lGetString(job, JB_owner);
suser = suser_list_find(*object_type_get_master_list(SGE_TYPE_SUSER), submit_user);
if (suser != NULL) {
suser_decrease_job_counter(suser);
}
DEXIT;
}
|