mpiexec & PBS Professional 7.1: "PBS reports fewer hosts than
TM"
Pete Wyckoff
pw at osc.edu
Mon Apr 3 16:33:52 EDT 2006
Eichmann at altair.de wrote on Mon, 03 Apr 2006 10:15 +0200:
> thank you for your efforts to make mpiexec work with PBS Pro!
>
> Are you in contact with our developers from AGT? I believe it makes
> sense they provide you with a change log, so I sent a request to them.
Thanks; I haven't talked to anyone at PBSPro for a long time.
Another nice thing you might do for your customers is to include the
stdio patch so we don't have to bother with this redirection helper
hack-around. Attached for your reference. Feel free to contact me
with questions.
-- Pete
-------------- next part --------------
diff -ruN pbs-2.3.12/src/resmom/start_exec.c pbs-2.3.12-old/src/resmom/start_exec.c
--- pbs-2.3.12/src/resmom/start_exec.c Mon Jan 15 16:50:22 2001
+++ pbs-2.3.12-old/src/resmom/start_exec.c Tue Dec 4 14:14:16 2001
@@ -1389,6 +1389,42 @@
}
/*
+ * Look for a certain environment variable which has a port# which should
+ * be opened on the MS to establish communication for one of the 3 stdio
+ * streams. >=0 return is that valid fd, -1 means no env var found,
+ * -2 means malformed env value or failure to connect.
+ */
+static int
+search_env_and_open(const char *envname, u_long ipaddr)
+{
+ static char *id = "search_env_and_open";
+ int i, len = strlen(envname);
+
+ for (i=0; i<vtable.v_used; i++)
+ if (!strncmp(vtable.v_envp[i], envname, len)) {
+ const char *cp = vtable.v_envp[i] + len;
+ char *cq;
+ int fd, port;
+ if (*cp++ != '=') break; /* empty, ignore it */
+ port = strtol(cp, &cq, 10);
+ if (*cq) {
+ log_err(errno, id, "improper value for MPIEXEC_STD*_PORT");
+ return -2;
+ }
+#if 0 /* debugging */
+ log_err(0, "search_env_and_open attempting open", vtable.v_envp[i]);
+#endif
+ if ((fd = open_demux(ipaddr, port)) < 0) {
+ log_err(errno, id, "failed connect to mpiexec process on MS");
+ log_err(errno, id, vtable.v_envp[i]);
+ return -2;
+ }
+ return fd;
+ }
+ return -1; /* not found */
+}
+
+/*
** Start a process for a spawn request. This will be different from
** a job's initial shell task in that the environment will be specified
** and no interactive code need be included.
@@ -1407,7 +1443,7 @@
int pipes[2], kid_read, kid_write, parent_read, parent_write;
int pts;
int i, j;
- int fd;
+ int fd0, fd1, fd2;
u_long ipaddr;
struct array_strings *vstrs;
struct startjob_rtn sjr;
@@ -1631,51 +1667,80 @@
/*
** Set up stdin.
*/
- if ((fd = open("/dev/null", O_RDONLY)) == -1) {
+ /* look through env for a port# on MS we should use for stdin */
+ if ((fd0 = search_env_and_open("MPIEXEC_STDIN_PORT", ipaddr)) == -2)
+ starter_return(kid_write, kid_read, JOB_EXEC_FAIL2, &sjr);
+ /* use /dev/null if no env var found */
+ if (fd0 < 0 && (fd0 = open("/dev/null", O_RDONLY)) == -1) {
log_err(errno, "newtask", "could not open devnull");
(void)close(0);
}
else {
- (void)dup2(fd, 0);
- if (fd > 0)
- (void)close(fd);
+ (void)dup2(fd0, 0);
+ if (fd0 > 0)
+ (void)close(fd0);
}
+ /* look through env for a port# on MS we should use for stdout/err */
+ if ((fd1 = search_env_and_open("MPIEXEC_STDOUT_PORT", ipaddr)) == -2)
+ starter_return(kid_write, kid_read, JOB_EXEC_FAIL2, &sjr);
+ if ((fd2 = search_env_and_open("MPIEXEC_STDERR_PORT", ipaddr)) == -2)
+ starter_return(kid_write, kid_read, JOB_EXEC_FAIL2, &sjr);
+
if (pjob->ji_numnodes > 1) {
/*
** Open sockets to demux proc for stdout and stderr.
*/
- if ((fd = open_demux(ipaddr, pjob->ji_stdout)) == -1)
+ if (fd1 < 0 && (fd1 = open_demux(ipaddr,pjob->ji_stdout)) == -1)
starter_return(kid_write, kid_read, JOB_EXEC_FAIL2, &sjr);
- (void)dup2(fd, 1);
- if (fd > 1)
- (void)close(fd);
- if ((fd = open_demux(ipaddr, pjob->ji_stderr)) == -1)
+ (void)dup2(fd1, 1);
+ if (fd1 > 1)
+ (void)close(fd1);
+ if (fd2 < 0 && (fd2 = open_demux(ipaddr,pjob->ji_stderr)) == -1)
starter_return(kid_write, kid_read, JOB_EXEC_FAIL2, &sjr);
- (void)dup2(fd, 2);
- if (fd > 2)
- (void)close(fd);
-
- (void)write(1,pjob->ji_wattr[(int)JOB_ATR_Cookie].at_val.at_str,
- strlen(pjob->ji_wattr[(int)JOB_ATR_Cookie].at_val.at_str));
- (void)write(2,pjob->ji_wattr[(int)JOB_ATR_Cookie].at_val.at_str,
- strlen(pjob->ji_wattr[(int)JOB_ATR_Cookie].at_val.at_str));
+ (void)dup2(fd2, 2);
+ if (fd2 > 2)
+ (void)close(fd2);
} else if ((pjob->ji_wattr[(int)JOB_ATR_interactive].at_flags&ATR_VFLAG_SET) &&
(pjob->ji_wattr[(int)JOB_ATR_interactive].at_val.at_long > 0)) {
/* interactive job, single node, write to pty */
- if ((pts = open_pty(pjob)) < 0) {
+ pts = -1;
+ if (fd1 < 0 || fd2 < 0) {
+ if ((pts = open_pty(pjob)) < 0) {
log_err(errno, id,"cannot open slave");
starter_return(kid_write, kid_read,JOB_EXEC_FAIL1,&sjr);
+ }
+ if (fd1 < 0)
+ fd1 = pts;
+ if (fd2 < 0)
+ fd2 = pts;
}
- (void)dup2(pts, 1);
- (void)dup2(pts, 2);
-
+ (void)dup2(fd1, 1);
+ (void)dup2(fd2, 2);
+ if (fd1 != pts)
+ (void) close(fd1);
+ if (fd2 != pts)
+ (void) close(fd2);
} else {
/* normal batch job, single node, write straight to files */
- if (open_std_out_err(pjob) == -1) {
+ pts = -1;
+ if (fd1 < 0 || fd2 < 0) {
+ if (open_std_out_err(pjob) == -1)
starter_return(kid_write, kid_read,JOB_EXEC_FAIL1,&sjr);
}
+ if (fd1 >= 0) {
+ (void) close(1);
+ (void) dup2(fd1, 1);
+ if (fd1 > 1)
+ (void) close(fd1);
+ }
+ if (fd2 >= 0) {
+ (void) close(2);
+ (void) dup2(fd2, 2);
+ if (fd2 > 2)
+ (void) close(fd2);
+ }
}
log_close(0);
More information about the mpiexec
mailing list