4 * Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
20 #include <sys/socket.h>
34 * Open pipe to redirect pane output. If already open, close first.
37 static enum cmd_retval
cmd_pipe_pane_exec(struct cmd
*, struct cmdq_item
*);
39 static void cmd_pipe_pane_read_callback(struct bufferevent
*, void *);
40 static void cmd_pipe_pane_write_callback(struct bufferevent
*, void *);
41 static void cmd_pipe_pane_error_callback(struct bufferevent
*, short, void *);
43 const struct cmd_entry cmd_pipe_pane_entry
= {
47 .args
= { "IOot:", 0, 1, NULL
},
48 .usage
= "[-IOo] " CMD_TARGET_PANE_USAGE
" [shell-command]",
50 .target
= { 't', CMD_FIND_PANE
, 0 },
52 .flags
= CMD_AFTERHOOK
,
53 .exec
= cmd_pipe_pane_exec
56 static enum cmd_retval
57 cmd_pipe_pane_exec(struct cmd
*self
, struct cmdq_item
*item
)
59 struct args
*args
= cmd_get_args(self
);
60 struct cmd_find_state
*target
= cmdq_get_target(item
);
61 struct client
*tc
= cmdq_get_target_client(item
);
62 struct window_pane
*wp
= target
->wp
;
63 struct session
*s
= target
->s
;
64 struct winlink
*wl
= target
->wl
;
65 struct window_pane_offset
*wpo
= &wp
->pipe_offset
;
67 int old_fd
, pipe_fd
[2], null_fd
, in
, out
;
68 struct format_tree
*ft
;
71 /* Destroy the old pipe. */
73 if (wp
->pipe_fd
!= -1) {
74 bufferevent_free(wp
->pipe_event
);
78 if (window_pane_destroy_ready(wp
)) {
79 server_destroy_pane(wp
, 1);
80 return (CMD_RETURN_NORMAL
);
84 /* If no pipe command, that is enough. */
85 if (args_count(args
) == 0 || *args_string(args
, 0) == '\0')
86 return (CMD_RETURN_NORMAL
);
89 * With -o, only open the new pipe if there was no previous one. This
90 * allows a pipe to be toggled with a single key, for example:
92 * bind ^p pipep -o 'cat >>~/output'
94 if (args_has(args
, 'o') && old_fd
!= -1)
95 return (CMD_RETURN_NORMAL
);
97 /* What do we want to do? Neither -I or -O is -O. */
98 if (args_has(args
, 'I')) {
100 out
= args_has(args
, 'O');
106 /* Open the new pipe. */
107 if (socketpair(AF_UNIX
, SOCK_STREAM
, PF_UNSPEC
, pipe_fd
) != 0) {
108 cmdq_error(item
, "socketpair error: %s", strerror(errno
));
109 return (CMD_RETURN_ERROR
);
112 /* Expand the command. */
113 ft
= format_create(cmdq_get_client(item
), item
, FORMAT_NONE
, 0);
114 format_defaults(ft
, tc
, s
, wl
, wp
);
115 cmd
= format_expand_time(ft
, args_string(args
, 0));
118 /* Fork the child. */
120 sigprocmask(SIG_BLOCK
, &set
, &oldset
);
123 sigprocmask(SIG_SETMASK
, &oldset
, NULL
);
124 cmdq_error(item
, "fork error: %s", strerror(errno
));
127 return (CMD_RETURN_ERROR
);
130 proc_clear_signals(server_proc
, 1);
131 sigprocmask(SIG_SETMASK
, &oldset
, NULL
);
134 null_fd
= open(_PATH_DEVNULL
, O_WRONLY
);
136 if (dup2(pipe_fd
[1], STDIN_FILENO
) == -1)
139 if (dup2(null_fd
, STDIN_FILENO
) == -1)
143 if (dup2(pipe_fd
[1], STDOUT_FILENO
) == -1)
145 if (pipe_fd
[1] != STDOUT_FILENO
)
148 if (dup2(null_fd
, STDOUT_FILENO
) == -1)
151 if (dup2(null_fd
, STDERR_FILENO
) == -1)
153 closefrom(STDERR_FILENO
+ 1);
155 execl(_PATH_BSHELL
, "sh", "-c", cmd
, (char *) NULL
);
158 /* Parent process. */
159 sigprocmask(SIG_SETMASK
, &oldset
, NULL
);
162 wp
->pipe_fd
= pipe_fd
[0];
163 memcpy(wpo
, &wp
->offset
, sizeof *wpo
);
165 setblocking(wp
->pipe_fd
, 0);
166 wp
->pipe_event
= bufferevent_new(wp
->pipe_fd
,
167 cmd_pipe_pane_read_callback
,
168 cmd_pipe_pane_write_callback
,
169 cmd_pipe_pane_error_callback
,
171 if (wp
->pipe_event
== NULL
)
172 fatalx("out of memory");
174 bufferevent_enable(wp
->pipe_event
, EV_WRITE
);
176 bufferevent_enable(wp
->pipe_event
, EV_READ
);
179 return (CMD_RETURN_NORMAL
);
184 cmd_pipe_pane_read_callback(__unused
struct bufferevent
*bufev
, void *data
)
186 struct window_pane
*wp
= data
;
187 struct evbuffer
*evb
= wp
->pipe_event
->input
;
190 available
= EVBUFFER_LENGTH(evb
);
191 log_debug("%%%u pipe read %zu", wp
->id
, available
);
193 bufferevent_write(wp
->event
, EVBUFFER_DATA(evb
), available
);
194 evbuffer_drain(evb
, available
);
196 if (window_pane_destroy_ready(wp
))
197 server_destroy_pane(wp
, 1);
201 cmd_pipe_pane_write_callback(__unused
struct bufferevent
*bufev
, void *data
)
203 struct window_pane
*wp
= data
;
205 log_debug("%%%u pipe empty", wp
->id
);
207 if (window_pane_destroy_ready(wp
))
208 server_destroy_pane(wp
, 1);
212 cmd_pipe_pane_error_callback(__unused
struct bufferevent
*bufev
,
213 __unused
short what
, void *data
)
215 struct window_pane
*wp
= data
;
217 log_debug("%%%u pipe error", wp
->id
);
219 bufferevent_free(wp
->pipe_event
);
223 if (window_pane_destroy_ready(wp
))
224 server_destroy_pane(wp
, 1);