2005-03-14 23:57:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2005-03-14 23:57:21 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "orte_config.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETDB_H
|
|
|
|
#include <netdb.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
|
|
|
#include <sys/param.h>
|
|
|
|
#endif
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include "include/orte_constants.h"
|
|
|
|
|
2005-07-04 02:45:48 +04:00
|
|
|
#include "opal/threads/mutex.h"
|
|
|
|
#include "opal/threads/condition.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2005-05-01 04:58:06 +04:00
|
|
|
#include "dps/dps.h"
|
2005-07-04 05:36:20 +04:00
|
|
|
#include "opal/util/opal_environ.h"
|
2005-07-04 03:31:27 +04:00
|
|
|
#include "opal/util/output.h"
|
2005-07-04 06:38:44 +04:00
|
|
|
#include "opal/util/show_help.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
#include "util/sys_info.h"
|
2005-07-04 05:59:52 +04:00
|
|
|
#include "opal/util/os_path.h"
|
2005-07-04 04:13:44 +04:00
|
|
|
#include "opal/util/cmd_line.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
#include "util/proc_info.h"
|
|
|
|
#include "util/univ_info.h"
|
|
|
|
#include "util/session_dir.h"
|
2005-07-04 06:16:57 +04:00
|
|
|
#include "opal/util/printf.h"
|
2005-07-04 04:13:44 +04:00
|
|
|
#include "opal/util/daemon_init.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
#include "util/universe_setup_file_io.h"
|
|
|
|
|
|
|
|
#include "mca/base/base.h"
|
|
|
|
#include "mca/errmgr/errmgr.h"
|
|
|
|
#include "mca/ns/ns.h"
|
|
|
|
#include "mca/ns/base/base.h"
|
|
|
|
#include "mca/gpr/gpr.h"
|
|
|
|
#include "mca/rml/rml.h"
|
|
|
|
#include "mca/soh/soh.h"
|
2005-03-31 19:47:37 +04:00
|
|
|
#include "mca/rmgr/rmgr.h"
|
2005-03-29 00:54:45 +04:00
|
|
|
#include "mca/soh/base/base.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
#include "runtime/runtime.h"
|
|
|
|
|
|
|
|
#include "tools/orted/orted.h"
|
|
|
|
|
|
|
|
orted_globals_t orted_globals;
|
|
|
|
|
|
|
|
static void orte_daemon_recv(int status, orte_process_name_t* sender,
|
|
|
|
orte_buffer_t *buffer, orte_rml_tag_t tag,
|
|
|
|
void* cbdata);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* define the orted context table for obtaining parameters
|
|
|
|
*/
|
2005-07-04 04:13:44 +04:00
|
|
|
opal_cmd_line_init_t orte_cmd_line_opts[] = {
|
2005-03-14 23:57:21 +03:00
|
|
|
/* Various "obvious" options */
|
|
|
|
{ NULL, NULL, NULL, 'h', NULL, "help", 0,
|
2005-07-04 04:13:44 +04:00
|
|
|
&orted_globals.help, OPAL_CMD_LINE_TYPE_BOOL,
|
2005-03-14 23:57:21 +03:00
|
|
|
"This help message" },
|
2005-05-13 01:44:23 +04:00
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
{ NULL, NULL, NULL, '\0', NULL, "version", 0,
|
2005-07-04 04:13:44 +04:00
|
|
|
&orted_globals.version, OPAL_CMD_LINE_TYPE_BOOL,
|
2005-03-14 23:57:21 +03:00
|
|
|
"Show the orted version" },
|
|
|
|
|
2005-05-13 01:44:23 +04:00
|
|
|
{ "orte", "debug", NULL, 'd', NULL, "debug", 0,
|
2005-07-04 04:13:44 +04:00
|
|
|
&orted_globals.debug, OPAL_CMD_LINE_TYPE_BOOL,
|
2005-05-13 01:44:23 +04:00
|
|
|
"Debug the OpenRTE" },
|
|
|
|
|
2005-05-24 19:02:50 +04:00
|
|
|
{ "orte", "no_daemonize", NULL, '\0', NULL, "no-daemonize", 0,
|
2005-07-04 04:13:44 +04:00
|
|
|
&orted_globals.no_daemonize, OPAL_CMD_LINE_TYPE_BOOL,
|
2005-05-04 15:57:47 +04:00
|
|
|
"Don't daemonize into the background" },
|
2005-05-13 01:44:23 +04:00
|
|
|
|
|
|
|
{ "orte", "debug", "daemons", '\0', NULL, "debug-daemons", 0,
|
2005-07-04 04:13:44 +04:00
|
|
|
&orted_globals.debug_daemons, OPAL_CMD_LINE_TYPE_BOOL,
|
2005-05-13 01:44:23 +04:00
|
|
|
"Enable debugging of OpenRTE daemons" },
|
|
|
|
|
|
|
|
{ "orte", "debug", "daemons_file", '\0', NULL, "debug-daemons-file", 0,
|
2005-07-04 04:13:44 +04:00
|
|
|
&orted_globals.debug_daemons_file, OPAL_CMD_LINE_TYPE_BOOL,
|
2005-05-13 01:44:23 +04:00
|
|
|
"Enable debugging of OpenRTE daemons, storing output in files" },
|
|
|
|
|
2005-03-31 19:47:37 +04:00
|
|
|
{ "rmgr", "bootproxy", "jobid", '\0', NULL, "bootproxy", 1,
|
2005-07-04 04:13:44 +04:00
|
|
|
&orted_globals.bootproxy, OPAL_CMD_LINE_TYPE_INT,
|
2005-03-14 23:57:21 +03:00
|
|
|
"Run as boot proxy for <job-id>" },
|
2005-05-13 01:44:23 +04:00
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
{ NULL, NULL, NULL, '\0', NULL, "name", 1,
|
2005-07-04 04:13:44 +04:00
|
|
|
&orted_globals.name, OPAL_CMD_LINE_TYPE_STRING,
|
2005-03-14 23:57:21 +03:00
|
|
|
"Set the orte process name"},
|
2005-05-13 01:44:23 +04:00
|
|
|
|
2005-05-24 17:39:15 +04:00
|
|
|
{ NULL, NULL, NULL, '\0', NULL, "vpid_start", 1,
|
2005-07-04 04:13:44 +04:00
|
|
|
&orted_globals.vpid_start, OPAL_CMD_LINE_TYPE_STRING,
|
2005-05-24 17:39:15 +04:00
|
|
|
"Set the starting vpid for this job"},
|
|
|
|
|
|
|
|
{ NULL, NULL, NULL, '\0', NULL, "num_procs", 1,
|
2005-07-04 04:13:44 +04:00
|
|
|
&orted_globals.num_procs, OPAL_CMD_LINE_TYPE_STRING,
|
2005-05-24 17:39:15 +04:00
|
|
|
"Set the number of process in this job"},
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
{ NULL, NULL, NULL, '\0', NULL, "nsreplica", 1,
|
2005-07-04 04:13:44 +04:00
|
|
|
&orte_process_info.ns_replica_uri, OPAL_CMD_LINE_TYPE_STRING,
|
2005-03-14 23:57:21 +03:00
|
|
|
"Name service contact information."},
|
2005-05-13 01:44:23 +04:00
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
{ NULL, NULL, NULL, '\0', NULL, "gprreplica", 1,
|
2005-07-04 04:13:44 +04:00
|
|
|
&orte_process_info.gpr_replica_uri, OPAL_CMD_LINE_TYPE_STRING,
|
2005-03-14 23:57:21 +03:00
|
|
|
"Registry contact information."},
|
2005-05-13 01:44:23 +04:00
|
|
|
|
2005-03-18 06:43:59 +03:00
|
|
|
{ NULL, NULL, NULL, '\0', NULL, "nodename", 1,
|
2005-07-04 04:13:44 +04:00
|
|
|
&orte_system_info.nodename, OPAL_CMD_LINE_TYPE_STRING,
|
2005-03-18 06:43:59 +03:00
|
|
|
"Node name as specified by host/resource description." },
|
2005-05-13 01:44:23 +04:00
|
|
|
|
|
|
|
{ "universe", NULL, NULL, '\0', NULL, "universe", 1,
|
2005-07-04 04:13:44 +04:00
|
|
|
&orted_globals.universe, OPAL_CMD_LINE_TYPE_STRING,
|
2005-05-13 01:44:23 +04:00
|
|
|
"Set the universe name as username@hostname:universe_name for this application" },
|
|
|
|
|
|
|
|
{ "tmpdir", "base", NULL, '\0', NULL, "tmpdir", 1,
|
2005-07-04 04:13:44 +04:00
|
|
|
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
2005-05-13 01:44:23 +04:00
|
|
|
"Set the root for the session directory tree" },
|
|
|
|
|
2005-03-24 18:45:44 +03:00
|
|
|
{ "seed", NULL, NULL, '\0', NULL, "seed", 0,
|
2005-07-04 04:13:44 +04:00
|
|
|
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
2005-05-13 01:44:23 +04:00
|
|
|
"Host replicas for the core universe services"},
|
|
|
|
|
2005-03-24 18:45:44 +03:00
|
|
|
{ "universe", "persistence", NULL, '\0', NULL, "persistent", 0,
|
2005-07-04 04:13:44 +04:00
|
|
|
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
2005-05-13 01:44:23 +04:00
|
|
|
"Remain alive after the application process completes"},
|
|
|
|
|
2005-03-24 18:45:44 +03:00
|
|
|
{ "universe", "scope", NULL, '\0', NULL, "scope", 1,
|
2005-07-04 04:13:44 +04:00
|
|
|
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
2005-05-13 01:44:23 +04:00
|
|
|
"Set restrictions on who can connect to this universe"},
|
|
|
|
|
2005-05-18 21:56:51 +04:00
|
|
|
{ NULL, NULL, NULL, '\0', NULL, "report-uri", 1,
|
2005-07-04 04:13:44 +04:00
|
|
|
&orted_globals.uri_pipe, OPAL_CMD_LINE_TYPE_INT,
|
2005-05-18 21:56:51 +04:00
|
|
|
"Report this process' uri on indicated pipe"},
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
/* End of list */
|
|
|
|
{ NULL, NULL, NULL, '\0', NULL, NULL, 0,
|
2005-07-04 04:13:44 +04:00
|
|
|
NULL, OPAL_CMD_LINE_TYPE_NULL, NULL }
|
2005-03-14 23:57:21 +03:00
|
|
|
};
|
|
|
|
|
2005-05-24 17:39:15 +04:00
|
|
|
extern char **environ;
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int ret = 0;
|
2005-05-13 01:44:23 +04:00
|
|
|
int fd;
|
2005-07-04 04:13:44 +04:00
|
|
|
opal_cmd_line_t *cmd_line = NULL;
|
2005-03-14 23:57:21 +03:00
|
|
|
char *log_path = NULL;
|
2005-05-13 01:44:23 +04:00
|
|
|
char log_file[PATH_MAX];
|
|
|
|
char *jobidstring;
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
/* setup to check common command line options that just report and die */
|
2005-05-13 01:44:23 +04:00
|
|
|
memset(&orted_globals, 0, sizeof(orted_globals_t));
|
2005-07-04 04:13:44 +04:00
|
|
|
cmd_line = OBJ_NEW(opal_cmd_line_t);
|
|
|
|
opal_cmd_line_create(cmd_line, orte_cmd_line_opts);
|
|
|
|
if (OMPI_SUCCESS != (ret = opal_cmd_line_parse(cmd_line, true,
|
2005-03-14 23:57:21 +03:00
|
|
|
argc, argv))) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check for help and version requests */
|
|
|
|
if (orted_globals.help) {
|
|
|
|
char *args = NULL;
|
2005-07-04 04:13:44 +04:00
|
|
|
args = opal_cmd_line_get_usage_msg(cmd_line);
|
2005-07-04 06:38:44 +04:00
|
|
|
opal_show_help("help-orted.txt", "orted:usage", false,
|
2005-03-14 23:57:21 +03:00
|
|
|
argv[0], args);
|
|
|
|
free(args);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (orted_globals.version) {
|
|
|
|
/* show version message */
|
|
|
|
printf("...showing off my version!\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Okay, now on to serious business
|
|
|
|
* First, ensure the process info structure in instantiated and initialized
|
|
|
|
* and set the daemon flag to true
|
|
|
|
*/
|
|
|
|
orte_process_info.daemon = true;
|
|
|
|
|
|
|
|
/*
|
2005-05-24 17:39:15 +04:00
|
|
|
* If the daemon was given a name on the command line, need to set the
|
|
|
|
* proper indicators in the environment so the name discovery service
|
|
|
|
* can find it
|
2005-03-14 23:57:21 +03:00
|
|
|
*/
|
2005-05-24 19:02:50 +04:00
|
|
|
if (orted_globals.name) {
|
2005-07-04 05:36:20 +04:00
|
|
|
if (ORTE_SUCCESS != (ret = opal_setenv("OMPI_MCA_ns_nds",
|
2005-05-24 17:39:15 +04:00
|
|
|
"env", true, &environ))) {
|
|
|
|
fprintf(stderr, "orted: could not set my name in environ\n");
|
|
|
|
return ret;
|
|
|
|
}
|
2005-07-04 05:36:20 +04:00
|
|
|
if (ORTE_SUCCESS != (ret = opal_setenv("OMPI_MCA_ns_nds_name",
|
2005-05-24 17:39:15 +04:00
|
|
|
orted_globals.name, true, &environ))) {
|
|
|
|
fprintf(stderr, "orted: could not set my name in environ\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
/* the following values are meaningless to the daemon, but may have
|
|
|
|
* been passed in anyway. we set them here because the nds_env component
|
|
|
|
* requires that they be set
|
|
|
|
*/
|
2005-07-04 05:36:20 +04:00
|
|
|
if (ORTE_SUCCESS != (ret = opal_setenv("OMPI_MCA_ns_nds_vpid_start",
|
2005-05-24 17:39:15 +04:00
|
|
|
orted_globals.vpid_start, true, &environ))) {
|
|
|
|
fprintf(stderr, "orted: could not set vpid_start in environ\n");
|
|
|
|
return ret;
|
|
|
|
}
|
2005-07-04 05:36:20 +04:00
|
|
|
if (ORTE_SUCCESS != (ret = opal_setenv("OMPI_MCA_ns_nds_num_procs",
|
2005-05-24 17:39:15 +04:00
|
|
|
orted_globals.num_procs, true, &environ))) {
|
|
|
|
fprintf(stderr, "orted: could not set num_procs in environ\n");
|
|
|
|
return ret;
|
2005-03-14 23:57:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-13 01:44:23 +04:00
|
|
|
/* turn on debug if debug_file is requested so output will be generated */
|
|
|
|
if (orted_globals.debug_daemons_file) {
|
|
|
|
orted_globals.debug_daemons = true;
|
|
|
|
}
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2005-05-13 01:44:23 +04:00
|
|
|
/* detach from controlling terminal
|
|
|
|
* otherwise, remain attached so output can get to us
|
|
|
|
*/
|
2005-05-24 02:06:50 +04:00
|
|
|
if(orted_globals.debug == false &&
|
|
|
|
orted_globals.debug_daemons == false &&
|
|
|
|
orted_globals.no_daemonize == false) {
|
2005-07-04 04:13:44 +04:00
|
|
|
opal_daemon_init(NULL);
|
2005-03-14 23:57:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Intialize the Open RTE */
|
2005-06-30 20:32:02 +04:00
|
|
|
/* first, set the flag telling orte_init that I am NOT a
|
|
|
|
* singleton, but am "infrastructure" - prevents setting
|
|
|
|
* up incorrect infrastructure that only a singleton would
|
|
|
|
* require
|
|
|
|
*/
|
|
|
|
ret = mca_base_param_register_int("orte", "base", "infrastructure", NULL, 0);
|
|
|
|
mca_base_param_set_int(ret, 1);
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
if (ORTE_SUCCESS != (ret = orte_init())) {
|
|
|
|
fprintf(stderr, "orted: failed to init rte\n");
|
|
|
|
return ret;
|
|
|
|
}
|
2005-05-24 19:02:50 +04:00
|
|
|
|
2005-05-18 21:56:51 +04:00
|
|
|
/* if requested, report my uri to the indicated pipe */
|
|
|
|
if (orted_globals.uri_pipe > 0) {
|
|
|
|
write(orted_globals.uri_pipe, orte_universe_info.seed_uri,
|
2005-05-18 22:24:14 +04:00
|
|
|
strlen(orte_universe_info.seed_uri)+1); /* need to add 1 to get the NULL */
|
2005-05-18 21:56:51 +04:00
|
|
|
close(orted_globals.uri_pipe);
|
|
|
|
}
|
|
|
|
|
2005-06-06 17:36:41 +04:00
|
|
|
/* setup stdout/stderr */
|
2005-05-13 01:44:23 +04:00
|
|
|
if (orted_globals.debug_daemons_file) {
|
2005-06-06 17:36:41 +04:00
|
|
|
/* if we are debugging to a file, then send stdout/stderr to
|
|
|
|
* the orted log file
|
2005-05-13 01:44:23 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* get my jobid */
|
|
|
|
if (ORTE_SUCCESS != (ret = orte_ns.get_jobid_string(&jobidstring,
|
|
|
|
orte_process_info.my_name))) {
|
|
|
|
ORTE_ERROR_LOG(ret);
|
|
|
|
return ret;
|
2005-03-14 23:57:21 +03:00
|
|
|
}
|
2005-05-13 01:44:23 +04:00
|
|
|
|
|
|
|
/* define a log file name in the session directory */
|
|
|
|
sprintf(log_file, "output-orted-%s-%s.log",
|
|
|
|
jobidstring, orte_system_info.nodename);
|
2005-07-04 05:59:52 +04:00
|
|
|
log_path = opal_os_path(false,
|
2005-05-01 12:27:14 +04:00
|
|
|
orte_process_info.tmpdir_base,
|
|
|
|
orte_process_info.top_session_dir,
|
|
|
|
log_file,
|
|
|
|
NULL);
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2005-06-06 17:36:41 +04:00
|
|
|
fd = open(log_path, O_RDWR|O_CREAT|O_TRUNC, 0640);
|
2005-05-13 01:44:23 +04:00
|
|
|
if (fd < 0) {
|
|
|
|
/* couldn't open the file for some reason, so
|
|
|
|
* just connect everything to /dev/null
|
|
|
|
*/
|
2005-03-31 19:47:37 +04:00
|
|
|
fd = open("/dev/null", O_RDWR|O_CREAT|O_TRUNC, 0666);
|
2005-05-13 01:44:23 +04:00
|
|
|
} else {
|
2005-03-14 23:57:21 +03:00
|
|
|
dup2(fd, STDOUT_FILENO);
|
|
|
|
dup2(fd, STDERR_FILENO);
|
|
|
|
if(fd != STDOUT_FILENO && fd != STDERR_FILENO) {
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check to see if I'm a bootproxy */
|
|
|
|
if (orted_globals.bootproxy) { /* perform bootproxy-specific things */
|
2005-03-31 19:47:37 +04:00
|
|
|
if (ORTE_SUCCESS != (ret = orte_rmgr.launch(orted_globals.bootproxy))) {
|
2005-03-14 23:57:21 +03:00
|
|
|
ORTE_ERROR_LOG(ret);
|
|
|
|
}
|
|
|
|
if (ORTE_SUCCESS != (ret = orte_finalize())) {
|
|
|
|
ORTE_ERROR_LOG(ret);
|
|
|
|
}
|
|
|
|
exit(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* setup the thread lock and condition variable */
|
2005-07-04 02:45:48 +04:00
|
|
|
OBJ_CONSTRUCT(&orted_globals.mutex, opal_mutex_t);
|
|
|
|
OBJ_CONSTRUCT(&orted_globals.condition, opal_condition_t);
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set my process status to "starting". Note that this must be done
|
|
|
|
* after the rte init is completed.
|
|
|
|
*/
|
|
|
|
if (ORTE_SUCCESS != (ret = orte_soh.set_proc_soh(orte_process_info.my_name,
|
|
|
|
ORTE_PROC_STATE_RUNNING, 0))) {
|
|
|
|
ORTE_ERROR_LOG(ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2005-05-13 01:44:23 +04:00
|
|
|
if (orted_globals.debug_daemons) {
|
2005-07-04 03:31:27 +04:00
|
|
|
opal_output(0, "[%lu,%lu,%lu] ompid: issuing callback", ORTE_NAME_ARGS(orte_process_info.my_name));
|
2005-03-14 23:57:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* register the daemon main callback function */
|
|
|
|
ret = orte_rml.recv_buffer_nb(ORTE_RML_NAME_ANY, ORTE_RML_TAG_DAEMON, 0, orte_daemon_recv, NULL);
|
|
|
|
if (ret != ORTE_SUCCESS && ret != ORTE_ERR_NOT_IMPLEMENTED) {
|
|
|
|
ORTE_ERROR_LOG(ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* go through the universe fields and see what else I need to do
|
|
|
|
* - could be setup a virtual machine, spawn a console, etc.
|
|
|
|
*/
|
|
|
|
|
2005-05-13 01:44:23 +04:00
|
|
|
if (orted_globals.debug_daemons) {
|
2005-07-04 03:31:27 +04:00
|
|
|
opal_output(0, "[%lu,%lu,%lu] ompid: setting up event monitor", ORTE_NAME_ARGS(orte_process_info.my_name));
|
2005-03-14 23:57:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* setup and enter the event monitor */
|
2005-07-04 02:45:48 +04:00
|
|
|
OPAL_THREAD_LOCK(&orted_globals.mutex);
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
while (false == orted_globals.exit_condition) {
|
2005-07-04 02:45:48 +04:00
|
|
|
opal_condition_wait(&orted_globals.condition, &orted_globals.mutex);
|
2005-03-14 23:57:21 +03:00
|
|
|
}
|
|
|
|
|
2005-07-04 02:45:48 +04:00
|
|
|
OPAL_THREAD_UNLOCK(&orted_globals.mutex);
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2005-05-13 01:44:23 +04:00
|
|
|
if (orted_globals.debug_daemons) {
|
2005-07-04 03:31:27 +04:00
|
|
|
opal_output(0, "[%lu,%lu,%lu] ompid: mutex cleared - finalizing", ORTE_NAME_ARGS(orte_process_info.my_name));
|
2005-03-14 23:57:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* cleanup */
|
|
|
|
if (NULL != log_path) {
|
|
|
|
unlink(log_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* finalize the system */
|
|
|
|
orte_finalize();
|
|
|
|
|
2005-05-13 01:44:23 +04:00
|
|
|
if (orted_globals.debug_daemons) {
|
2005-07-04 03:31:27 +04:00
|
|
|
opal_output(0, "[%lu,%lu,%lu] ompid: done - exiting", ORTE_NAME_ARGS(orte_process_info.my_name));
|
2005-03-14 23:57:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void orte_daemon_recv(int status, orte_process_name_t* sender,
|
|
|
|
orte_buffer_t *buffer, orte_rml_tag_t tag,
|
|
|
|
void* cbdata)
|
|
|
|
{
|
|
|
|
orte_buffer_t *answer;
|
|
|
|
orte_daemon_cmd_flag_t command;
|
|
|
|
int ret;
|
|
|
|
size_t n;
|
|
|
|
char *contact_info;
|
|
|
|
|
2005-07-04 02:45:48 +04:00
|
|
|
OPAL_THREAD_LOCK(&orted_globals.mutex);
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2005-05-13 01:44:23 +04:00
|
|
|
if (orted_globals.debug_daemons) {
|
2005-07-04 03:31:27 +04:00
|
|
|
opal_output(0, "[%lu,%lu,%lu] ompid: received message", ORTE_NAME_ARGS(orte_process_info.my_name));
|
2005-03-14 23:57:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
answer = OBJ_NEW(orte_buffer_t);
|
|
|
|
if (NULL == answer) {
|
|
|
|
ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);
|
|
|
|
goto DONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
n = 1;
|
|
|
|
if (ORTE_SUCCESS != (ret = orte_dps.unpack(buffer, &command, &n, ORTE_DAEMON_CMD))) {
|
|
|
|
ORTE_ERROR_LOG(ret);
|
|
|
|
goto CLEANUP;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**** EXIT COMMAND ****/
|
|
|
|
if (ORTE_DAEMON_EXIT_CMD == command) {
|
|
|
|
orted_globals.exit_condition = true;
|
2005-07-04 02:45:48 +04:00
|
|
|
opal_condition_signal(&orted_globals.condition);
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
/**** CONTACT QUERY COMMAND ****/
|
|
|
|
} else if (ORTE_DAEMON_CONTACT_QUERY_CMD == command) {
|
|
|
|
/* send back contact info */
|
|
|
|
|
|
|
|
contact_info = orte_rml.get_uri();
|
|
|
|
|
|
|
|
if (NULL == contact_info) {
|
|
|
|
ORTE_ERROR_LOG(ORTE_ERROR);
|
|
|
|
goto DONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ORTE_SUCCESS != (ret = orte_dps.pack(answer, &contact_info, 1, ORTE_STRING))) {
|
|
|
|
ORTE_ERROR_LOG(ret);
|
|
|
|
goto DONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (0 > orte_rml.send_buffer(sender, answer, tag, 0)) {
|
|
|
|
ORTE_ERROR_LOG(ORTE_ERR_COMM_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CLEANUP:
|
|
|
|
OBJ_RELEASE(answer);
|
|
|
|
|
|
|
|
DONE:
|
|
|
|
/* reissue the non-blocking receive */
|
|
|
|
ret = orte_rml.recv_buffer_nb(ORTE_RML_NAME_ANY, ORTE_RML_TAG_DAEMON, 0, orte_daemon_recv, NULL);
|
|
|
|
if (ret != ORTE_SUCCESS && ret != ORTE_ERR_NOT_IMPLEMENTED) {
|
|
|
|
ORTE_ERROR_LOG(ret);
|
|
|
|
}
|
|
|
|
|
2005-07-04 02:45:48 +04:00
|
|
|
OPAL_THREAD_UNLOCK(&orted_globals.mutex);
|
2005-03-14 23:57:21 +03:00
|
|
|
return;
|
|
|
|
}
|