2009-10-11 10:04:27 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2009-11-04 22:02:38 +00:00
|
|
|
#include <sys/socket.h>
|
2009-10-11 10:04:27 +00:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <paths.h>
|
|
|
|
#include <string.h>
|
2010-06-05 16:34:30 +00:00
|
|
|
#include <time.h>
|
2009-10-11 10:04:27 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Open pipe to redirect pane output. If already open, close first.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int cmd_pipe_pane_exec(struct cmd *, struct cmd_ctx *);
|
|
|
|
|
2009-11-04 22:02:38 +00:00
|
|
|
void cmd_pipe_pane_error_callback(struct bufferevent *, short, void *);
|
|
|
|
|
2009-10-11 10:04:27 +00:00
|
|
|
const struct cmd_entry cmd_pipe_pane_entry = {
|
|
|
|
"pipe-pane", "pipep",
|
|
|
|
CMD_TARGET_PANE_USAGE "[-o] [command]",
|
2009-11-13 19:53:28 +00:00
|
|
|
CMD_ARG01, "o",
|
2009-10-11 10:04:27 +00:00
|
|
|
cmd_target_init,
|
|
|
|
cmd_target_parse,
|
|
|
|
cmd_pipe_pane_exec,
|
|
|
|
cmd_target_free,
|
|
|
|
cmd_target_print
|
|
|
|
};
|
|
|
|
|
|
|
|
int
|
|
|
|
cmd_pipe_pane_exec(struct cmd *self, struct cmd_ctx *ctx)
|
|
|
|
{
|
|
|
|
struct cmd_target_data *data = self->data;
|
2010-06-05 16:34:30 +00:00
|
|
|
struct client *c;
|
2009-10-11 10:04:27 +00:00
|
|
|
struct window_pane *wp;
|
2010-06-05 16:34:30 +00:00
|
|
|
char *command;
|
2009-10-11 10:04:27 +00:00
|
|
|
int old_fd, pipe_fd[2], null_fd, mode;
|
|
|
|
|
2010-06-14 23:06:13 +00:00
|
|
|
if ((c = cmd_find_client(ctx, NULL)) == NULL)
|
2010-06-05 16:34:30 +00:00
|
|
|
return (-1);
|
|
|
|
|
2009-10-21 18:12:31 +00:00
|
|
|
if (cmd_find_pane(ctx, data->target, NULL, &wp) == NULL)
|
2009-10-11 10:04:27 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
/* Destroy the old pipe. */
|
|
|
|
old_fd = wp->pipe_fd;
|
|
|
|
if (wp->pipe_fd != -1) {
|
2009-11-04 22:02:38 +00:00
|
|
|
bufferevent_free(wp->pipe_event);
|
2009-10-11 10:04:27 +00:00
|
|
|
close(wp->pipe_fd);
|
|
|
|
wp->pipe_fd = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If no pipe command, that is enough. */
|
|
|
|
if (data->arg == NULL || *data->arg == '\0')
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* With -o, only open the new pipe if there was no previous one. This
|
|
|
|
* allows a pipe to be toggled with a single key, for example:
|
|
|
|
*
|
|
|
|
* bind ^p pipep -o 'cat >>~/output'
|
|
|
|
*/
|
2009-11-13 19:53:28 +00:00
|
|
|
if (cmd_check_flag(data->chflags, 'o') && old_fd != -1)
|
2009-10-11 10:04:27 +00:00
|
|
|
return (0);
|
|
|
|
|
|
|
|
/* Open the new pipe. */
|
2009-11-04 22:02:38 +00:00
|
|
|
if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pipe_fd) != 0) {
|
|
|
|
ctx->error(ctx, "socketpair error: %s", strerror(errno));
|
2009-10-11 10:04:27 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fork the child. */
|
|
|
|
switch (fork()) {
|
|
|
|
case -1:
|
|
|
|
ctx->error(ctx, "fork error: %s", strerror(errno));
|
2009-12-03 22:50:09 +00:00
|
|
|
return (-1);
|
2009-10-11 10:04:27 +00:00
|
|
|
case 0:
|
|
|
|
/* Child process. */
|
|
|
|
close(pipe_fd[0]);
|
2010-08-19 18:29:01 +00:00
|
|
|
clear_signals(1);
|
2009-10-11 10:04:27 +00:00
|
|
|
|
|
|
|
if (dup2(pipe_fd[1], STDIN_FILENO) == -1)
|
|
|
|
_exit(1);
|
|
|
|
if (pipe_fd[1] != STDIN_FILENO)
|
|
|
|
close(pipe_fd[1]);
|
|
|
|
|
|
|
|
null_fd = open(_PATH_DEVNULL, O_WRONLY, 0);
|
|
|
|
if (dup2(null_fd, STDOUT_FILENO) == -1)
|
|
|
|
_exit(1);
|
|
|
|
if (dup2(null_fd, STDERR_FILENO) == -1)
|
|
|
|
_exit(1);
|
|
|
|
if (null_fd != STDOUT_FILENO && null_fd != STDERR_FILENO)
|
|
|
|
close(null_fd);
|
|
|
|
|
2010-10-16 08:31:55 +00:00
|
|
|
closefrom(STDERR_FILENO + 1);
|
|
|
|
|
2010-06-05 16:34:30 +00:00
|
|
|
command = status_replace(c, NULL, data->arg, time(NULL), 0);
|
|
|
|
execl(_PATH_BSHELL, "sh", "-c", command, (char *) NULL);
|
2009-10-11 10:04:27 +00:00
|
|
|
_exit(1);
|
|
|
|
default:
|
|
|
|
/* Parent process. */
|
|
|
|
close(pipe_fd[1]);
|
|
|
|
|
|
|
|
wp->pipe_fd = pipe_fd[0];
|
2009-11-04 22:43:11 +00:00
|
|
|
wp->pipe_off = EVBUFFER_LENGTH(wp->event->input);
|
2009-12-03 22:50:09 +00:00
|
|
|
|
2009-11-04 22:02:38 +00:00
|
|
|
wp->pipe_event = bufferevent_new(wp->pipe_fd,
|
|
|
|
NULL, NULL, cmd_pipe_pane_error_callback, wp);
|
|
|
|
bufferevent_enable(wp->pipe_event, EV_WRITE);
|
2009-12-03 22:50:09 +00:00
|
|
|
|
2009-10-11 10:04:27 +00:00
|
|
|
if ((mode = fcntl(wp->pipe_fd, F_GETFL)) == -1)
|
|
|
|
fatal("fcntl failed");
|
|
|
|
if (fcntl(wp->pipe_fd, F_SETFL, mode|O_NONBLOCK) == -1)
|
|
|
|
fatal("fcntl failed");
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
2009-11-04 22:02:38 +00:00
|
|
|
|
2009-11-26 21:37:13 +00:00
|
|
|
/* ARGSUSED */
|
2009-11-04 22:02:38 +00:00
|
|
|
void
|
|
|
|
cmd_pipe_pane_error_callback(
|
|
|
|
unused struct bufferevent *bufev, unused short what, void *data)
|
|
|
|
{
|
|
|
|
struct window_pane *wp = data;
|
|
|
|
|
|
|
|
bufferevent_free(wp->pipe_event);
|
|
|
|
close(wp->pipe_fd);
|
|
|
|
wp->pipe_fd = -1;
|
|
|
|
}
|