2008-02-28 04:57:57 +03:00
|
|
|
/*
|
2010-03-13 02:57:50 +03:00
|
|
|
* Copyright (c) 2004-2010 The Trustees of Indiana University and Indiana
|
2008-02-28 04:57:57 +03:00
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2006 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.
|
2012-02-29 21:52:38 +04:00
|
|
|
* Copyright (c) 2007-2012 Cisco Systems, Inc. All rights reserved.
|
2012-04-06 18:23:13 +04:00
|
|
|
* Copyright (c) 2007-2012 Los Alamos National Security, LLC. All rights
|
2008-02-28 04:57:57 +03:00
|
|
|
* reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "orte_config.h"
|
|
|
|
#include "orte/constants.h"
|
|
|
|
|
2009-04-29 04:49:23 +04:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
#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 <signal.h>
|
|
|
|
|
|
|
|
|
Update libevent to the 2.0 series, currently at 2.0.7rc. We will update to their final release when it becomes available. Currently known errors exist in unused portions of the libevent code. This revision passes the IBM test suite on a Linux machine and on a standalone Mac.
This is a fairly intrusive change, but outside of the moving of opal/event to opal/mca/event, the only changes involved (a) changing all calls to opal_event functions to reflect the new framework instead, and (b) ensuring that all opal_event_t objects are properly constructed since they are now true opal_objects.
Note: Shiqing has just returned from vacation and has not yet had a chance to complete the Windows integration. Thus, this commit almost certainly breaks Windows support on the trunk. However, I want this to have a chance to soak for as long as possible before I become less available a week from today (going to be at a class for 5 days, and thus will only be sparingly available) so we can find and fix any problems.
Biggest change is moving the libevent code from opal/event to a new opal/mca/event framework. This was done to make it much easier to update libevent in the future. New versions can be inserted as a new component and tested in parallel with the current version until validated, then we can remove the earlier version if we so choose. This is a statically built framework ala installdirs, so only one component will build at a time. There is no selection logic - the sole compiled component simply loads its function pointers into the opal_event struct.
I have gone thru the code base and converted all the libevent calls I could find. However, I cannot compile nor test every environment. It is therefore quite likely that errors remain in the system. Please keep an eye open for two things:
1. compile-time errors: these will be obvious as calls to the old functions (e.g., opal_evtimer_new) must be replaced by the new framework APIs (e.g., opal_event.evtimer_new)
2. run-time errors: these will likely show up as segfaults due to missing constructors on opal_event_t objects. It appears that it became a typical practice for people to "init" an opal_event_t by simply using memset to zero it out. This will no longer work - you must either OBJ_NEW or OBJ_CONSTRUCT an opal_event_t. I tried to catch these cases, but may have missed some. Believe me, you'll know when you hit it.
There is also the issue of the new libevent "no recursion" behavior. As I described on a recent email, we will have to discuss this and figure out what, if anything, we need to do.
This commit was SVN r23925.
2010-10-24 22:35:54 +04:00
|
|
|
#include "opal/mca/event/event.h"
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "opal/mca/base/base.h"
|
|
|
|
#include "opal/util/cmd_line.h"
|
2009-02-14 05:26:12 +03:00
|
|
|
#include "opal/util/output.h"
|
2012-02-29 21:52:38 +04:00
|
|
|
#include "opal/util/show_help.h"
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "opal/util/daemon_init.h"
|
|
|
|
#include "opal/runtime/opal.h"
|
2009-04-29 10:57:49 +04:00
|
|
|
#include "opal/runtime/opal_cr.h"
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "opal/mca/base/mca_base_param.h"
|
|
|
|
|
2012-06-27 05:28:28 +04:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "orte/util/name_fns.h"
|
2009-05-04 15:07:40 +04:00
|
|
|
#include "orte/util/proc_info.h"
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "orte/mca/errmgr/errmgr.h"
|
|
|
|
#include "orte/mca/rml/rml.h"
|
2010-07-13 10:33:07 +04:00
|
|
|
#include "orte/orted/orted.h"
|
2008-02-28 04:57:57 +03:00
|
|
|
|
|
|
|
#include "orte/runtime/runtime.h"
|
|
|
|
#include "orte/runtime/orte_globals.h"
|
|
|
|
#include "orte/runtime/orte_data_server.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Globals
|
|
|
|
*/
|
|
|
|
|
|
|
|
static opal_event_t term_handler;
|
|
|
|
static opal_event_t int_handler;
|
|
|
|
|
|
|
|
static void shutdown_callback(int fd, short flags, void *arg);
|
|
|
|
|
|
|
|
static bool help=false;
|
|
|
|
static bool debug=false;
|
|
|
|
static bool no_daemonize=false;
|
|
|
|
static char *report_uri=NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* define the context table for obtaining parameters
|
|
|
|
*/
|
|
|
|
opal_cmd_line_init_t ompi_server_cmd_line_opts[] = {
|
|
|
|
/* Various "obvious" options */
|
2012-10-30 23:45:18 +04:00
|
|
|
{ NULL, 'h', NULL, "help", 0,
|
2008-02-28 04:57:57 +03:00
|
|
|
&help, OPAL_CMD_LINE_TYPE_BOOL,
|
|
|
|
"This help message" },
|
|
|
|
|
2012-10-30 23:45:18 +04:00
|
|
|
{ NULL, 'd', NULL, "debug", 0,
|
2008-02-28 04:57:57 +03:00
|
|
|
&debug, OPAL_CMD_LINE_TYPE_BOOL,
|
|
|
|
"Debug the Open MPI server" },
|
|
|
|
|
2012-10-30 23:45:18 +04:00
|
|
|
{ "orte_no_daemonize", '\0', NULL, "no-daemonize", 0,
|
2008-02-28 04:57:57 +03:00
|
|
|
&no_daemonize, OPAL_CMD_LINE_TYPE_BOOL,
|
|
|
|
"Don't daemonize into the background" },
|
|
|
|
|
2012-10-30 23:45:18 +04:00
|
|
|
{ NULL, 'r', NULL, "report-uri", 1,
|
2008-02-28 04:57:57 +03:00
|
|
|
&report_uri, OPAL_CMD_LINE_TYPE_STRING,
|
2008-04-16 18:27:42 +04:00
|
|
|
"Report the server's uri on stdout [-], stderr [+], or a file [anything else]"},
|
2008-02-28 04:57:57 +03:00
|
|
|
|
|
|
|
/* End of list */
|
2012-10-30 23:45:18 +04:00
|
|
|
{ NULL, '\0', NULL, NULL, 0,
|
2008-02-28 04:57:57 +03:00
|
|
|
NULL, OPAL_CMD_LINE_TYPE_NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
opal_cmd_line_t *cmd_line = NULL;
|
|
|
|
char *rml_uri;
|
2008-04-23 04:17:12 +04:00
|
|
|
char * tmp_env_var = NULL;
|
2008-02-28 04:57:57 +03:00
|
|
|
|
|
|
|
/* init enough of opal to process cmd lines */
|
2009-12-04 03:51:15 +03:00
|
|
|
if (OPAL_SUCCESS != opal_init_util(&argc, &argv)) {
|
2008-02-28 04:57:57 +03:00
|
|
|
fprintf(stderr, "OPAL failed to initialize -- orted aborting\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* setup to check common command line options that just report and die */
|
|
|
|
cmd_line = OBJ_NEW(opal_cmd_line_t);
|
|
|
|
opal_cmd_line_create(cmd_line, ompi_server_cmd_line_opts);
|
|
|
|
mca_base_cmd_line_setup(cmd_line);
|
2009-10-29 17:49:01 +03:00
|
|
|
if (OPAL_SUCCESS != (ret = opal_cmd_line_parse(cmd_line, false,
|
2008-02-28 04:57:57 +03:00
|
|
|
argc, argv))) {
|
2012-02-29 21:52:38 +04:00
|
|
|
if (OPAL_ERR_SILENT != ret) {
|
|
|
|
fprintf(stderr, "%s: command line error (%s)\n", argv[0],
|
|
|
|
opal_strerror(ret));
|
|
|
|
}
|
|
|
|
return 1;
|
2008-02-28 04:57:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* check for help request */
|
|
|
|
if (help) {
|
2012-02-29 21:52:38 +04:00
|
|
|
char *str, *args = NULL;
|
2008-02-28 04:57:57 +03:00
|
|
|
args = opal_cmd_line_get_usage_msg(cmd_line);
|
2012-02-29 21:52:38 +04:00
|
|
|
str = opal_show_help_string("help-ompi-server.txt",
|
|
|
|
"ompiserver:usage", false,
|
|
|
|
argv[0], args);
|
|
|
|
if (NULL != str) {
|
|
|
|
printf("%s", str);
|
|
|
|
free(str);
|
|
|
|
}
|
2008-02-28 04:57:57 +03:00
|
|
|
free(args);
|
2012-02-29 21:52:38 +04:00
|
|
|
/* If we show the help message, that should be all we do */
|
|
|
|
return 0;
|
2008-02-28 04:57:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Since this process can now handle MCA/GMCA parameters, make sure to
|
|
|
|
* process them.
|
|
|
|
*/
|
|
|
|
mca_base_cmd_line_process_args(cmd_line, &environ, &environ);
|
|
|
|
|
2008-04-04 23:17:28 +04:00
|
|
|
/* if debug is set, then set orte_debug_flag so that the data server
|
|
|
|
* code will output
|
|
|
|
*/
|
|
|
|
if (debug) {
|
|
|
|
putenv("OMPI_MCA_orte_debug=1");
|
2008-02-28 04:57:57 +03:00
|
|
|
}
|
2008-04-04 23:17:28 +04:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
/* detach from controlling terminal
|
|
|
|
* otherwise, remain attached so output can get to us
|
|
|
|
*/
|
2008-04-04 23:17:28 +04:00
|
|
|
if(debug == false &&
|
2008-02-28 04:57:57 +03:00
|
|
|
no_daemonize == false) {
|
|
|
|
opal_daemon_init(NULL);
|
|
|
|
}
|
|
|
|
|
2010-03-13 02:57:50 +03:00
|
|
|
#if OPAL_ENABLE_FT_CR == 1
|
2008-02-28 04:57:57 +03:00
|
|
|
/* Disable the checkpoint notification routine for this
|
|
|
|
* tool. As we will never need to checkpoint this tool.
|
|
|
|
* Note: This must happen before opal_init().
|
|
|
|
*/
|
|
|
|
opal_cr_set_enabled(false);
|
|
|
|
|
|
|
|
/* Select the none component, since we don't actually use a checkpointer */
|
2008-04-23 04:17:12 +04:00
|
|
|
tmp_env_var = mca_base_param_env_var("crs");
|
|
|
|
opal_setenv(tmp_env_var,
|
2008-02-28 04:57:57 +03:00
|
|
|
"none",
|
|
|
|
true, &environ);
|
2008-04-23 04:17:12 +04:00
|
|
|
free(tmp_env_var);
|
|
|
|
tmp_env_var = NULL;
|
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
/* Mark as a tool program */
|
2008-04-23 04:17:12 +04:00
|
|
|
tmp_env_var = mca_base_param_env_var("opal_cr_is_tool");
|
|
|
|
opal_setenv(tmp_env_var,
|
2008-02-28 04:57:57 +03:00
|
|
|
"1",
|
|
|
|
true, &environ);
|
2008-04-23 04:17:12 +04:00
|
|
|
free(tmp_env_var);
|
2010-03-13 02:57:50 +03:00
|
|
|
#else
|
2008-04-23 04:17:12 +04:00
|
|
|
tmp_env_var = NULL; /* Silence compiler warning */
|
2010-03-13 02:57:50 +03:00
|
|
|
#endif
|
2008-04-23 04:17:12 +04:00
|
|
|
|
2010-07-13 10:33:07 +04:00
|
|
|
/* don't want session directories */
|
|
|
|
orte_create_session_dirs = false;
|
|
|
|
|
|
|
|
/* Perform the standard init, but flag that we are an HNP */
|
|
|
|
if (ORTE_SUCCESS != (ret = orte_init(&argc, &argv, ORTE_PROC_HNP))) {
|
2008-02-28 04:57:57 +03:00
|
|
|
fprintf(stderr, "ompi-server: failed to initialize -- aborting\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* report out our URI, if we were requested to do so, using syntax
|
|
|
|
* proposed in an email thread by Jeff Squyres
|
|
|
|
*/
|
|
|
|
if (NULL != report_uri) {
|
|
|
|
rml_uri = orte_rml.get_contact_info();
|
|
|
|
if (0 == strcmp(report_uri, "-")) {
|
|
|
|
/* if '-', then output to stdout */
|
|
|
|
printf("%s\n", rml_uri);
|
|
|
|
} else if (0 == strcmp(report_uri, "+")) {
|
|
|
|
/* if '+', output to stderr */
|
|
|
|
fprintf(stderr, "%s\n", rml_uri);
|
|
|
|
} else {
|
|
|
|
/* treat it as a filename and output into it */
|
|
|
|
FILE *fp;
|
|
|
|
fp = fopen(report_uri, "w");
|
|
|
|
if (NULL == fp) {
|
2008-04-04 23:17:28 +04:00
|
|
|
fprintf(stderr, "ompi-server: failed to open designated file %s -- aborting\n", report_uri);
|
2008-02-28 04:57:57 +03:00
|
|
|
orte_finalize();
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
fprintf(fp, "%s\n", rml_uri);
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
free(rml_uri);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* setup the data server to listen for commands */
|
|
|
|
if (ORTE_SUCCESS != (ret = orte_data_server_init())) {
|
|
|
|
fprintf(stderr, "ompi-server: failed to start data server -- aborting\n");
|
|
|
|
orte_finalize();
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2010-07-13 10:33:07 +04:00
|
|
|
/* setup to listen for commands sent specifically to me */
|
|
|
|
ret = orte_rml.recv_buffer_nb(ORTE_NAME_WILDCARD, ORTE_RML_TAG_DAEMON,
|
|
|
|
ORTE_RML_NON_PERSISTENT, orte_daemon_recv, NULL);
|
|
|
|
if (ret != ORTE_SUCCESS && ret != ORTE_ERR_NOT_IMPLEMENTED) {
|
|
|
|
ORTE_ERROR_LOG(ret);
|
|
|
|
orte_finalize();
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
/* Set signal handlers to catch kill signals so we can properly clean up
|
|
|
|
* after ourselves.
|
|
|
|
*/
|
2010-10-28 19:22:46 +04:00
|
|
|
opal_event_set(opal_event_base, &term_handler, SIGTERM, OPAL_EV_SIGNAL,
|
2008-02-28 04:57:57 +03:00
|
|
|
shutdown_callback, NULL);
|
2010-10-28 19:22:46 +04:00
|
|
|
opal_event_add(&term_handler, NULL);
|
|
|
|
opal_event_set(opal_event_base, &int_handler, SIGINT, OPAL_EV_SIGNAL,
|
2008-02-28 04:57:57 +03:00
|
|
|
shutdown_callback, NULL);
|
2010-10-28 19:22:46 +04:00
|
|
|
opal_event_add(&int_handler, NULL);
|
2008-02-28 04:57:57 +03:00
|
|
|
|
|
|
|
/* We actually do *not* want the server to voluntarily yield() the
|
|
|
|
processor more than necessary. The server already blocks when
|
|
|
|
it is doing nothing, so it doesn't use any more CPU cycles than
|
|
|
|
it should; but when it *is* doing something, we do not want it
|
|
|
|
to be unnecessarily delayed because it voluntarily yielded the
|
|
|
|
processor in the middle of its work.
|
|
|
|
|
|
|
|
For example: when a message arrives at the server, we want the
|
|
|
|
OS to wake up the server in a timely fashion (which most OS's
|
|
|
|
seem good about doing) and then we want the server to process
|
|
|
|
the message as fast as possible. If the server yields and lets
|
|
|
|
aggressive MPI applications get the processor back, it may be a
|
|
|
|
long time before the OS schedules the server to run again
|
|
|
|
(particularly if there is no IO event to wake it up). Hence,
|
|
|
|
publish and lookup (for example) may be significantly delayed
|
|
|
|
before being delivered to MPI processes, which can be
|
|
|
|
problematic in some scenarios (e.g., COMM_SPAWN). */
|
|
|
|
opal_progress_set_yield_when_idle(false);
|
|
|
|
|
|
|
|
/* Change the default behavior of libevent such that we want to
|
|
|
|
continually block rather than blocking for the default timeout
|
|
|
|
and then looping around the progress engine again. There
|
|
|
|
should be nothing in the server that cannot block in libevent
|
|
|
|
until "something" happens (i.e., there's no need to keep
|
|
|
|
cycling through progress because the only things that should
|
|
|
|
happen will happen in libevent). This is a minor optimization,
|
|
|
|
but what the heck... :-) */
|
|
|
|
opal_progress_set_event_flag(OPAL_EVLOOP_ONCE);
|
|
|
|
|
|
|
|
if (debug) {
|
2009-03-06 00:50:47 +03:00
|
|
|
opal_output(0, "%s ompi-server: up and running!", ORTE_NAME_PRINT(ORTE_PROC_MY_NAME));
|
2008-02-28 04:57:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* wait to hear we are done */
|
2012-04-06 18:23:13 +04:00
|
|
|
while (orte_event_base_active) {
|
|
|
|
opal_event_loop(orte_event_base, OPAL_EVLOOP_ONCE);
|
|
|
|
}
|
2008-02-28 04:57:57 +03:00
|
|
|
|
|
|
|
/* should never get here, but if we do... */
|
|
|
|
|
|
|
|
/* Finalize and clean up ourselves */
|
|
|
|
if (ORTE_SUCCESS != (ret = orte_finalize())) {
|
|
|
|
ORTE_ERROR_LOG(ret);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void shutdown_callback(int fd, short flags, void *arg)
|
|
|
|
{
|
|
|
|
int ret;
|
2012-06-27 05:28:28 +04:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
if (debug) {
|
2009-03-06 00:50:47 +03:00
|
|
|
opal_output(0, "%s ompi-server: finalizing", ORTE_NAME_PRINT(ORTE_PROC_MY_NAME));
|
2008-02-28 04:57:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Finalize and clean up ourselves */
|
|
|
|
if (ORTE_SUCCESS != (ret = orte_finalize())) {
|
|
|
|
ORTE_ERROR_LOG(ret);
|
|
|
|
}
|
|
|
|
exit(ret);
|
|
|
|
}
|