2006-09-14 19:27:17 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2010-12-14 17:52:51 +03:00
|
|
|
* Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
2006-09-14 19:27:17 +04:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
2006-09-24 22:40:55 +04:00
|
|
|
|
2006-09-14 19:27:17 +04:00
|
|
|
#include "orte_config.h"
|
2006-09-24 22:40:55 +04:00
|
|
|
|
2009-03-13 05:10:32 +03:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
2006-09-24 22:40:55 +04:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_STAT_H
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_FCNTL_H
|
|
|
|
#include <fcntl.h>
|
|
|
|
#endif
|
2006-09-25 19:32:54 +04:00
|
|
|
#ifdef HAVE_TIME_H
|
|
|
|
#include <time.h>
|
|
|
|
#endif
|
2006-09-24 22:40:55 +04:00
|
|
|
|
2006-09-14 19:27:17 +04:00
|
|
|
#include "opal/mca/base/mca_base_param.h"
|
|
|
|
#include "opal/util/opal_environ.h"
|
2008-02-28 04:57:57 +03:00
|
|
|
|
2009-03-13 05:10:32 +03:00
|
|
|
#include "orte/constants.h"
|
|
|
|
#include "orte/types.h"
|
2006-09-14 19:27:17 +04:00
|
|
|
#include "orte/mca/errmgr/errmgr.h"
|
|
|
|
|
|
|
|
#include "orte/util/pre_condition_transports.h"
|
|
|
|
|
|
|
|
/* some network transports require a little bit of information to
|
|
|
|
* "pre-condition" them - i.e., to setup their individual transport
|
|
|
|
* connections so they can generate their endpoint addresses. This
|
|
|
|
* function provides a means for doing so. The resulting info is placed
|
|
|
|
* into the app_context's env array so it will automatically be pushed
|
|
|
|
* into the environment of every MPI process when launched.
|
|
|
|
*/
|
|
|
|
|
2006-09-20 20:59:44 +04:00
|
|
|
static inline void orte_pre_condition_transports_use_rand(uint64_t* unique_key) {
|
2006-10-05 09:29:08 +04:00
|
|
|
srand((unsigned int)time(NULL));
|
2010-12-14 17:52:51 +03:00
|
|
|
unique_key[0] = rand();
|
2006-09-20 20:59:44 +04:00
|
|
|
unique_key[1] = rand();
|
|
|
|
}
|
2006-09-24 11:52:42 +04:00
|
|
|
|
2011-04-28 17:54:33 +04:00
|
|
|
char* orte_pre_condition_transports_print(uint64_t *unique_key)
|
2006-09-14 19:27:17 +04:00
|
|
|
{
|
2006-12-04 21:07:24 +03:00
|
|
|
unsigned int *int_ptr;
|
2011-04-28 17:54:33 +04:00
|
|
|
size_t i, string_key_len, written_len;
|
|
|
|
char *string_key = NULL, *format = NULL;
|
2006-10-05 09:39:49 +04:00
|
|
|
|
2006-12-04 21:07:24 +03:00
|
|
|
/* string is two 64 bit numbers printed in hex with a dash between
|
|
|
|
* and zero padding.
|
2006-12-03 20:05:15 +03:00
|
|
|
*/
|
2006-12-04 21:07:24 +03:00
|
|
|
string_key_len = (sizeof(uint64_t) * 2) * 2 + strlen("-") + 1;
|
|
|
|
string_key = (char*) malloc(string_key_len);
|
|
|
|
if (NULL == string_key) {
|
2011-04-28 17:54:33 +04:00
|
|
|
return NULL;
|
2006-12-04 21:07:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
string_key[0] = '\0';
|
|
|
|
written_len = 0;
|
|
|
|
|
|
|
|
/* get a format string based on the length of an unsigned int. We
|
|
|
|
* want to have zero padding for sizeof(unsigned int) * 2
|
|
|
|
* characters -- when printing as a hex number, each byte is
|
|
|
|
* represented by 2 hex characters. Format will contain something
|
|
|
|
* that looks like %08lx, where the number 8 might be a different
|
|
|
|
* number if the system has a different sized long (8 would be for
|
|
|
|
* sizeof(int) == 4)).
|
|
|
|
*/
|
2006-12-05 00:45:57 +03:00
|
|
|
asprintf(&format, "%%0%dx", (int)(sizeof(unsigned int)) * 2);
|
2006-12-04 21:07:24 +03:00
|
|
|
|
|
|
|
/* print the first number */
|
|
|
|
int_ptr = (unsigned int*) &unique_key[0];
|
|
|
|
for (i = 0 ; i < sizeof(uint64_t) / sizeof(unsigned int) ; ++i) {
|
|
|
|
snprintf(string_key + written_len,
|
|
|
|
string_key_len - written_len,
|
|
|
|
format, int_ptr[i]);
|
|
|
|
written_len = strlen(string_key);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* print the middle dash */
|
|
|
|
snprintf(string_key + written_len, string_key_len - written_len, "-");
|
|
|
|
written_len = strlen(string_key);
|
|
|
|
|
|
|
|
/* print the second number */
|
|
|
|
int_ptr = (unsigned int*) &unique_key[1];
|
|
|
|
for (i = 0 ; i < sizeof(uint64_t) / sizeof(unsigned int) ; ++i) {
|
|
|
|
snprintf(string_key + written_len,
|
|
|
|
string_key_len - written_len,
|
|
|
|
format, int_ptr[i]);
|
|
|
|
written_len = strlen(string_key);
|
|
|
|
}
|
2011-04-28 17:54:33 +04:00
|
|
|
free(format);
|
|
|
|
|
|
|
|
return string_key;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int orte_pre_condition_transports(orte_job_t *jdata)
|
|
|
|
{
|
|
|
|
uint64_t unique_key[2];
|
|
|
|
int n;
|
|
|
|
orte_app_context_t *app;
|
|
|
|
char *string_key, *cs_env;
|
|
|
|
|
2011-04-29 18:44:02 +04:00
|
|
|
#if !defined(__WINDOWS__) || !defined(_MSC_VER)
|
2011-04-28 17:54:33 +04:00
|
|
|
int fd_rand;
|
|
|
|
size_t bytes_read;
|
|
|
|
struct stat buf;
|
|
|
|
|
|
|
|
/* put the number here - or else create an appropriate string. this just needs to
|
|
|
|
* eventually be a string variable
|
|
|
|
*/
|
|
|
|
if(0 != stat("/dev/urandom", &buf)) {
|
|
|
|
/* file doesn't exist! */
|
|
|
|
orte_pre_condition_transports_use_rand(unique_key);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(-1 == (fd_rand = open("/dev/urandom", O_RDONLY))) {
|
|
|
|
orte_pre_condition_transports_use_rand(unique_key);
|
|
|
|
} else {
|
|
|
|
bytes_read = read(fd_rand, (char *) unique_key, 16);
|
|
|
|
if(bytes_read != 16) {
|
|
|
|
orte_pre_condition_transports_use_rand(unique_key);
|
|
|
|
} else {
|
|
|
|
close(fd_rand);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
unsigned int random_value;
|
|
|
|
rand_s( &random_value );
|
|
|
|
unique_key[0] = (uint64_t)random_value;
|
|
|
|
rand_s( &random_value );
|
|
|
|
unique_key[1] = (uint64_t)random_value;
|
|
|
|
}
|
|
|
|
#endif /* !defined(__WINDOWS__) */
|
|
|
|
|
|
|
|
if (NULL == (string_key = orte_pre_condition_transports_print(unique_key))) {
|
|
|
|
ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);
|
|
|
|
return ORTE_ERR_OUT_OF_RESOURCE;
|
|
|
|
}
|
|
|
|
|
2006-09-14 19:27:17 +04:00
|
|
|
if (NULL == (cs_env = mca_base_param_environ_variable("orte_precondition_transports",NULL,NULL))) {
|
|
|
|
ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);
|
|
|
|
return ORTE_ERR_OUT_OF_RESOURCE;
|
|
|
|
}
|
|
|
|
|
2010-02-27 20:37:34 +03:00
|
|
|
for (n=0; n < jdata->apps->size; n++) {
|
|
|
|
if (NULL == (app = (orte_app_context_t*)opal_pointer_array_get_item(jdata->apps, n))) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
opal_setenv(cs_env, string_key, true, &app->env);
|
2006-09-14 19:27:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
free(cs_env);
|
2007-03-07 04:09:38 +03:00
|
|
|
free(string_key);
|
2006-09-14 19:27:17 +04:00
|
|
|
|
|
|
|
return ORTE_SUCCESS;
|
|
|
|
}
|