xref: /openbsd-src/usr.bin/tmux/window.c (revision 58fbf5d6aa35e3d66f2c32c61d2f38824a990e85)
1 /* $OpenBSD: window.c,v 1.268 2021/01/20 07:16:54 nicm Exp $ */
2 
3 /*
4  * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
5  *
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.
9  *
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.
17  */
18 
19 #include <sys/types.h>
20 #include <sys/ioctl.h>
21 
22 #include <ctype.h>
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <fnmatch.h>
26 #include <regex.h>
27 #include <signal.h>
28 #include <stdint.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <time.h>
32 #include <unistd.h>
33 #include <util.h>
34 #include <vis.h>
35 
36 #include "tmux.h"
37 
38 /*
39  * Each window is attached to a number of panes, each of which is a pty. This
40  * file contains code to handle them.
41  *
42  * A pane has two buffers attached, these are filled and emptied by the main
43  * server poll loop. Output data is received from pty's in screen format,
44  * translated and returned as a series of escape sequences and strings via
45  * input_parse (in input.c). Input data is received as key codes and written
46  * directly via input_key.
47  *
48  * Each pane also has a "virtual" screen (screen.c) which contains the current
49  * state and is redisplayed when the window is reattached to a client.
50  *
51  * Windows are stored directly on a global array and wrapped in any number of
52  * winlink structs to be linked onto local session RB trees. A reference count
53  * is maintained and a window removed from the global list and destroyed when
54  * it reaches zero.
55  */
56 
57 /* Global window list. */
58 struct windows windows;
59 
60 /* Global panes tree. */
61 struct window_pane_tree all_window_panes;
62 static u_int	next_window_pane_id;
63 static u_int	next_window_id;
64 static u_int	next_active_point;
65 
66 /* List of window modes. */
67 const struct window_mode *all_window_modes[] = {
68 	&window_buffer_mode,
69 	&window_client_mode,
70 	&window_clock_mode,
71 	&window_copy_mode,
72 	&window_tree_mode,
73 	&window_view_mode,
74 	NULL
75 };
76 
77 struct window_pane_input_data {
78 	struct cmdq_item	*item;
79 	u_int			 wp;
80 };
81 
82 static struct window_pane *window_pane_create(struct window *, u_int, u_int,
83 		    u_int);
84 static void	window_pane_destroy(struct window_pane *);
85 
86 RB_GENERATE(windows, window, entry, window_cmp);
87 RB_GENERATE(winlinks, winlink, entry, winlink_cmp);
88 RB_GENERATE(window_pane_tree, window_pane, tree_entry, window_pane_cmp);
89 
90 int
91 window_cmp(struct window *w1, struct window *w2)
92 {
93 	return (w1->id - w2->id);
94 }
95 
96 int
97 winlink_cmp(struct winlink *wl1, struct winlink *wl2)
98 {
99 	return (wl1->idx - wl2->idx);
100 }
101 
102 int
103 window_pane_cmp(struct window_pane *wp1, struct window_pane *wp2)
104 {
105 	return (wp1->id - wp2->id);
106 }
107 
108 struct winlink *
109 winlink_find_by_window(struct winlinks *wwl, struct window *w)
110 {
111 	struct winlink	*wl;
112 
113 	RB_FOREACH(wl, winlinks, wwl) {
114 		if (wl->window == w)
115 			return (wl);
116 	}
117 
118 	return (NULL);
119 }
120 
121 struct winlink *
122 winlink_find_by_index(struct winlinks *wwl, int idx)
123 {
124 	struct winlink	wl;
125 
126 	if (idx < 0)
127 		fatalx("bad index");
128 
129 	wl.idx = idx;
130 	return (RB_FIND(winlinks, wwl, &wl));
131 }
132 
133 struct winlink *
134 winlink_find_by_window_id(struct winlinks *wwl, u_int id)
135 {
136 	struct winlink *wl;
137 
138 	RB_FOREACH(wl, winlinks, wwl) {
139 		if (wl->window->id == id)
140 			return (wl);
141 	}
142 	return (NULL);
143 }
144 
145 static int
146 winlink_next_index(struct winlinks *wwl, int idx)
147 {
148 	int	i;
149 
150 	i = idx;
151 	do {
152 		if (winlink_find_by_index(wwl, i) == NULL)
153 			return (i);
154 		if (i == INT_MAX)
155 			i = 0;
156 		else
157 			i++;
158 	} while (i != idx);
159 	return (-1);
160 }
161 
162 u_int
163 winlink_count(struct winlinks *wwl)
164 {
165 	struct winlink	*wl;
166 	u_int		 n;
167 
168 	n = 0;
169 	RB_FOREACH(wl, winlinks, wwl)
170 		n++;
171 
172 	return (n);
173 }
174 
175 struct winlink *
176 winlink_add(struct winlinks *wwl, int idx)
177 {
178 	struct winlink	*wl;
179 
180 	if (idx < 0) {
181 		if ((idx = winlink_next_index(wwl, -idx - 1)) == -1)
182 			return (NULL);
183 	} else if (winlink_find_by_index(wwl, idx) != NULL)
184 		return (NULL);
185 
186 	wl = xcalloc(1, sizeof *wl);
187 	wl->idx = idx;
188 	RB_INSERT(winlinks, wwl, wl);
189 
190 	return (wl);
191 }
192 
193 void
194 winlink_set_window(struct winlink *wl, struct window *w)
195 {
196 	if (wl->window != NULL) {
197 		TAILQ_REMOVE(&wl->window->winlinks, wl, wentry);
198 		window_remove_ref(wl->window, __func__);
199 	}
200 	TAILQ_INSERT_TAIL(&w->winlinks, wl, wentry);
201 	wl->window = w;
202 	window_add_ref(w, __func__);
203 }
204 
205 void
206 winlink_remove(struct winlinks *wwl, struct winlink *wl)
207 {
208 	struct window	*w = wl->window;
209 
210 	if (w != NULL) {
211 		TAILQ_REMOVE(&w->winlinks, wl, wentry);
212 		window_remove_ref(w, __func__);
213 	}
214 
215 	RB_REMOVE(winlinks, wwl, wl);
216 	free(wl);
217 }
218 
219 struct winlink *
220 winlink_next(struct winlink *wl)
221 {
222 	return (RB_NEXT(winlinks, wwl, wl));
223 }
224 
225 struct winlink *
226 winlink_previous(struct winlink *wl)
227 {
228 	return (RB_PREV(winlinks, wwl, wl));
229 }
230 
231 struct winlink *
232 winlink_next_by_number(struct winlink *wl, struct session *s, int n)
233 {
234 	for (; n > 0; n--) {
235 		if ((wl = RB_NEXT(winlinks, wwl, wl)) == NULL)
236 			wl = RB_MIN(winlinks, &s->windows);
237 	}
238 
239 	return (wl);
240 }
241 
242 struct winlink *
243 winlink_previous_by_number(struct winlink *wl, struct session *s, int n)
244 {
245 	for (; n > 0; n--) {
246 		if ((wl = RB_PREV(winlinks, wwl, wl)) == NULL)
247 			wl = RB_MAX(winlinks, &s->windows);
248 	}
249 
250 	return (wl);
251 }
252 
253 void
254 winlink_stack_push(struct winlink_stack *stack, struct winlink *wl)
255 {
256 	if (wl == NULL)
257 		return;
258 
259 	winlink_stack_remove(stack, wl);
260 	TAILQ_INSERT_HEAD(stack, wl, sentry);
261 }
262 
263 void
264 winlink_stack_remove(struct winlink_stack *stack, struct winlink *wl)
265 {
266 	struct winlink	*wl2;
267 
268 	if (wl == NULL)
269 		return;
270 
271 	TAILQ_FOREACH(wl2, stack, sentry) {
272 		if (wl2 == wl) {
273 			TAILQ_REMOVE(stack, wl, sentry);
274 			return;
275 		}
276 	}
277 }
278 
279 struct window *
280 window_find_by_id_str(const char *s)
281 {
282 	const char	*errstr;
283 	u_int		 id;
284 
285 	if (*s != '@')
286 		return (NULL);
287 
288 	id = strtonum(s + 1, 0, UINT_MAX, &errstr);
289 	if (errstr != NULL)
290 		return (NULL);
291 	return (window_find_by_id(id));
292 }
293 
294 struct window *
295 window_find_by_id(u_int id)
296 {
297 	struct window	w;
298 
299 	w.id = id;
300 	return (RB_FIND(windows, &windows, &w));
301 }
302 
303 void
304 window_update_activity(struct window *w)
305 {
306 	gettimeofday(&w->activity_time, NULL);
307 	alerts_queue(w, WINDOW_ACTIVITY);
308 }
309 
310 struct window *
311 window_create(u_int sx, u_int sy, u_int xpixel, u_int ypixel)
312 {
313 	struct window	*w;
314 
315 	if (xpixel == 0)
316 		xpixel = DEFAULT_XPIXEL;
317 	if (ypixel == 0)
318 		ypixel = DEFAULT_YPIXEL;
319 
320 	w = xcalloc(1, sizeof *w);
321 	w->name = xstrdup("");
322 	w->flags = 0;
323 
324 	TAILQ_INIT(&w->panes);
325 	w->active = NULL;
326 
327 	w->lastlayout = -1;
328 	w->layout_root = NULL;
329 
330 	w->sx = sx;
331 	w->sy = sy;
332 	w->xpixel = xpixel;
333 	w->ypixel = ypixel;
334 
335 	w->options = options_create(global_w_options);
336 
337 	w->references = 0;
338 	TAILQ_INIT(&w->winlinks);
339 
340 	w->id = next_window_id++;
341 	RB_INSERT(windows, &windows, w);
342 
343 	window_update_activity(w);
344 
345 	return (w);
346 }
347 
348 static void
349 window_destroy(struct window *w)
350 {
351 	log_debug("window @%u destroyed (%d references)", w->id, w->references);
352 
353 	RB_REMOVE(windows, &windows, w);
354 
355 	if (w->layout_root != NULL)
356 		layout_free_cell(w->layout_root);
357 	if (w->saved_layout_root != NULL)
358 		layout_free_cell(w->saved_layout_root);
359 	free(w->old_layout);
360 
361 	window_destroy_panes(w);
362 
363 	if (event_initialized(&w->name_event))
364 		evtimer_del(&w->name_event);
365 
366 	if (event_initialized(&w->alerts_timer))
367 		evtimer_del(&w->alerts_timer);
368 	if (event_initialized(&w->offset_timer))
369 		event_del(&w->offset_timer);
370 
371 	options_free(w->options);
372 
373 	free(w->name);
374 	free(w);
375 }
376 
377 int
378 window_pane_destroy_ready(struct window_pane *wp)
379 {
380 	int	n;
381 
382 	if (wp->pipe_fd != -1) {
383 		if (EVBUFFER_LENGTH(wp->pipe_event->output) != 0)
384 			return (0);
385 		if (ioctl(wp->fd, FIONREAD, &n) != -1 && n > 0)
386 			return (0);
387 	}
388 
389 	if (~wp->flags & PANE_EXITED)
390 		return (0);
391 	return (1);
392 }
393 
394 void
395 window_add_ref(struct window *w, const char *from)
396 {
397 	w->references++;
398 	log_debug("%s: @%u %s, now %d", __func__, w->id, from, w->references);
399 }
400 
401 void
402 window_remove_ref(struct window *w, const char *from)
403 {
404 	w->references--;
405 	log_debug("%s: @%u %s, now %d", __func__, w->id, from, w->references);
406 
407 	if (w->references == 0)
408 		window_destroy(w);
409 }
410 
411 void
412 window_set_name(struct window *w, const char *new_name)
413 {
414 	free(w->name);
415 	utf8_stravis(&w->name, new_name, VIS_OCTAL|VIS_CSTYLE|VIS_TAB|VIS_NL);
416 	notify_window("window-renamed", w);
417 }
418 
419 void
420 window_resize(struct window *w, u_int sx, u_int sy, int xpixel, int ypixel)
421 {
422 	if (xpixel == 0)
423 		xpixel = DEFAULT_XPIXEL;
424 	if (ypixel == 0)
425 		ypixel = DEFAULT_YPIXEL;
426 
427 	log_debug("%s: @%u resize %ux%u (%ux%u)", __func__, w->id, sx, sy,
428 	    xpixel == -1 ? w->xpixel : (u_int)xpixel,
429 	    ypixel == -1 ? w->ypixel : (u_int)ypixel);
430 	w->sx = sx;
431 	w->sy = sy;
432 	if (xpixel != -1)
433 		w->xpixel = xpixel;
434 	if (ypixel != -1)
435 		w->ypixel = ypixel;
436 }
437 
438 void
439 window_pane_send_resize(struct window_pane *wp, int force)
440 {
441 	struct window	*w = wp->window;
442 	struct winsize	 ws;
443 	u_int  		 sy;
444 
445 	if (wp->fd == -1)
446 		return;
447 
448 	if (!force)
449 		sy = wp->sy;
450 	else if (wp->sy <= 1)
451 		sy = wp->sy + 1;
452 	else
453 		sy = wp->sy - 1;
454 	log_debug("%s: %%%u resize to %u,%u", __func__, wp->id, wp->sx, sy);
455 
456 	memset(&ws, 0, sizeof ws);
457 	ws.ws_col = wp->sx;
458 	ws.ws_row = sy;
459 	ws.ws_xpixel = w->xpixel * ws.ws_col;
460 	ws.ws_ypixel = w->ypixel * ws.ws_row;
461 	if (ioctl(wp->fd, TIOCSWINSZ, &ws) == -1)
462 		fatal("ioctl failed");
463 }
464 
465 int
466 window_has_pane(struct window *w, struct window_pane *wp)
467 {
468 	struct window_pane	*wp1;
469 
470 	TAILQ_FOREACH(wp1, &w->panes, entry) {
471 		if (wp1 == wp)
472 			return (1);
473 	}
474 	return (0);
475 }
476 
477 int
478 window_set_active_pane(struct window *w, struct window_pane *wp, int notify)
479 {
480 	log_debug("%s: pane %%%u", __func__, wp->id);
481 
482 	if (wp == w->active)
483 		return (0);
484 	w->last = w->active;
485 
486 	w->active = wp;
487 	w->active->active_point = next_active_point++;
488 	w->active->flags |= PANE_CHANGED;
489 
490 	tty_update_window_offset(w);
491 
492 	if (notify)
493 		notify_window("window-pane-changed", w);
494 	return (1);
495 }
496 
497 void
498 window_redraw_active_switch(struct window *w, struct window_pane *wp)
499 {
500 	struct grid_cell	*gc1, *gc2;
501 	int			 c1, c2;
502 
503 	if (wp == w->active)
504 		return;
505 
506 	for (;;) {
507 		/*
508 		 * If the active and inactive styles or palettes are different,
509 		 * need to redraw the panes.
510 		 */
511 		gc1 = &wp->cached_gc;
512 		gc2 = &wp->cached_active_gc;
513 		if (!grid_cells_look_equal(gc1, gc2))
514 			wp->flags |= PANE_REDRAW;
515 		else {
516 			c1 = window_pane_get_palette(wp, gc1->fg);
517 			c2 = window_pane_get_palette(wp, gc2->fg);
518 			if (c1 != c2)
519 				wp->flags |= PANE_REDRAW;
520 			else {
521 				c1 = window_pane_get_palette(wp, gc1->bg);
522 				c2 = window_pane_get_palette(wp, gc2->bg);
523 				if (c1 != c2)
524 					wp->flags |= PANE_REDRAW;
525 			}
526 		}
527 		if (wp == w->active)
528 			break;
529 		wp = w->active;
530 	}
531 }
532 
533 struct window_pane *
534 window_get_active_at(struct window *w, u_int x, u_int y)
535 {
536 	struct window_pane	*wp;
537 
538 	TAILQ_FOREACH(wp, &w->panes, entry) {
539 		if (!window_pane_visible(wp))
540 			continue;
541 		if (x < wp->xoff || x > wp->xoff + wp->sx)
542 			continue;
543 		if (y < wp->yoff || y > wp->yoff + wp->sy)
544 			continue;
545 		return (wp);
546 	}
547 	return (NULL);
548 }
549 
550 struct window_pane *
551 window_find_string(struct window *w, const char *s)
552 {
553 	u_int	x, y, top = 0, bottom = w->sy - 1;
554 	int	status;
555 
556 	x = w->sx / 2;
557 	y = w->sy / 2;
558 
559 	status = options_get_number(w->options, "pane-border-status");
560 	if (status == PANE_STATUS_TOP)
561 		top++;
562 	else if (status == PANE_STATUS_BOTTOM)
563 		bottom--;
564 
565 	if (strcasecmp(s, "top") == 0)
566 		y = top;
567 	else if (strcasecmp(s, "bottom") == 0)
568 		y = bottom;
569 	else if (strcasecmp(s, "left") == 0)
570 		x = 0;
571 	else if (strcasecmp(s, "right") == 0)
572 		x = w->sx - 1;
573 	else if (strcasecmp(s, "top-left") == 0) {
574 		x = 0;
575 		y = top;
576 	} else if (strcasecmp(s, "top-right") == 0) {
577 		x = w->sx - 1;
578 		y = top;
579 	} else if (strcasecmp(s, "bottom-left") == 0) {
580 		x = 0;
581 		y = bottom;
582 	} else if (strcasecmp(s, "bottom-right") == 0) {
583 		x = w->sx - 1;
584 		y = bottom;
585 	} else
586 		return (NULL);
587 
588 	return (window_get_active_at(w, x, y));
589 }
590 
591 int
592 window_zoom(struct window_pane *wp)
593 {
594 	struct window		*w = wp->window;
595 	struct window_pane	*wp1;
596 
597 	if (w->flags & WINDOW_ZOOMED)
598 		return (-1);
599 
600 	if (window_count_panes(w) == 1)
601 		return (-1);
602 
603 	if (w->active != wp)
604 		window_set_active_pane(w, wp, 1);
605 
606 	TAILQ_FOREACH(wp1, &w->panes, entry) {
607 		wp1->saved_layout_cell = wp1->layout_cell;
608 		wp1->layout_cell = NULL;
609 	}
610 
611 	w->saved_layout_root = w->layout_root;
612 	layout_init(w, wp);
613 	w->flags |= WINDOW_ZOOMED;
614 	notify_window("window-layout-changed", w);
615 
616 	return (0);
617 }
618 
619 int
620 window_unzoom(struct window *w)
621 {
622 	struct window_pane	*wp;
623 
624 	if (!(w->flags & WINDOW_ZOOMED))
625 		return (-1);
626 
627 	w->flags &= ~WINDOW_ZOOMED;
628 	layout_free(w);
629 	w->layout_root = w->saved_layout_root;
630 	w->saved_layout_root = NULL;
631 
632 	TAILQ_FOREACH(wp, &w->panes, entry) {
633 		wp->layout_cell = wp->saved_layout_cell;
634 		wp->saved_layout_cell = NULL;
635 	}
636 	layout_fix_panes(w);
637 	notify_window("window-layout-changed", w);
638 
639 	return (0);
640 }
641 
642 int
643 window_push_zoom(struct window *w, int flag)
644 {
645 	log_debug("%s: @%u %d", __func__, w->id,
646 	    flag && (w->flags & WINDOW_ZOOMED));
647 	if (flag && (w->flags & WINDOW_ZOOMED))
648 		w->flags |= WINDOW_WASZOOMED;
649 	else
650 		w->flags &= ~WINDOW_WASZOOMED;
651 	return (window_unzoom(w) == 0);
652 }
653 
654 int
655 window_pop_zoom(struct window *w)
656 {
657 	log_debug("%s: @%u %d", __func__, w->id,
658 	    !!(w->flags & WINDOW_WASZOOMED));
659 	if (w->flags & WINDOW_WASZOOMED)
660 		return (window_zoom(w->active) == 0);
661 	return (0);
662 }
663 
664 struct window_pane *
665 window_add_pane(struct window *w, struct window_pane *other, u_int hlimit,
666     int flags)
667 {
668 	struct window_pane	*wp;
669 
670 	if (other == NULL)
671 		other = w->active;
672 
673 	wp = window_pane_create(w, w->sx, w->sy, hlimit);
674 	if (TAILQ_EMPTY(&w->panes)) {
675 		log_debug("%s: @%u at start", __func__, w->id);
676 		TAILQ_INSERT_HEAD(&w->panes, wp, entry);
677 	} else if (flags & SPAWN_BEFORE) {
678 		log_debug("%s: @%u before %%%u", __func__, w->id, wp->id);
679 		if (flags & SPAWN_FULLSIZE)
680 			TAILQ_INSERT_HEAD(&w->panes, wp, entry);
681 		else
682 			TAILQ_INSERT_BEFORE(other, wp, entry);
683 	} else {
684 		log_debug("%s: @%u after %%%u", __func__, w->id, wp->id);
685 		if (flags & SPAWN_FULLSIZE)
686 			TAILQ_INSERT_TAIL(&w->panes, wp, entry);
687 		else
688 			TAILQ_INSERT_AFTER(&w->panes, other, wp, entry);
689 	}
690 	return (wp);
691 }
692 
693 void
694 window_lost_pane(struct window *w, struct window_pane *wp)
695 {
696 	log_debug("%s: @%u pane %%%u", __func__, w->id, wp->id);
697 
698 	if (wp == marked_pane.wp)
699 		server_clear_marked();
700 
701 	if (wp == w->active) {
702 		w->active = w->last;
703 		w->last = NULL;
704 		if (w->active == NULL) {
705 			w->active = TAILQ_PREV(wp, window_panes, entry);
706 			if (w->active == NULL)
707 				w->active = TAILQ_NEXT(wp, entry);
708 		}
709 		if (w->active != NULL) {
710 			w->active->flags |= PANE_CHANGED;
711 			notify_window("window-pane-changed", w);
712 		}
713 	} else if (wp == w->last)
714 		w->last = NULL;
715 }
716 
717 void
718 window_remove_pane(struct window *w, struct window_pane *wp)
719 {
720 	window_lost_pane(w, wp);
721 
722 	TAILQ_REMOVE(&w->panes, wp, entry);
723 	window_pane_destroy(wp);
724 }
725 
726 struct window_pane *
727 window_pane_at_index(struct window *w, u_int idx)
728 {
729 	struct window_pane	*wp;
730 	u_int			 n;
731 
732 	n = options_get_number(w->options, "pane-base-index");
733 	TAILQ_FOREACH(wp, &w->panes, entry) {
734 		if (n == idx)
735 			return (wp);
736 		n++;
737 	}
738 	return (NULL);
739 }
740 
741 struct window_pane *
742 window_pane_next_by_number(struct window *w, struct window_pane *wp, u_int n)
743 {
744 	for (; n > 0; n--) {
745 		if ((wp = TAILQ_NEXT(wp, entry)) == NULL)
746 			wp = TAILQ_FIRST(&w->panes);
747 	}
748 
749 	return (wp);
750 }
751 
752 struct window_pane *
753 window_pane_previous_by_number(struct window *w, struct window_pane *wp,
754     u_int n)
755 {
756 	for (; n > 0; n--) {
757 		if ((wp = TAILQ_PREV(wp, window_panes, entry)) == NULL)
758 			wp = TAILQ_LAST(&w->panes, window_panes);
759 	}
760 
761 	return (wp);
762 }
763 
764 int
765 window_pane_index(struct window_pane *wp, u_int *i)
766 {
767 	struct window_pane	*wq;
768 	struct window		*w = wp->window;
769 
770 	*i = options_get_number(w->options, "pane-base-index");
771 	TAILQ_FOREACH(wq, &w->panes, entry) {
772 		if (wp == wq) {
773 			return (0);
774 		}
775 		(*i)++;
776 	}
777 
778 	return (-1);
779 }
780 
781 u_int
782 window_count_panes(struct window *w)
783 {
784 	struct window_pane	*wp;
785 	u_int			 n;
786 
787 	n = 0;
788 	TAILQ_FOREACH(wp, &w->panes, entry)
789 		n++;
790 	return (n);
791 }
792 
793 void
794 window_destroy_panes(struct window *w)
795 {
796 	struct window_pane	*wp;
797 
798 	while (!TAILQ_EMPTY(&w->panes)) {
799 		wp = TAILQ_FIRST(&w->panes);
800 		TAILQ_REMOVE(&w->panes, wp, entry);
801 		window_pane_destroy(wp);
802 	}
803 }
804 
805 const char *
806 window_printable_flags(struct winlink *wl, int escape)
807 {
808 	struct session	*s = wl->session;
809 	static char	 flags[32];
810 	int		 pos;
811 
812 	pos = 0;
813 	if (wl->flags & WINLINK_ACTIVITY) {
814 		flags[pos++] = '#';
815 		if (escape)
816 			flags[pos++] = '#';
817 	}
818 	if (wl->flags & WINLINK_BELL)
819 		flags[pos++] = '!';
820 	if (wl->flags & WINLINK_SILENCE)
821 		flags[pos++] = '~';
822 	if (wl == s->curw)
823 		flags[pos++] = '*';
824 	if (wl == TAILQ_FIRST(&s->lastw))
825 		flags[pos++] = '-';
826 	if (server_check_marked() && wl == marked_pane.wl)
827 		flags[pos++] = 'M';
828 	if (wl->window->flags & WINDOW_ZOOMED)
829 		flags[pos++] = 'Z';
830 	flags[pos] = '\0';
831 	return (flags);
832 }
833 
834 struct window_pane *
835 window_pane_find_by_id_str(const char *s)
836 {
837 	const char	*errstr;
838 	u_int		 id;
839 
840 	if (*s != '%')
841 		return (NULL);
842 
843 	id = strtonum(s + 1, 0, UINT_MAX, &errstr);
844 	if (errstr != NULL)
845 		return (NULL);
846 	return (window_pane_find_by_id(id));
847 }
848 
849 struct window_pane *
850 window_pane_find_by_id(u_int id)
851 {
852 	struct window_pane	wp;
853 
854 	wp.id = id;
855 	return (RB_FIND(window_pane_tree, &all_window_panes, &wp));
856 }
857 
858 static struct window_pane *
859 window_pane_create(struct window *w, u_int sx, u_int sy, u_int hlimit)
860 {
861 	struct window_pane	*wp;
862 	char			 host[HOST_NAME_MAX + 1];
863 
864 	wp = xcalloc(1, sizeof *wp);
865 	wp->window = w;
866 	wp->options = options_create(w->options);
867 	wp->flags = PANE_STYLECHANGED;
868 
869 	wp->id = next_window_pane_id++;
870 	RB_INSERT(window_pane_tree, &all_window_panes, wp);
871 
872 	wp->argc = 0;
873 	wp->argv = NULL;
874 	wp->shell = NULL;
875 	wp->cwd = NULL;
876 
877 	wp->fd = -1;
878 	wp->event = NULL;
879 
880 	wp->fg = 8;
881 	wp->bg = 8;
882 
883 	TAILQ_INIT(&wp->modes);
884 
885 	wp->layout_cell = NULL;
886 
887 	wp->xoff = 0;
888 	wp->yoff = 0;
889 
890 	wp->sx = sx;
891 	wp->sy = sy;
892 
893 	wp->pipe_fd = -1;
894 	wp->pipe_event = NULL;
895 
896 	screen_init(&wp->base, sx, sy, hlimit);
897 	wp->screen = &wp->base;
898 
899 	screen_init(&wp->status_screen, 1, 1, 0);
900 
901 	if (gethostname(host, sizeof host) == 0)
902 		screen_set_title(&wp->base, host);
903 
904 	return (wp);
905 }
906 
907 static void
908 window_pane_destroy(struct window_pane *wp)
909 {
910 	window_pane_reset_mode_all(wp);
911 	free(wp->searchstr);
912 
913 	if (wp->fd != -1) {
914 		bufferevent_free(wp->event);
915 		close(wp->fd);
916 	}
917 	if (wp->ictx != NULL)
918 		input_free(wp->ictx);
919 
920 	screen_free(&wp->status_screen);
921 
922 	screen_free(&wp->base);
923 
924 	if (wp->pipe_fd != -1) {
925 		bufferevent_free(wp->pipe_event);
926 		close(wp->pipe_fd);
927 	}
928 
929 	if (event_initialized(&wp->resize_timer))
930 		event_del(&wp->resize_timer);
931 	if (event_initialized(&wp->force_timer))
932 		event_del(&wp->force_timer);
933 
934 	RB_REMOVE(window_pane_tree, &all_window_panes, wp);
935 
936 	options_free(wp->options);
937 	free((void *)wp->cwd);
938 	free(wp->shell);
939 	cmd_free_argv(wp->argc, wp->argv);
940 	free(wp->palette);
941 	free(wp);
942 }
943 
944 static void
945 window_pane_read_callback(__unused struct bufferevent *bufev, void *data)
946 {
947 	struct window_pane		*wp = data;
948 	struct evbuffer			*evb = wp->event->input;
949 	struct window_pane_offset	*wpo = &wp->pipe_offset;
950 	size_t				 size = EVBUFFER_LENGTH(evb);
951 	char				*new_data;
952 	size_t				 new_size;
953 	struct client			*c;
954 
955 	if (wp->pipe_fd != -1) {
956 		new_data = window_pane_get_new_data(wp, wpo, &new_size);
957 		if (new_size > 0) {
958 			bufferevent_write(wp->pipe_event, new_data, new_size);
959 			window_pane_update_used_data(wp, wpo, new_size);
960 		}
961 	}
962 
963 	log_debug("%%%u has %zu bytes", wp->id, size);
964 	TAILQ_FOREACH(c, &clients, entry) {
965 		if (c->session != NULL && (c->flags & CLIENT_CONTROL))
966 			control_write_output(c, wp);
967 	}
968 	input_parse_pane(wp);
969 	bufferevent_disable(wp->event, EV_READ);
970 }
971 
972 static void
973 window_pane_error_callback(__unused struct bufferevent *bufev,
974     __unused short what, void *data)
975 {
976 	struct window_pane *wp = data;
977 
978 	log_debug("%%%u error", wp->id);
979 	wp->flags |= PANE_EXITED;
980 
981 	if (window_pane_destroy_ready(wp))
982 		server_destroy_pane(wp, 1);
983 }
984 
985 void
986 window_pane_set_event(struct window_pane *wp)
987 {
988 	setblocking(wp->fd, 0);
989 
990 	wp->event = bufferevent_new(wp->fd, window_pane_read_callback,
991 	    NULL, window_pane_error_callback, wp);
992 	wp->ictx = input_init(wp, wp->event);
993 
994 	bufferevent_enable(wp->event, EV_READ|EV_WRITE);
995 }
996 
997 void
998 window_pane_resize(struct window_pane *wp, u_int sx, u_int sy)
999 {
1000 	struct window_mode_entry	*wme;
1001 
1002 	if (sx == wp->sx && sy == wp->sy)
1003 		return;
1004 	wp->sx = sx;
1005 	wp->sy = sy;
1006 
1007 	log_debug("%s: %%%u resize %ux%u", __func__, wp->id, sx, sy);
1008 	screen_resize(&wp->base, sx, sy, wp->base.saved_grid == NULL);
1009 
1010 	wme = TAILQ_FIRST(&wp->modes);
1011 	if (wme != NULL && wme->mode->resize != NULL)
1012 		wme->mode->resize(wme, sx, sy);
1013 
1014 	/*
1015 	 * If the pane has already been resized, set the force flag and make
1016 	 * the application resize twice to force it to redraw.
1017 	 */
1018 	if (wp->flags & PANE_RESIZE)
1019 		wp->flags |= PANE_RESIZEFORCE;
1020 	wp->flags |= PANE_RESIZE;
1021 }
1022 
1023 void
1024 window_pane_set_palette(struct window_pane *wp, u_int n, int colour)
1025 {
1026 	if (n > 0xff)
1027 		return;
1028 
1029 	if (wp->palette == NULL)
1030 		wp->palette = xcalloc(0x100, sizeof *wp->palette);
1031 
1032 	wp->palette[n] = colour;
1033 	wp->flags |= PANE_REDRAW;
1034 }
1035 
1036 void
1037 window_pane_unset_palette(struct window_pane *wp, u_int n)
1038 {
1039 	if (n > 0xff || wp->palette == NULL)
1040 		return;
1041 
1042 	wp->palette[n] = 0;
1043 	wp->flags |= PANE_REDRAW;
1044 }
1045 
1046 void
1047 window_pane_reset_palette(struct window_pane *wp)
1048 {
1049 	if (wp->palette == NULL)
1050 		return;
1051 
1052 	free(wp->palette);
1053 	wp->palette = NULL;
1054 	wp->flags |= PANE_REDRAW;
1055 }
1056 
1057 int
1058 window_pane_get_palette(struct window_pane *wp, int c)
1059 {
1060 	int	new;
1061 
1062 	if (wp == NULL || wp->palette == NULL)
1063 		return (-1);
1064 
1065 	new = -1;
1066 	if (c < 8)
1067 		new = wp->palette[c];
1068 	else if (c >= 90 && c <= 97)
1069 		new = wp->palette[8 + c - 90];
1070 	else if (c & COLOUR_FLAG_256)
1071 		new = wp->palette[c & ~COLOUR_FLAG_256];
1072 	if (new == 0)
1073 		return (-1);
1074 	return (new);
1075 }
1076 
1077 int
1078 window_pane_set_mode(struct window_pane *wp, struct window_pane *swp,
1079     const struct window_mode *mode, struct cmd_find_state *fs,
1080     struct args *args)
1081 {
1082 	struct window_mode_entry	*wme;
1083 
1084 	if (!TAILQ_EMPTY(&wp->modes) && TAILQ_FIRST(&wp->modes)->mode == mode)
1085 		return (1);
1086 
1087 	TAILQ_FOREACH(wme, &wp->modes, entry) {
1088 		if (wme->mode == mode)
1089 			break;
1090 	}
1091 	if (wme != NULL) {
1092 		TAILQ_REMOVE(&wp->modes, wme, entry);
1093 		TAILQ_INSERT_HEAD(&wp->modes, wme, entry);
1094 	} else {
1095 		wme = xcalloc(1, sizeof *wme);
1096 		wme->wp = wp;
1097 		wme->swp = swp;
1098 		wme->mode = mode;
1099 		wme->prefix = 1;
1100 		TAILQ_INSERT_HEAD(&wp->modes, wme, entry);
1101 		wme->screen = wme->mode->init(wme, fs, args);
1102 	}
1103 
1104 	wp->screen = wme->screen;
1105 	wp->flags |= (PANE_REDRAW|PANE_CHANGED);
1106 
1107 	server_redraw_window_borders(wp->window);
1108 	server_status_window(wp->window);
1109 	notify_pane("pane-mode-changed", wp);
1110 
1111 	return (0);
1112 }
1113 
1114 void
1115 window_pane_reset_mode(struct window_pane *wp)
1116 {
1117 	struct window_mode_entry	*wme, *next;
1118 
1119 	if (TAILQ_EMPTY(&wp->modes))
1120 		return;
1121 
1122 	wme = TAILQ_FIRST(&wp->modes);
1123 	TAILQ_REMOVE(&wp->modes, wme, entry);
1124 	wme->mode->free(wme);
1125 	free(wme);
1126 
1127 	next = TAILQ_FIRST(&wp->modes);
1128 	if (next == NULL) {
1129 		log_debug("%s: no next mode", __func__);
1130 		wp->screen = &wp->base;
1131 	} else {
1132 		log_debug("%s: next mode is %s", __func__, next->mode->name);
1133 		wp->screen = next->screen;
1134 		if (next->mode->resize != NULL)
1135 			next->mode->resize(next, wp->sx, wp->sy);
1136 	}
1137 	wp->flags |= (PANE_REDRAW|PANE_CHANGED);
1138 
1139 	server_redraw_window_borders(wp->window);
1140 	server_status_window(wp->window);
1141 	notify_pane("pane-mode-changed", wp);
1142 }
1143 
1144 void
1145 window_pane_reset_mode_all(struct window_pane *wp)
1146 {
1147 	while (!TAILQ_EMPTY(&wp->modes))
1148 		window_pane_reset_mode(wp);
1149 }
1150 
1151 static void
1152 window_pane_copy_key(struct window_pane *wp, key_code key)
1153 {
1154  	struct window_pane	*loop;
1155 
1156 	TAILQ_FOREACH(loop, &wp->window->panes, entry) {
1157 		if (loop != wp &&
1158 		    TAILQ_EMPTY(&loop->modes) &&
1159 		    loop->fd != -1 &&
1160 		    (~loop->flags & PANE_INPUTOFF) &&
1161 		    window_pane_visible(loop) &&
1162 		    options_get_number(loop->options, "synchronize-panes"))
1163 			input_key_pane(loop, key, NULL);
1164 	}
1165 }
1166 
1167 int
1168 window_pane_key(struct window_pane *wp, struct client *c, struct session *s,
1169     struct winlink *wl, key_code key, struct mouse_event *m)
1170 {
1171 	struct window_mode_entry	*wme;
1172 
1173 	if (KEYC_IS_MOUSE(key) && m == NULL)
1174 		return (-1);
1175 
1176 	wme = TAILQ_FIRST(&wp->modes);
1177 	if (wme != NULL) {
1178 		if (wme->mode->key != NULL && c != NULL) {
1179 			key &= ~KEYC_MASK_FLAGS;
1180 			wme->mode->key(wme, c, s, wl, key, m);
1181 		}
1182 		return (0);
1183 	}
1184 
1185 	if (wp->fd == -1 || wp->flags & PANE_INPUTOFF)
1186 		return (0);
1187 
1188 	if (input_key_pane(wp, key, m) != 0)
1189 		return (-1);
1190 
1191 	if (KEYC_IS_MOUSE(key))
1192 		return (0);
1193 	if (options_get_number(wp->options, "synchronize-panes"))
1194 		window_pane_copy_key(wp, key);
1195 	return (0);
1196 }
1197 
1198 int
1199 window_pane_visible(struct window_pane *wp)
1200 {
1201 	if (~wp->window->flags & WINDOW_ZOOMED)
1202 		return (1);
1203 	return (wp == wp->window->active);
1204 }
1205 
1206 u_int
1207 window_pane_search(struct window_pane *wp, const char *term, int regex,
1208     int ignore)
1209 {
1210 	struct screen	*s = &wp->base;
1211 	regex_t		 r;
1212 	char		*new = NULL, *line;
1213 	u_int		 i;
1214 	int		 flags = 0, found;
1215 	size_t		 n;
1216 
1217 	if (!regex) {
1218 		if (ignore)
1219 			flags |= FNM_CASEFOLD;
1220 		xasprintf(&new, "*%s*", term);
1221 	} else {
1222 		if (ignore)
1223 			flags |= REG_ICASE;
1224 		if (regcomp(&r, term, flags|REG_EXTENDED) != 0)
1225 			return (0);
1226 	}
1227 
1228 	for (i = 0; i < screen_size_y(s); i++) {
1229 		line = grid_view_string_cells(s->grid, 0, i, screen_size_x(s));
1230 		for (n = strlen(line); n > 0; n--) {
1231 			if (!isspace((u_char)line[n - 1]))
1232 				break;
1233 			line[n - 1] = '\0';
1234 		}
1235 		log_debug("%s: %s", __func__, line);
1236 		if (!regex)
1237 			found = (fnmatch(new, line, flags) == 0);
1238 		else
1239 			found = (regexec(&r, line, 0, NULL, 0) == 0);
1240 		free(line);
1241 		if (found)
1242 			break;
1243 	}
1244 	if (!regex)
1245 		free(new);
1246 	else
1247 		regfree(&r);
1248 
1249 	if (i == screen_size_y(s))
1250 		return (0);
1251 	return (i + 1);
1252 }
1253 
1254 /* Get MRU pane from a list. */
1255 static struct window_pane *
1256 window_pane_choose_best(struct window_pane **list, u_int size)
1257 {
1258 	struct window_pane	*next, *best;
1259 	u_int			 i;
1260 
1261 	if (size == 0)
1262 		return (NULL);
1263 
1264 	best = list[0];
1265 	for (i = 1; i < size; i++) {
1266 		next = list[i];
1267 		if (next->active_point > best->active_point)
1268 			best = next;
1269 	}
1270 	return (best);
1271 }
1272 
1273 /*
1274  * Find the pane directly above another. We build a list of those adjacent to
1275  * top edge and then choose the best.
1276  */
1277 struct window_pane *
1278 window_pane_find_up(struct window_pane *wp)
1279 {
1280 	struct window		*w;
1281 	struct window_pane	*next, *best, **list;
1282 	u_int			 edge, left, right, end, size;
1283 	int			 status, found;
1284 
1285 	if (wp == NULL)
1286 		return (NULL);
1287 	w = wp->window;
1288 	status = options_get_number(w->options, "pane-border-status");
1289 
1290 	list = NULL;
1291 	size = 0;
1292 
1293 	edge = wp->yoff;
1294 	if (status == PANE_STATUS_TOP) {
1295 		if (edge == 1)
1296 			edge = w->sy + 1;
1297 	} else if (status == PANE_STATUS_BOTTOM) {
1298 		if (edge == 0)
1299 			edge = w->sy;
1300 	} else {
1301 		if (edge == 0)
1302 			edge = w->sy + 1;
1303 	}
1304 
1305 	left = wp->xoff;
1306 	right = wp->xoff + wp->sx;
1307 
1308 	TAILQ_FOREACH(next, &w->panes, entry) {
1309 		if (next == wp)
1310 			continue;
1311 		if (next->yoff + next->sy + 1 != edge)
1312 			continue;
1313 		end = next->xoff + next->sx - 1;
1314 
1315 		found = 0;
1316 		if (next->xoff < left && end > right)
1317 			found = 1;
1318 		else if (next->xoff >= left && next->xoff <= right)
1319 			found = 1;
1320 		else if (end >= left && end <= right)
1321 			found = 1;
1322 		if (!found)
1323 			continue;
1324 		list = xreallocarray(list, size + 1, sizeof *list);
1325 		list[size++] = next;
1326 	}
1327 
1328 	best = window_pane_choose_best(list, size);
1329 	free(list);
1330 	return (best);
1331 }
1332 
1333 /* Find the pane directly below another. */
1334 struct window_pane *
1335 window_pane_find_down(struct window_pane *wp)
1336 {
1337 	struct window		*w;
1338 	struct window_pane	*next, *best, **list;
1339 	u_int			 edge, left, right, end, size;
1340 	int			 status, found;
1341 
1342 	if (wp == NULL)
1343 		return (NULL);
1344 	w = wp->window;
1345 	status = options_get_number(w->options, "pane-border-status");
1346 
1347 	list = NULL;
1348 	size = 0;
1349 
1350 	edge = wp->yoff + wp->sy + 1;
1351 	if (status == PANE_STATUS_TOP) {
1352 		if (edge >= w->sy)
1353 			edge = 1;
1354 	} else if (status == PANE_STATUS_BOTTOM) {
1355 		if (edge >= w->sy - 1)
1356 			edge = 0;
1357 	} else {
1358 		if (edge >= w->sy)
1359 			edge = 0;
1360 	}
1361 
1362 	left = wp->xoff;
1363 	right = wp->xoff + wp->sx;
1364 
1365 	TAILQ_FOREACH(next, &w->panes, entry) {
1366 		if (next == wp)
1367 			continue;
1368 		if (next->yoff != edge)
1369 			continue;
1370 		end = next->xoff + next->sx - 1;
1371 
1372 		found = 0;
1373 		if (next->xoff < left && end > right)
1374 			found = 1;
1375 		else if (next->xoff >= left && next->xoff <= right)
1376 			found = 1;
1377 		else if (end >= left && end <= right)
1378 			found = 1;
1379 		if (!found)
1380 			continue;
1381 		list = xreallocarray(list, size + 1, sizeof *list);
1382 		list[size++] = next;
1383 	}
1384 
1385 	best = window_pane_choose_best(list, size);
1386 	free(list);
1387 	return (best);
1388 }
1389 
1390 /* Find the pane directly to the left of another. */
1391 struct window_pane *
1392 window_pane_find_left(struct window_pane *wp)
1393 {
1394 	struct window		*w;
1395 	struct window_pane	*next, *best, **list;
1396 	u_int			 edge, top, bottom, end, size;
1397 	int			 found;
1398 
1399 	if (wp == NULL)
1400 		return (NULL);
1401 	w = wp->window;
1402 
1403 	list = NULL;
1404 	size = 0;
1405 
1406 	edge = wp->xoff;
1407 	if (edge == 0)
1408 		edge = w->sx + 1;
1409 
1410 	top = wp->yoff;
1411 	bottom = wp->yoff + wp->sy;
1412 
1413 	TAILQ_FOREACH(next, &w->panes, entry) {
1414 		if (next == wp)
1415 			continue;
1416 		if (next->xoff + next->sx + 1 != edge)
1417 			continue;
1418 		end = next->yoff + next->sy - 1;
1419 
1420 		found = 0;
1421 		if (next->yoff < top && end > bottom)
1422 			found = 1;
1423 		else if (next->yoff >= top && next->yoff <= bottom)
1424 			found = 1;
1425 		else if (end >= top && end <= bottom)
1426 			found = 1;
1427 		if (!found)
1428 			continue;
1429 		list = xreallocarray(list, size + 1, sizeof *list);
1430 		list[size++] = next;
1431 	}
1432 
1433 	best = window_pane_choose_best(list, size);
1434 	free(list);
1435 	return (best);
1436 }
1437 
1438 /* Find the pane directly to the right of another. */
1439 struct window_pane *
1440 window_pane_find_right(struct window_pane *wp)
1441 {
1442 	struct window		*w;
1443 	struct window_pane	*next, *best, **list;
1444 	u_int			 edge, top, bottom, end, size;
1445 	int			 found;
1446 
1447 	if (wp == NULL)
1448 		return (NULL);
1449 	w = wp->window;
1450 
1451 	list = NULL;
1452 	size = 0;
1453 
1454 	edge = wp->xoff + wp->sx + 1;
1455 	if (edge >= w->sx)
1456 		edge = 0;
1457 
1458 	top = wp->yoff;
1459 	bottom = wp->yoff + wp->sy;
1460 
1461 	TAILQ_FOREACH(next, &w->panes, entry) {
1462 		if (next == wp)
1463 			continue;
1464 		if (next->xoff != edge)
1465 			continue;
1466 		end = next->yoff + next->sy - 1;
1467 
1468 		found = 0;
1469 		if (next->yoff < top && end > bottom)
1470 			found = 1;
1471 		else if (next->yoff >= top && next->yoff <= bottom)
1472 			found = 1;
1473 		else if (end >= top && end <= bottom)
1474 			found = 1;
1475 		if (!found)
1476 			continue;
1477 		list = xreallocarray(list, size + 1, sizeof *list);
1478 		list[size++] = next;
1479 	}
1480 
1481 	best = window_pane_choose_best(list, size);
1482 	free(list);
1483 	return (best);
1484 }
1485 
1486 /* Clear alert flags for a winlink */
1487 void
1488 winlink_clear_flags(struct winlink *wl)
1489 {
1490 	struct winlink	*loop;
1491 
1492 	wl->window->flags &= ~WINDOW_ALERTFLAGS;
1493 	TAILQ_FOREACH(loop, &wl->window->winlinks, wentry) {
1494 		if ((loop->flags & WINLINK_ALERTFLAGS) != 0) {
1495 			loop->flags &= ~WINLINK_ALERTFLAGS;
1496 			server_status_session(loop->session);
1497 		}
1498 	}
1499 }
1500 
1501 /* Shuffle window indexes up. */
1502 int
1503 winlink_shuffle_up(struct session *s, struct winlink *wl, int before)
1504 {
1505 	int	 idx, last;
1506 
1507 	if (wl == NULL)
1508 		return (-1);
1509 	if (before)
1510 		idx = wl->idx;
1511 	else
1512 		idx = wl->idx + 1;
1513 
1514 	/* Find the next free index. */
1515 	for (last = idx; last < INT_MAX; last++) {
1516 		if (winlink_find_by_index(&s->windows, last) == NULL)
1517 			break;
1518 	}
1519 	if (last == INT_MAX)
1520 		return (-1);
1521 
1522 	/* Move everything from last - 1 to idx up a bit. */
1523 	for (; last > idx; last--) {
1524 		wl = winlink_find_by_index(&s->windows, last - 1);
1525 		RB_REMOVE(winlinks, &s->windows, wl);
1526 		wl->idx++;
1527 		RB_INSERT(winlinks, &s->windows, wl);
1528 	}
1529 
1530 	return (idx);
1531 }
1532 
1533 static void
1534 window_pane_input_callback(struct client *c, __unused const char *path,
1535     int error, int closed, struct evbuffer *buffer, void *data)
1536 {
1537 	struct window_pane_input_data	*cdata = data;
1538 	struct window_pane		*wp;
1539 	u_char				*buf = EVBUFFER_DATA(buffer);
1540 	size_t				 len = EVBUFFER_LENGTH(buffer);
1541 
1542 	wp = window_pane_find_by_id(cdata->wp);
1543 	if (wp == NULL || closed || error != 0 || c->flags & CLIENT_DEAD) {
1544 		if (wp == NULL)
1545 			c->flags |= CLIENT_EXIT;
1546 
1547 		evbuffer_drain(buffer, len);
1548 		cmdq_continue(cdata->item);
1549 
1550 		server_client_unref(c);
1551 		free(cdata);
1552 		return;
1553 	}
1554 	input_parse_buffer(wp, buf, len);
1555 	evbuffer_drain(buffer, len);
1556 }
1557 
1558 int
1559 window_pane_start_input(struct window_pane *wp, struct cmdq_item *item,
1560     char **cause)
1561 {
1562 	struct client			*c = cmdq_get_client(item);
1563 	struct window_pane_input_data	*cdata;
1564 
1565 	if (~wp->flags & PANE_EMPTY) {
1566 		*cause = xstrdup("pane is not empty");
1567 		return (-1);
1568 	}
1569 
1570 	cdata = xmalloc(sizeof *cdata);
1571 	cdata->item = item;
1572 	cdata->wp = wp->id;
1573 
1574 	c->references++;
1575 	file_read(c, "-", window_pane_input_callback, cdata);
1576 
1577 	return (0);
1578 }
1579 
1580 void *
1581 window_pane_get_new_data(struct window_pane *wp,
1582     struct window_pane_offset *wpo, size_t *size)
1583 {
1584 	size_t	used = wpo->used - wp->base_offset;
1585 
1586 	*size = EVBUFFER_LENGTH(wp->event->input) - used;
1587 	return (EVBUFFER_DATA(wp->event->input) + used);
1588 }
1589 
1590 void
1591 window_pane_update_used_data(struct window_pane *wp,
1592     struct window_pane_offset *wpo, size_t size)
1593 {
1594 	size_t	used = wpo->used - wp->base_offset;
1595 
1596 	if (size > EVBUFFER_LENGTH(wp->event->input) - used)
1597 		size = EVBUFFER_LENGTH(wp->event->input) - used;
1598 	wpo->used += size;
1599 }
1600