2008-01-28 16:37:16 -05:00
|
|
|
/* source: xio-system.c */
|
2008-01-29 16:11:28 -05:00
|
|
|
/* Copyright Gerhard Rieger 2001-2008 */
|
2008-01-27 07:00:08 -05:00
|
|
|
/* Published under the GNU General Public License V.2, see file COPYING */
|
|
|
|
|
|
|
|
/* this file contains the source for opening addresses of system type */
|
|
|
|
|
|
|
|
#include "xiosysincludes.h"
|
|
|
|
#include "xioopen.h"
|
|
|
|
|
|
|
|
#include "xio-progcall.h"
|
|
|
|
#include "xio-system.h"
|
|
|
|
|
|
|
|
|
|
|
|
#if WITH_SYSTEM
|
|
|
|
|
|
|
|
static int xioopen_system(int arg, const char *argv[], struct opt *opts,
|
|
|
|
int xioflags, /* XIO_RDONLY etc. */
|
|
|
|
xiofile_t *fd,
|
|
|
|
unsigned groups,
|
|
|
|
int dummy1, int dummy2, int dummy3
|
|
|
|
);
|
|
|
|
|
|
|
|
const struct addrdesc addr_system = { "system", 3, xioopen_system, GROUP_FD|GROUP_FORK|GROUP_EXEC|GROUP_SOCKET|GROUP_SOCK_UNIX|GROUP_TERMIOS|GROUP_FIFO|GROUP_PTY|GROUP_PARENT, 1, 0, 0 HELP(":<shell-command>") };
|
|
|
|
|
|
|
|
|
|
|
|
static int xioopen_system(int argc, const char *argv[], struct opt *opts,
|
|
|
|
int xioflags, /* XIO_RDONLY etc. */
|
|
|
|
xiofile_t *fd,
|
|
|
|
unsigned groups,
|
|
|
|
int dummy1, int dummy2, int dummy3
|
|
|
|
) {
|
|
|
|
int status;
|
|
|
|
char *path = NULL;
|
2008-06-07 04:14:56 -04:00
|
|
|
int duptostderr;
|
2008-01-27 07:00:08 -05:00
|
|
|
int result;
|
|
|
|
const char *string = argv[1];
|
|
|
|
|
2008-06-07 04:14:56 -04:00
|
|
|
status = _xioopen_foxec(xioflags, &fd->stream, groups, &opts, &duptostderr);
|
2008-01-27 07:00:08 -05:00
|
|
|
if (status < 0) return status;
|
|
|
|
if (status == 0) { /* child */
|
|
|
|
int numleft;
|
|
|
|
|
|
|
|
if (setopt_path(opts, &path) < 0) {
|
|
|
|
/* this could be dangerous, so let us abort this child... */
|
|
|
|
Exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((numleft = leftopts(opts)) > 0) {
|
|
|
|
Error1("%d option(s) could not be used", numleft);
|
|
|
|
showleft(opts);
|
|
|
|
return STAT_NORETRY;
|
|
|
|
}
|
|
|
|
|
2008-06-07 04:14:56 -04:00
|
|
|
/* only now redirect stderr */
|
|
|
|
if (duptostderr >= 0) {
|
|
|
|
diag_dup();
|
|
|
|
Dup2(duptostderr, 2);
|
|
|
|
}
|
2008-01-27 07:00:08 -05:00
|
|
|
Info1("executing shell command \"%s\"", string);
|
|
|
|
result = System(string);
|
|
|
|
if (result != 0) {
|
|
|
|
Warn2("system(\"%s\") returned with status %d", string, result);
|
2008-01-29 16:11:28 -05:00
|
|
|
Warn1("system(): %s", strerror(errno));
|
2008-01-27 07:00:08 -05:00
|
|
|
}
|
|
|
|
Exit(0); /* this child process */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* parent */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* WITH_SYSTEM */
|