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
|
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
*
* The Contents of this file are made available subject to the terms of
* the Sun Industry Standards Source License Version 1.2
*
* Sun Microsystems Inc., March, 2001
*
*
* Sun Industry Standards Source License Version 1.2
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.2 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2001 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
************************************************************************/
/*___INFO__MARK_END__*/
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include "uti/sge_rmon.h"
#include "uti/rmon.h"
#include "uti/sge_stdlib.h"
#include "uti/sge_log.h"
#include "uti/msg_utilib.h"
#include "uti/sge_unistd.h"
#include "uti/sge_arch.h"
#include "uti/sge_string.h"
#include "uti/setup_path.h"
#include "sge.h"
#include "msg_common.h"
/****** uti/prog/sge_get_arch() ************************************************
* NAME
* sge_get_arch() -- SGE/EE architecture string
*
* SYNOPSIS
* const char* sge_get_arch(void)
*
* FUNCTION
* This function returns the SGE/EE architecture string of that
* host where the application is running which called this
* functionon.
*
* NOTES:
* MT-NOTE: sge_get_arch() is MT safe
*
* RESULT
* const char* - architecture string
******************************************************************************/
const char *sge_get_arch(void)
{
#ifndef SGE_ARCH_STRING
# error "Define an architecture for SGE"
#endif
return (SGE_ARCH_STRING);
}
/****** uti/prog/sge_get_root_dir() *******************************************
* NAME
* sge_get_root_dir() -- SGE installation directory
*
* SYNOPSIS
* const char* sge_get_root_dir(int do_exit,
* char *buffer,
* size_t size,
* int do_error_log )
*
* FUNCTION
* This function returns the installation directory of SGE.
* This directory is defined by the SGE_ROOT environment variable
* of the calling process.
* If the environment variable does not exist or is not set then
* this function will handle this as error and return NULL
* (do_exit = 0). If 'do_exit' is 1 and an error occures, the
* function will terminate the calling application.
*
* INPUTS
* int do_exit - Terminate the application in case of an error
* char *buffer - buffer to be used for error message
* size_t size - size of buffer
* int do_error_log - enable/disable error logging
*
* RESULT
* const char* - Root directory of the SGE installation
*
* NOTES
* MT-NOTE: sge_get_arch() is MT safe
*******************************************************************************/
const char *sge_get_root_dir(int do_exit, char *buffer, size_t size, int do_error_log)
{
char *sge_root;
char *s;
DENTER_(TOP_LAYER, "sge_get_root_dir");
/*
* Read some env variables
*/
sge_root = getenv("SGE_ROOT");
/*
* Check the env variables
*/
if (sge_root && strlen(sge_root) > 0) {
s = strdup(sge_root);
} else {
goto error;
}
/*
* Get rid of trailing slash
*/
if (s[strlen(s)-1] == '/') {
s[strlen(s)-1] = '\0';
}
DRETURN_(s);
error:
if (do_error_log) {
if (buffer != NULL) {
sge_strlcpy(buffer, MSG_SGEROOTNOTSET, size);
} else {
CRITICAL((SGE_EVENT, SFNMAX, MSG_SGEROOTNOTSET));
}
}
DEXIT_;
if (do_exit) {
SGE_EXIT(NULL, 1);
}
return NULL;
}
/****** uti/prog/sge_get_lib_dir() ********************************************
* NAME
* sge_get_lib_dir() -- Path to SGE libraries
*
* SYNOPSIS
* int sge_get_lib_dir(char *buffer, size_t size)
*
* FUNCTION
* This function stores the path to the SGE libraries in the buffer
*
* INPUTS
* char *buffer - Buffer where to store the SGE library dir
* size_t size - Size of the given buffer
* NOTES:
* MT-NOTE: sge_get_lib_dir() is MT safe
*
* RESULT
* int - Return code
* 1 - Success
* -1 - Given buffer is NULL
* -2 - SGE_ROOT cannot be obtained
* -3 - given buffer is to small
******************************************************************************/
int sge_get_lib_dir(char *buffer, size_t size) {
const char *sge_root = NULL;
const char *sge_arch = NULL;
if (buffer == NULL) {
return -1;
}
buffer[0] = '\0';
/* obtain SGE_ROOT
* error-logging ist done by sge_get_root_dir()
*/
sge_root = sge_get_root_dir(0, NULL, 0, 1);
if (sge_root == NULL) {
return -2;
}
/* obtain SGE_ARCH */
sge_arch = sge_get_arch();
/* check if given lib_dir-buffer is big enough
* sge_root + sge_arch + /lib/ + \0
*/
if (strlen(sge_root) + strlen(sge_arch) + 6 > size) {
return -3;
}
/* Build lib-dir path */
sge_strlcat(buffer, sge_root, size);
sge_strlcat(buffer, "/lib/", size);
sge_strlcat(buffer, sge_arch, size);
return 1;
}
/****** uti/prog/sge_get_default_cell() ***************************************
* NAME
* sge_get_default_cell() -- get cell name and remove trailing slash
*
* SYNOPSIS
* const char* sge_get_default_cell(void)
*
* FUNCTION
* This function returns the defined cell name of SGE.
* This directory is defined by the SGE_CELL environment variable
* of the calling process.
* If the environment variable does not exist or is not set then
* this function will return the 'DEFAULT_CELL'.
*
* RESULT
* const char* - Cell name of this SGE installation
*
* NOTES
* MT-NOTE: sge_get_default_cell() is MT safe
******************************************************************************/
const char *sge_get_default_cell(void)
{
char *sge_cell;
char *s;
DENTER_(TOP_LAYER, "sge_get_default_cell");
/*
* Read some env variables
*/
sge_cell = getenv("SGE_CELL");
/*
* Check the env variables
*/
if (sge_cell) {
s = strdup(sge_cell);
} else {
s = NULL;
}
/*
* Use default?
*/
if (!s || strlen(s) == 0) {
s = DEFAULT_CELL;
} else {
/*
* Get rid of trailing slash
*/
if (s[strlen(s)-1] == '/') {
s[strlen(s)-1] = '\0';
}
}
DRETURN_(s);
}
/****** uti/prog/sge_get_alias_path() *****************************************
* NAME
* sge_get_alias_path() -- Return the path of the 'alias_file'
*
* SYNOPSIS
* const char* sge_get_alias_path(void)
*
* FUNCTION
* Return the path of the 'alias_file'
*
* NOTES
* MT-NOTE: sge_get_alias_path() is MT safe
*
******************************************************************************/
const char *sge_get_alias_path(void)
{
const char *sge_root, *sge_cell;
char *cp;
int len;
SGE_STRUCT_STAT sbuf;
DENTER_(TOP_LAYER, "sge_get_alias_path");
sge_root = sge_get_root_dir(1, NULL, 0, 1);
sge_cell = sge_get_default_cell();
if (SGE_STAT(sge_root, &sbuf)) {
CRITICAL((SGE_EVENT, MSG_SGETEXT_SGEROOTNOTFOUND_S , sge_root));
SGE_EXIT(NULL, 1);
}
len = strlen(sge_root) + strlen(sge_cell) + strlen(COMMON_DIR) + strlen(ALIAS_FILE) + 5;
if (!(cp = malloc(len))) {
CRITICAL((SGE_EVENT, SFNMAX, MSG_MEMORY_MALLOCFAILEDFORPATHTOHOSTALIASFILE));
SGE_EXIT(NULL, 1);
}
snprintf(cp, len, "%s/%s/%s/%s", sge_root, sge_cell, COMMON_DIR, ALIAS_FILE);
DRETURN_(cp);
}
|