2009-10-22 19:41:51 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
|
2009-10-22 19:41:51 +00:00
|
|
|
*
|
|
|
|
* 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>
|
2013-03-24 09:28:59 +00:00
|
|
|
#include <sys/ioctl.h>
|
2015-10-27 13:23:24 +00:00
|
|
|
#include <sys/uio.h>
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2013-11-13 20:43:36 +00:00
|
|
|
#include <errno.h>
|
2009-11-04 20:50:11 +00:00
|
|
|
#include <event.h>
|
2009-10-22 19:41:51 +00:00
|
|
|
#include <fcntl.h>
|
2015-10-27 13:23:24 +00:00
|
|
|
#include <imsg.h>
|
2009-10-22 19:41:51 +00:00
|
|
|
#include <paths.h>
|
2012-07-10 11:53:01 +00:00
|
|
|
#include <stdlib.h>
|
2013-03-25 11:53:54 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
2009-10-22 19:41:51 +00:00
|
|
|
#include <unistd.h>
|
2023-02-05 21:15:32 +00:00
|
|
|
#include <vis.h>
|
2009-10-22 19:41:51 +00:00
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
2016-10-10 21:29:23 +00:00
|
|
|
static void server_client_free(int, short, void *);
|
2020-05-16 16:50:55 +00:00
|
|
|
static void server_client_check_pane_resize(struct window_pane *);
|
2020-05-21 07:24:13 +00:00
|
|
|
static void server_client_check_pane_buffer(struct window_pane *);
|
2020-05-16 16:50:55 +00:00
|
|
|
static void server_client_check_window_resize(struct window *);
|
2019-05-03 14:51:30 +00:00
|
|
|
static key_code server_client_check_mouse(struct client *, struct key_event *);
|
2016-10-10 21:29:23 +00:00
|
|
|
static void server_client_repeat_timer(int, short, void *);
|
2016-10-11 09:30:36 +00:00
|
|
|
static void server_client_click_timer(int, short, void *);
|
2016-10-10 21:29:23 +00:00
|
|
|
static void server_client_check_exit(struct client *);
|
|
|
|
static void server_client_check_redraw(struct client *);
|
2020-12-03 07:12:11 +00:00
|
|
|
static void server_client_check_modes(struct client *);
|
2016-10-10 21:29:23 +00:00
|
|
|
static void server_client_set_title(struct client *);
|
2022-03-24 09:05:57 +00:00
|
|
|
static void server_client_set_path(struct client *);
|
2016-10-10 21:29:23 +00:00
|
|
|
static void server_client_reset_state(struct client *);
|
2023-01-12 18:49:11 +00:00
|
|
|
static int server_client_is_bracket_pasting(struct client *, key_code);
|
2016-10-10 21:29:23 +00:00
|
|
|
static int server_client_assume_paste(struct session *);
|
2021-06-10 07:21:46 +00:00
|
|
|
static void server_client_update_latest(struct client *);
|
2016-10-10 21:29:23 +00:00
|
|
|
|
|
|
|
static void server_client_dispatch(struct imsg *, void *);
|
|
|
|
static void server_client_dispatch_command(struct client *, struct imsg *);
|
|
|
|
static void server_client_dispatch_identify(struct client *, struct imsg *);
|
|
|
|
static void server_client_dispatch_shell(struct client *);
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2020-05-16 16:20:59 +00:00
|
|
|
/* Compare client windows. */
|
|
|
|
static int
|
|
|
|
server_client_window_cmp(struct client_window *cw1,
|
|
|
|
struct client_window *cw2)
|
|
|
|
{
|
|
|
|
if (cw1->window < cw2->window)
|
|
|
|
return (-1);
|
|
|
|
if (cw1->window > cw2->window)
|
|
|
|
return (1);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
RB_GENERATE(client_windows, client_window, entry, server_client_window_cmp);
|
|
|
|
|
2017-05-29 20:37:30 +00:00
|
|
|
/* Number of attached clients. */
|
|
|
|
u_int
|
|
|
|
server_client_how_many(void)
|
|
|
|
{
|
|
|
|
struct client *c;
|
|
|
|
u_int n;
|
|
|
|
|
|
|
|
n = 0;
|
|
|
|
TAILQ_FOREACH(c, &clients, entry) {
|
2020-06-01 09:43:00 +00:00
|
|
|
if (c->session != NULL && (~c->flags & CLIENT_UNATTACHEDFLAGS))
|
2017-05-29 20:37:30 +00:00
|
|
|
n++;
|
|
|
|
}
|
|
|
|
return (n);
|
|
|
|
}
|
|
|
|
|
2019-05-07 20:01:41 +00:00
|
|
|
/* Overlay timer callback. */
|
2017-03-09 17:06:35 +00:00
|
|
|
static void
|
2019-05-07 20:01:41 +00:00
|
|
|
server_client_overlay_timer(__unused int fd, __unused short events, void *data)
|
2017-03-09 17:06:35 +00:00
|
|
|
{
|
2019-05-07 20:01:41 +00:00
|
|
|
server_client_clear_overlay(data);
|
2017-03-09 17:06:35 +00:00
|
|
|
}
|
|
|
|
|
2019-05-07 20:01:41 +00:00
|
|
|
/* Set an overlay on client. */
|
2017-03-09 17:06:35 +00:00
|
|
|
void
|
2020-03-24 08:09:43 +00:00
|
|
|
server_client_set_overlay(struct client *c, u_int delay,
|
|
|
|
overlay_check_cb checkcb, overlay_mode_cb modecb,
|
|
|
|
overlay_draw_cb drawcb, overlay_key_cb keycb, overlay_free_cb freecb,
|
2021-07-21 08:06:36 +00:00
|
|
|
overlay_resize_cb resizecb, void *data)
|
2017-03-09 17:06:35 +00:00
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
|
2019-05-08 18:07:12 +00:00
|
|
|
if (c->overlay_draw != NULL)
|
|
|
|
server_client_clear_overlay(c);
|
|
|
|
|
2017-03-09 17:06:35 +00:00
|
|
|
tv.tv_sec = delay / 1000;
|
|
|
|
tv.tv_usec = (delay % 1000) * 1000L;
|
|
|
|
|
2019-05-07 20:01:41 +00:00
|
|
|
if (event_initialized(&c->overlay_timer))
|
|
|
|
evtimer_del(&c->overlay_timer);
|
|
|
|
evtimer_set(&c->overlay_timer, server_client_overlay_timer, c);
|
2017-08-16 12:12:54 +00:00
|
|
|
if (delay != 0)
|
2019-05-07 20:01:41 +00:00
|
|
|
evtimer_add(&c->overlay_timer, &tv);
|
|
|
|
|
2020-03-24 08:09:43 +00:00
|
|
|
c->overlay_check = checkcb;
|
|
|
|
c->overlay_mode = modecb;
|
2019-05-07 20:01:41 +00:00
|
|
|
c->overlay_draw = drawcb;
|
|
|
|
c->overlay_key = keycb;
|
|
|
|
c->overlay_free = freecb;
|
2021-07-21 08:06:36 +00:00
|
|
|
c->overlay_resize = resizecb;
|
2019-05-07 20:01:41 +00:00
|
|
|
c->overlay_data = data;
|
2017-03-09 17:06:35 +00:00
|
|
|
|
2021-08-05 09:43:51 +00:00
|
|
|
if (c->overlay_check == NULL)
|
|
|
|
c->tty.flags |= TTY_FREEZE;
|
2020-03-24 08:09:43 +00:00
|
|
|
if (c->overlay_mode == NULL)
|
|
|
|
c->tty.flags |= TTY_NOCURSOR;
|
2017-03-09 17:06:35 +00:00
|
|
|
server_redraw_client(c);
|
|
|
|
}
|
|
|
|
|
2019-05-07 20:01:41 +00:00
|
|
|
/* Clear overlay mode on client. */
|
2020-03-24 08:09:43 +00:00
|
|
|
void
|
2019-05-07 20:01:41 +00:00
|
|
|
server_client_clear_overlay(struct client *c)
|
2017-03-09 17:06:35 +00:00
|
|
|
{
|
2019-05-07 20:01:41 +00:00
|
|
|
if (c->overlay_draw == NULL)
|
2017-03-09 17:06:35 +00:00
|
|
|
return;
|
|
|
|
|
2019-05-07 20:01:41 +00:00
|
|
|
if (event_initialized(&c->overlay_timer))
|
|
|
|
evtimer_del(&c->overlay_timer);
|
|
|
|
|
|
|
|
if (c->overlay_free != NULL)
|
2021-08-13 18:54:54 +00:00
|
|
|
c->overlay_free(c, c->overlay_data);
|
2019-05-07 20:01:41 +00:00
|
|
|
|
2020-03-24 08:09:43 +00:00
|
|
|
c->overlay_check = NULL;
|
|
|
|
c->overlay_mode = NULL;
|
2019-05-07 20:01:41 +00:00
|
|
|
c->overlay_draw = NULL;
|
|
|
|
c->overlay_key = NULL;
|
2020-03-24 08:09:43 +00:00
|
|
|
c->overlay_free = NULL;
|
|
|
|
c->overlay_data = NULL;
|
2017-03-09 17:06:35 +00:00
|
|
|
|
|
|
|
c->tty.flags &= ~(TTY_FREEZE|TTY_NOCURSOR);
|
|
|
|
server_redraw_client(c);
|
|
|
|
}
|
|
|
|
|
2021-10-11 13:27:50 +00:00
|
|
|
/*
|
|
|
|
* Given overlay position and dimensions, return parts of the input range which
|
|
|
|
* are visible.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
server_client_overlay_range(u_int x, u_int y, u_int sx, u_int sy, u_int px,
|
|
|
|
u_int py, u_int nx, struct overlay_ranges *r)
|
|
|
|
{
|
|
|
|
u_int ox, onx;
|
|
|
|
|
|
|
|
/* Return up to 2 ranges. */
|
|
|
|
r->px[2] = 0;
|
|
|
|
r->nx[2] = 0;
|
|
|
|
|
|
|
|
/* Trivial case of no overlap in the y direction. */
|
|
|
|
if (py < y || py > y + sy - 1) {
|
|
|
|
r->px[0] = px;
|
|
|
|
r->nx[0] = nx;
|
|
|
|
r->px[1] = 0;
|
|
|
|
r->nx[1] = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Visible bit to the left of the popup. */
|
|
|
|
if (px < x) {
|
|
|
|
r->px[0] = px;
|
|
|
|
r->nx[0] = x - px;
|
|
|
|
if (r->nx[0] > nx)
|
|
|
|
r->nx[0] = nx;
|
|
|
|
} else {
|
|
|
|
r->px[0] = 0;
|
|
|
|
r->nx[0] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Visible bit to the right of the popup. */
|
|
|
|
ox = x + sx;
|
|
|
|
if (px > ox)
|
|
|
|
ox = px;
|
|
|
|
onx = px + nx;
|
|
|
|
if (onx > ox) {
|
|
|
|
r->px[1] = ox;
|
|
|
|
r->nx[1] = onx - ox;
|
|
|
|
} else {
|
|
|
|
r->px[1] = 0;
|
|
|
|
r->nx[1] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-04 23:27:51 +00:00
|
|
|
/* Check if this client is inside this server. */
|
|
|
|
int
|
|
|
|
server_client_check_nested(struct client *c)
|
|
|
|
{
|
|
|
|
struct environ_entry *envent;
|
|
|
|
struct window_pane *wp;
|
|
|
|
|
2015-10-28 09:51:55 +00:00
|
|
|
envent = environ_find(c->environ, "TMUX");
|
2015-06-04 23:27:51 +00:00
|
|
|
if (envent == NULL || *envent->value == '\0')
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
RB_FOREACH(wp, window_pane_tree, &all_window_panes) {
|
2017-04-05 10:49:46 +00:00
|
|
|
if (strcmp(wp->tty, c->ttyname) == 0)
|
2015-06-04 23:27:51 +00:00
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2015-04-20 15:34:56 +00:00
|
|
|
/* Set client key table. */
|
|
|
|
void
|
2015-12-12 18:32:24 +00:00
|
|
|
server_client_set_key_table(struct client *c, const char *name)
|
2015-04-20 15:34:56 +00:00
|
|
|
{
|
2015-12-12 18:32:24 +00:00
|
|
|
if (name == NULL)
|
|
|
|
name = server_client_get_key_table(c);
|
|
|
|
|
2015-04-20 15:34:56 +00:00
|
|
|
key_bindings_unref_table(c->keytable);
|
|
|
|
c->keytable = key_bindings_get_table(name, 1);
|
|
|
|
c->keytable->references++;
|
|
|
|
}
|
|
|
|
|
2015-12-12 18:32:24 +00:00
|
|
|
/* Get default key table. */
|
|
|
|
const char *
|
|
|
|
server_client_get_key_table(struct client *c)
|
|
|
|
{
|
|
|
|
struct session *s = c->session;
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
if (s == NULL)
|
|
|
|
return ("root");
|
|
|
|
|
|
|
|
name = options_get_string(s->options, "key-table");
|
|
|
|
if (*name == '\0')
|
|
|
|
return ("root");
|
|
|
|
return (name);
|
|
|
|
}
|
|
|
|
|
2017-04-21 16:04:18 +00:00
|
|
|
/* Is this table the default key table? */
|
|
|
|
static int
|
|
|
|
server_client_is_default_key_table(struct client *c, struct key_table *table)
|
2016-10-11 07:23:34 +00:00
|
|
|
{
|
2017-04-21 16:04:18 +00:00
|
|
|
return (strcmp(table->name, server_client_get_key_table(c)) == 0);
|
2016-10-11 07:23:34 +00:00
|
|
|
}
|
|
|
|
|
2009-10-22 19:41:51 +00:00
|
|
|
/* Create a new client. */
|
2017-12-19 15:00:39 +00:00
|
|
|
struct client *
|
2009-10-22 19:41:51 +00:00
|
|
|
server_client_create(int fd)
|
|
|
|
{
|
|
|
|
struct client *c;
|
|
|
|
|
2011-01-08 01:52:36 +00:00
|
|
|
setblocking(fd, 0);
|
2009-10-22 19:41:51 +00:00
|
|
|
|
|
|
|
c = xcalloc(1, sizeof *c);
|
2015-06-05 18:01:12 +00:00
|
|
|
c->references = 1;
|
2015-10-27 13:23:24 +00:00
|
|
|
c->peer = proc_add_peer(server_proc, fd, server_client_dispatch, c);
|
2009-12-03 22:50:09 +00:00
|
|
|
|
2009-11-03 20:29:47 +00:00
|
|
|
if (gettimeofday(&c->creation_time, NULL) != 0)
|
2009-10-22 19:41:51 +00:00
|
|
|
fatal("gettimeofday failed");
|
2009-11-03 22:40:40 +00:00
|
|
|
memcpy(&c->activity_time, &c->creation_time, sizeof c->activity_time);
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2015-10-28 09:51:55 +00:00
|
|
|
c->environ = environ_create();
|
2013-10-10 12:29:35 +00:00
|
|
|
|
2015-07-17 06:53:47 +00:00
|
|
|
c->fd = -1;
|
2020-05-26 08:41:47 +00:00
|
|
|
c->out_fd = -1;
|
2015-07-13 15:51:31 +00:00
|
|
|
|
2020-04-13 10:59:58 +00:00
|
|
|
c->queue = cmdq_new();
|
2020-05-16 16:20:59 +00:00
|
|
|
RB_INIT(&c->windows);
|
2020-05-21 07:24:13 +00:00
|
|
|
RB_INIT(&c->files);
|
2013-03-24 09:54:10 +00:00
|
|
|
|
2009-10-22 19:41:51 +00:00
|
|
|
c->tty.sx = 80;
|
|
|
|
c->tty.sy = 24;
|
|
|
|
|
2019-03-16 17:14:07 +00:00
|
|
|
status_init(c);
|
2013-03-24 09:28:59 +00:00
|
|
|
c->flags |= CLIENT_FOCUSED;
|
|
|
|
|
2015-04-20 15:34:56 +00:00
|
|
|
c->keytable = key_bindings_get_table("root", 1);
|
|
|
|
c->keytable->references++;
|
|
|
|
|
2009-11-05 00:05:00 +00:00
|
|
|
evtimer_set(&c->repeat_timer, server_client_repeat_timer, c);
|
2016-10-11 09:30:36 +00:00
|
|
|
evtimer_set(&c->click_timer, server_client_click_timer, c);
|
2009-11-05 00:05:00 +00:00
|
|
|
|
2015-04-24 23:17:11 +00:00
|
|
|
TAILQ_INSERT_TAIL(&clients, c, entry);
|
2015-10-20 21:12:08 +00:00
|
|
|
log_debug("new client %p", c);
|
2017-12-19 15:00:39 +00:00
|
|
|
return (c);
|
2009-10-22 19:41:51 +00:00
|
|
|
}
|
|
|
|
|
2012-05-06 07:38:17 +00:00
|
|
|
/* Open client terminal if needed. */
|
|
|
|
int
|
2014-02-23 00:53:06 +00:00
|
|
|
server_client_open(struct client *c, char **cause)
|
2012-05-06 07:38:17 +00:00
|
|
|
{
|
2020-05-16 16:07:55 +00:00
|
|
|
const char *ttynam = _PATH_TTY;
|
|
|
|
|
2012-06-18 13:16:42 +00:00
|
|
|
if (c->flags & CLIENT_CONTROL)
|
|
|
|
return (0);
|
|
|
|
|
2020-05-16 16:07:55 +00:00
|
|
|
if (strcmp(c->ttyname, ttynam) == 0||
|
|
|
|
((isatty(STDIN_FILENO) &&
|
|
|
|
(ttynam = ttyname(STDIN_FILENO)) != NULL &&
|
|
|
|
strcmp(c->ttyname, ttynam) == 0) ||
|
|
|
|
(isatty(STDOUT_FILENO) &&
|
|
|
|
(ttynam = ttyname(STDOUT_FILENO)) != NULL &&
|
|
|
|
strcmp(c->ttyname, ttynam) == 0) ||
|
|
|
|
(isatty(STDERR_FILENO) &&
|
|
|
|
(ttynam = ttyname(STDERR_FILENO)) != NULL &&
|
|
|
|
strcmp(c->ttyname, ttynam) == 0))) {
|
|
|
|
xasprintf(cause, "can't use %s", c->ttyname);
|
2014-04-16 08:02:31 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
2012-05-06 07:38:17 +00:00
|
|
|
if (!(c->flags & CLIENT_TERMINAL)) {
|
2014-02-14 13:59:01 +00:00
|
|
|
*cause = xstrdup("not a terminal");
|
2012-05-06 07:38:17 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
2014-02-23 00:53:06 +00:00
|
|
|
if (tty_open(&c->tty, cause) != 0)
|
2012-05-06 07:38:17 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2021-06-10 07:21:46 +00:00
|
|
|
/* Lost an attached client. */
|
|
|
|
static void
|
|
|
|
server_client_attached_lost(struct client *c)
|
|
|
|
{
|
2021-08-22 13:48:29 +00:00
|
|
|
struct session *s;
|
2021-06-10 07:21:46 +00:00
|
|
|
struct window *w;
|
|
|
|
struct client *loop;
|
|
|
|
struct client *found;
|
|
|
|
|
|
|
|
log_debug("lost attached client %p", c);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* By this point the session in the client has been cleared so walk all
|
|
|
|
* windows to find any with this client as the latest.
|
|
|
|
*/
|
|
|
|
RB_FOREACH(w, windows, &windows) {
|
|
|
|
if (w->latest != c)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
found = NULL;
|
|
|
|
TAILQ_FOREACH(loop, &clients, entry) {
|
|
|
|
s = loop->session;
|
|
|
|
if (loop == c || s == NULL || s->curw->window != w)
|
|
|
|
continue;
|
2021-08-13 06:52:51 +00:00
|
|
|
if (found == NULL || timercmp(&loop->activity_time,
|
|
|
|
&found->activity_time, >))
|
2021-06-10 07:21:46 +00:00
|
|
|
found = loop;
|
|
|
|
}
|
|
|
|
if (found != NULL)
|
|
|
|
server_client_update_latest(found);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-13 06:52:51 +00:00
|
|
|
/* Set client session. */
|
|
|
|
void
|
|
|
|
server_client_set_session(struct client *c, struct session *s)
|
|
|
|
{
|
|
|
|
struct session *old = c->session;
|
|
|
|
|
|
|
|
if (s != NULL && c->session != NULL && c->session != s)
|
|
|
|
c->last_session = c->session;
|
|
|
|
else if (s == NULL)
|
|
|
|
c->last_session = NULL;
|
|
|
|
c->session = s;
|
|
|
|
c->flags |= CLIENT_FOCUSED;
|
|
|
|
|
|
|
|
if (old != NULL && old->curw != NULL)
|
|
|
|
window_update_focus(old->curw->window);
|
|
|
|
if (s != NULL) {
|
2021-09-27 19:12:00 +00:00
|
|
|
recalculate_sizes();
|
2021-08-13 06:52:51 +00:00
|
|
|
window_update_focus(s->curw->window);
|
|
|
|
session_update_activity(s, NULL);
|
|
|
|
gettimeofday(&s->last_attached_time, NULL);
|
|
|
|
s->curw->flags &= ~WINLINK_ALERTFLAGS;
|
|
|
|
s->curw->window->latest = c;
|
|
|
|
alerts_check_session(s);
|
|
|
|
tty_update_client_offset(c);
|
|
|
|
status_timer_start(c);
|
|
|
|
notify_client("client-session-changed", c);
|
|
|
|
server_redraw_client(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
server_check_unattached();
|
|
|
|
server_update_socket();
|
|
|
|
}
|
|
|
|
|
2009-10-22 19:41:51 +00:00
|
|
|
/* Lost a client. */
|
|
|
|
void
|
|
|
|
server_client_lost(struct client *c)
|
|
|
|
{
|
2020-05-16 16:16:07 +00:00
|
|
|
struct client_file *cf, *cf1;
|
2020-05-16 16:20:59 +00:00
|
|
|
struct client_window *cw, *cw1;
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2015-06-05 18:01:12 +00:00
|
|
|
c->flags |= CLIENT_DEAD;
|
|
|
|
|
2019-05-07 20:01:41 +00:00
|
|
|
server_client_clear_overlay(c);
|
2015-06-05 18:01:12 +00:00
|
|
|
status_prompt_clear(c);
|
|
|
|
status_message_clear(c);
|
|
|
|
|
2020-05-16 16:16:07 +00:00
|
|
|
RB_FOREACH_SAFE(cf, client_files, &c->files, cf1) {
|
2019-12-12 11:39:56 +00:00
|
|
|
cf->error = EINTR;
|
|
|
|
file_fire_done(cf);
|
|
|
|
}
|
2020-05-16 16:20:59 +00:00
|
|
|
RB_FOREACH_SAFE(cw, client_windows, &c->windows, cw1) {
|
|
|
|
RB_REMOVE(client_windows, &c->windows, cw);
|
|
|
|
free(cw);
|
|
|
|
}
|
2015-06-05 18:01:12 +00:00
|
|
|
|
2015-04-24 23:17:11 +00:00
|
|
|
TAILQ_REMOVE(&clients, c, entry);
|
2015-10-20 21:12:08 +00:00
|
|
|
log_debug("lost client %p", c);
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2021-06-10 07:21:46 +00:00
|
|
|
if (c->flags & CLIENT_ATTACHED) {
|
|
|
|
server_client_attached_lost(c);
|
2021-04-05 14:11:05 +00:00
|
|
|
notify_client("client-detached", c);
|
2021-06-10 07:21:46 +00:00
|
|
|
}
|
2021-04-05 14:11:05 +00:00
|
|
|
|
2020-05-24 09:40:17 +00:00
|
|
|
if (c->flags & CLIENT_CONTROL)
|
|
|
|
control_stop(c);
|
2009-10-22 19:41:51 +00:00
|
|
|
if (c->flags & CLIENT_TERMINAL)
|
|
|
|
tty_free(&c->tty);
|
2013-10-10 12:26:34 +00:00
|
|
|
free(c->ttyname);
|
2022-03-08 12:01:19 +00:00
|
|
|
free(c->clipboard_panes);
|
2020-05-16 14:42:06 +00:00
|
|
|
|
2020-04-20 13:25:36 +00:00
|
|
|
free(c->term_name);
|
2020-05-16 14:42:06 +00:00
|
|
|
free(c->term_type);
|
2021-02-17 07:18:36 +00:00
|
|
|
tty_term_free_list(c->term_caps, c->term_ncaps);
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2019-03-15 14:46:58 +00:00
|
|
|
status_free(c);
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2012-07-10 11:53:01 +00:00
|
|
|
free(c->title);
|
2015-10-31 08:13:58 +00:00
|
|
|
free((void *)c->cwd);
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2009-11-05 00:05:00 +00:00
|
|
|
evtimer_del(&c->repeat_timer);
|
2016-10-11 09:30:36 +00:00
|
|
|
evtimer_del(&c->click_timer);
|
2009-11-05 00:05:00 +00:00
|
|
|
|
2015-04-20 15:34:56 +00:00
|
|
|
key_bindings_unref_table(c->keytable);
|
|
|
|
|
2012-07-10 11:53:01 +00:00
|
|
|
free(c->message_string);
|
2014-02-14 13:59:01 +00:00
|
|
|
if (event_initialized(&c->message_timer))
|
2012-03-17 18:24:07 +00:00
|
|
|
evtimer_del(&c->message_timer);
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2018-08-29 09:50:32 +00:00
|
|
|
free(c->prompt_saved);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(c->prompt_string);
|
|
|
|
free(c->prompt_buffer);
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2017-05-01 12:20:55 +00:00
|
|
|
format_lost_client(c);
|
2015-10-28 09:51:55 +00:00
|
|
|
environ_free(c->environ);
|
2011-08-20 20:37:30 +00:00
|
|
|
|
2015-10-27 13:23:24 +00:00
|
|
|
proc_remove_peer(c->peer);
|
|
|
|
c->peer = NULL;
|
2009-11-04 21:47:42 +00:00
|
|
|
|
2020-05-26 08:41:47 +00:00
|
|
|
if (c->out_fd != -1)
|
|
|
|
close(c->out_fd);
|
2020-05-24 09:13:06 +00:00
|
|
|
if (c->fd != -1) {
|
|
|
|
close(c->fd);
|
|
|
|
c->fd = -1;
|
|
|
|
}
|
2015-06-05 18:06:30 +00:00
|
|
|
server_client_unref(c);
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2012-04-11 06:16:14 +00:00
|
|
|
server_add_accept(0); /* may be more file descriptors now */
|
|
|
|
|
2009-10-22 19:41:51 +00:00
|
|
|
recalculate_sizes();
|
2010-09-26 20:43:30 +00:00
|
|
|
server_check_unattached();
|
2009-11-11 08:00:42 +00:00
|
|
|
server_update_socket();
|
2009-10-22 19:41:51 +00:00
|
|
|
}
|
|
|
|
|
2015-06-05 18:01:12 +00:00
|
|
|
/* Remove reference from a client. */
|
|
|
|
void
|
2015-06-05 18:06:30 +00:00
|
|
|
server_client_unref(struct client *c)
|
2015-06-05 18:01:12 +00:00
|
|
|
{
|
2015-10-20 21:12:08 +00:00
|
|
|
log_debug("unref client %p (%d references)", c, c->references);
|
2015-06-05 18:01:12 +00:00
|
|
|
|
|
|
|
c->references--;
|
|
|
|
if (c->references == 0)
|
|
|
|
event_once(-1, EV_TIMEOUT, server_client_free, c, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Free dead client. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2015-11-18 14:27:44 +00:00
|
|
|
server_client_free(__unused int fd, __unused short events, void *arg)
|
2015-06-05 18:01:12 +00:00
|
|
|
{
|
|
|
|
struct client *c = arg;
|
|
|
|
|
2015-10-20 21:12:08 +00:00
|
|
|
log_debug("free client %p (%d references)", c, c->references);
|
2015-06-05 18:01:12 +00:00
|
|
|
|
2020-04-13 10:59:58 +00:00
|
|
|
cmdq_free(c->queue);
|
2016-10-16 17:55:14 +00:00
|
|
|
|
2017-04-05 10:49:46 +00:00
|
|
|
if (c->references == 0) {
|
|
|
|
free((void *)c->name);
|
2015-06-05 18:01:12 +00:00
|
|
|
free(c);
|
2017-04-05 10:49:46 +00:00
|
|
|
}
|
2015-06-05 18:01:12 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 14:00:28 +00:00
|
|
|
/* Suspend a client. */
|
|
|
|
void
|
|
|
|
server_client_suspend(struct client *c)
|
|
|
|
{
|
2017-05-16 12:57:26 +00:00
|
|
|
struct session *s = c->session;
|
2017-04-19 14:00:28 +00:00
|
|
|
|
2020-06-01 09:43:00 +00:00
|
|
|
if (s == NULL || (c->flags & CLIENT_UNATTACHEDFLAGS))
|
2017-04-19 14:00:28 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
tty_stop_tty(&c->tty);
|
|
|
|
c->flags |= CLIENT_SUSPENDED;
|
|
|
|
proc_send(c->peer, MSG_SUSPEND, -1, NULL, 0);
|
|
|
|
}
|
|
|
|
|
2015-12-08 01:10:31 +00:00
|
|
|
/* Detach a client. */
|
|
|
|
void
|
|
|
|
server_client_detach(struct client *c, enum msgtype msgtype)
|
|
|
|
{
|
2017-05-16 12:57:26 +00:00
|
|
|
struct session *s = c->session;
|
2015-12-08 01:10:31 +00:00
|
|
|
|
2021-10-28 18:54:33 +00:00
|
|
|
if (s == NULL || (c->flags & CLIENT_NODETACHFLAGS))
|
2015-12-08 01:10:31 +00:00
|
|
|
return;
|
|
|
|
|
2020-06-01 09:43:00 +00:00
|
|
|
c->flags |= CLIENT_EXIT;
|
|
|
|
|
|
|
|
c->exit_type = CLIENT_EXIT_DETACH;
|
|
|
|
c->exit_msgtype = msgtype;
|
|
|
|
c->exit_session = xstrdup(s->name);
|
2015-12-08 01:10:31 +00:00
|
|
|
}
|
|
|
|
|
2017-01-13 11:56:43 +00:00
|
|
|
/* Execute command to replace a client. */
|
2017-01-13 10:12:12 +00:00
|
|
|
void
|
|
|
|
server_client_exec(struct client *c, const char *cmd)
|
|
|
|
{
|
|
|
|
struct session *s = c->session;
|
2017-01-13 11:56:43 +00:00
|
|
|
char *msg;
|
|
|
|
const char *shell;
|
2017-01-13 10:12:12 +00:00
|
|
|
size_t cmdsize, shellsize;
|
|
|
|
|
|
|
|
if (*cmd == '\0')
|
|
|
|
return;
|
|
|
|
cmdsize = strlen(cmd) + 1;
|
|
|
|
|
|
|
|
if (s != NULL)
|
|
|
|
shell = options_get_string(s->options, "default-shell");
|
|
|
|
else
|
|
|
|
shell = options_get_string(global_s_options, "default-shell");
|
2020-03-17 11:10:12 +00:00
|
|
|
if (!checkshell(shell))
|
|
|
|
shell = _PATH_BSHELL;
|
2017-01-13 10:12:12 +00:00
|
|
|
shellsize = strlen(shell) + 1;
|
|
|
|
|
|
|
|
msg = xmalloc(cmdsize + shellsize);
|
|
|
|
memcpy(msg, cmd, cmdsize);
|
|
|
|
memcpy(msg + cmdsize, shell, shellsize);
|
|
|
|
|
|
|
|
proc_send(c->peer, MSG_EXEC, -1, msg, cmdsize + shellsize);
|
|
|
|
free(msg);
|
|
|
|
}
|
|
|
|
|
2012-01-29 09:37:02 +00:00
|
|
|
/* Check for mouse keys. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static key_code
|
2019-05-03 14:51:30 +00:00
|
|
|
server_client_check_mouse(struct client *c, struct key_event *event)
|
2012-01-29 09:37:02 +00:00
|
|
|
{
|
2019-05-03 14:51:30 +00:00
|
|
|
struct mouse_event *m = &event->m;
|
2023-08-17 14:10:28 +00:00
|
|
|
struct session *s = c->session, *fs;
|
|
|
|
struct winlink *fwl;
|
|
|
|
struct window_pane *wp, *fwp;
|
Support for windows larger than visible on the attached client. This has
been a limitation for a long time.
There are two new options, window-size and default-size, and a new
command, resize-window. The force-width and force-height options and the
session_width and session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and manual
means that it does not automatically resize windows. The default is
currently largest but this may change. aggressive-resize modifies the
choice of session for largest and smallest as it did before.
If a window is in a session attached to a client that is too small, only
part of the window is shown. tmux attempts to keep the cursor visible,
so the part of the window displayed is changed as the cursor moves (with
a small delay, to try and avoid excess redrawing when applications
redraw status lines or similar that are not currently visible). The
offset of the visible portion of the window is shown in status-right.
Drawing windows which are larger than the client is not as efficient as
those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If it
is used, the window-size option is automatically set to manual for the
window (undo this with "setw -u window-size"). resize-window works in a
similar way to resize-pane (-U -D -L -R -x -y flags) but also has -a and
-A flags. -a sets the window to the size of the smallest client (what it
would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use resize-window
-x or -y, and "setw -u window-size" to revert to automatic sizing..
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications to
complain and much higher memory use if making a window excessively
big. The minimum size is the size required for the current layout
including borders.
The refresh-client command can be used to pan around a window, -U -D -L
-R moves up, down, left or right and -c returns to automatic cursor
tracking. The position is reset when the current window is changed.
2018-10-18 08:38:01 +00:00
|
|
|
u_int x, y, b, sx, sy, px, py;
|
2020-03-16 06:12:42 +00:00
|
|
|
int ignore = 0;
|
2016-10-11 09:30:36 +00:00
|
|
|
key_code key;
|
|
|
|
struct timeval tv;
|
2019-03-18 20:53:33 +00:00
|
|
|
struct style_range *sr;
|
2019-05-12 18:16:33 +00:00
|
|
|
enum { NOTYPE,
|
|
|
|
MOVE,
|
|
|
|
DOWN,
|
|
|
|
UP,
|
|
|
|
DRAG,
|
|
|
|
WHEEL,
|
2020-03-31 11:38:35 +00:00
|
|
|
SECOND,
|
2019-05-12 18:16:33 +00:00
|
|
|
DOUBLE,
|
|
|
|
TRIPLE } type = NOTYPE;
|
2019-05-03 14:51:30 +00:00
|
|
|
enum { NOWHERE,
|
|
|
|
PANE,
|
|
|
|
STATUS,
|
|
|
|
STATUS_LEFT,
|
|
|
|
STATUS_RIGHT,
|
|
|
|
STATUS_DEFAULT,
|
2019-05-12 18:16:33 +00:00
|
|
|
BORDER } where = NOWHERE;
|
2015-04-19 21:34:21 +00:00
|
|
|
|
Support for windows larger than visible on the attached client. This has
been a limitation for a long time.
There are two new options, window-size and default-size, and a new
command, resize-window. The force-width and force-height options and the
session_width and session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and manual
means that it does not automatically resize windows. The default is
currently largest but this may change. aggressive-resize modifies the
choice of session for largest and smallest as it did before.
If a window is in a session attached to a client that is too small, only
part of the window is shown. tmux attempts to keep the cursor visible,
so the part of the window displayed is changed as the cursor moves (with
a small delay, to try and avoid excess redrawing when applications
redraw status lines or similar that are not currently visible). The
offset of the visible portion of the window is shown in status-right.
Drawing windows which are larger than the client is not as efficient as
those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If it
is used, the window-size option is automatically set to manual for the
window (undo this with "setw -u window-size"). resize-window works in a
similar way to resize-pane (-U -D -L -R -x -y flags) but also has -a and
-A flags. -a sets the window to the size of the smallest client (what it
would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use resize-window
-x or -y, and "setw -u window-size" to revert to automatic sizing..
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications to
complain and much higher memory use if making a window excessively
big. The minimum size is the size required for the current layout
including borders.
The refresh-client command can be used to pan around a window, -U -D -L
-R moves up, down, left or right and -c returns to automatic cursor
tracking. The position is reset when the current window is changed.
2018-10-18 08:38:01 +00:00
|
|
|
log_debug("%s mouse %02x at %u,%u (last %u,%u) (%d)", c->name, m->b,
|
|
|
|
m->x, m->y, m->lx, m->ly, c->tty.mouse_drag_flag);
|
2015-04-19 21:34:21 +00:00
|
|
|
|
|
|
|
/* What type of event is this? */
|
2020-03-12 13:16:16 +00:00
|
|
|
if (event->key == KEYC_DOUBLECLICK) {
|
|
|
|
type = DOUBLE;
|
|
|
|
x = m->x, y = m->y, b = m->b;
|
2020-03-16 06:12:42 +00:00
|
|
|
ignore = 1;
|
2020-03-12 13:16:16 +00:00
|
|
|
log_debug("double-click at %u,%u", x, y);
|
|
|
|
} else if ((m->sgr_type != ' ' &&
|
2017-02-01 09:55:07 +00:00
|
|
|
MOUSE_DRAG(m->sgr_b) &&
|
2022-02-16 18:55:05 +00:00
|
|
|
MOUSE_RELEASE(m->sgr_b)) ||
|
2017-02-01 09:55:07 +00:00
|
|
|
(m->sgr_type == ' ' &&
|
|
|
|
MOUSE_DRAG(m->b) &&
|
2022-02-16 18:55:05 +00:00
|
|
|
MOUSE_RELEASE(m->b) &&
|
|
|
|
MOUSE_RELEASE(m->lb))) {
|
2017-02-01 09:55:07 +00:00
|
|
|
type = MOVE;
|
|
|
|
x = m->x, y = m->y, b = 0;
|
|
|
|
log_debug("move at %u,%u", x, y);
|
|
|
|
} else if (MOUSE_DRAG(m->b)) {
|
2015-04-19 21:34:21 +00:00
|
|
|
type = DRAG;
|
|
|
|
if (c->tty.mouse_drag_flag) {
|
|
|
|
x = m->x, y = m->y, b = m->b;
|
2019-05-03 18:42:40 +00:00
|
|
|
if (x == m->lx && y == m->ly)
|
|
|
|
return (KEYC_UNKNOWN);
|
2015-04-19 21:34:21 +00:00
|
|
|
log_debug("drag update at %u,%u", x, y);
|
|
|
|
} else {
|
2019-05-03 16:51:29 +00:00
|
|
|
x = m->lx, y = m->ly, b = m->lb;
|
2015-04-19 21:34:21 +00:00
|
|
|
log_debug("drag start at %u,%u", x, y);
|
2012-01-29 09:37:02 +00:00
|
|
|
}
|
2015-04-19 21:34:21 +00:00
|
|
|
} else if (MOUSE_WHEEL(m->b)) {
|
|
|
|
type = WHEEL;
|
|
|
|
x = m->x, y = m->y, b = m->b;
|
|
|
|
log_debug("wheel at %u,%u", x, y);
|
2016-11-16 11:37:16 +00:00
|
|
|
} else if (MOUSE_RELEASE(m->b)) {
|
2015-04-19 21:34:21 +00:00
|
|
|
type = UP;
|
|
|
|
x = m->x, y = m->y, b = m->lb;
|
2024-04-10 07:29:15 +00:00
|
|
|
if (m->sgr_type == 'm')
|
|
|
|
b = m->sgr_b;
|
2015-04-19 21:34:21 +00:00
|
|
|
log_debug("up at %u,%u", x, y);
|
|
|
|
} else {
|
2016-10-11 09:30:36 +00:00
|
|
|
if (c->flags & CLIENT_DOUBLECLICK) {
|
|
|
|
evtimer_del(&c->click_timer);
|
|
|
|
c->flags &= ~CLIENT_DOUBLECLICK;
|
|
|
|
if (m->b == c->click_button) {
|
2020-03-31 11:38:35 +00:00
|
|
|
type = SECOND;
|
|
|
|
x = m->x, y = m->y, b = m->b;
|
|
|
|
log_debug("second-click at %u,%u", x, y);
|
2020-03-12 13:16:16 +00:00
|
|
|
c->flags |= CLIENT_TRIPLECLICK;
|
2016-10-11 09:30:36 +00:00
|
|
|
}
|
|
|
|
} else if (c->flags & CLIENT_TRIPLECLICK) {
|
|
|
|
evtimer_del(&c->click_timer);
|
|
|
|
c->flags &= ~CLIENT_TRIPLECLICK;
|
|
|
|
if (m->b == c->click_button) {
|
|
|
|
type = TRIPLE;
|
|
|
|
x = m->x, y = m->y, b = m->b;
|
|
|
|
log_debug("triple-click at %u,%u", x, y);
|
|
|
|
goto have_event;
|
|
|
|
}
|
2024-04-10 07:29:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* DOWN is the only remaining event type. */
|
|
|
|
if (type == NOTYPE) {
|
2020-03-31 11:38:35 +00:00
|
|
|
type = DOWN;
|
|
|
|
x = m->x, y = m->y, b = m->b;
|
|
|
|
log_debug("down at %u,%u", x, y);
|
2020-03-16 06:12:42 +00:00
|
|
|
c->flags |= CLIENT_DOUBLECLICK;
|
2020-03-31 11:38:35 +00:00
|
|
|
}
|
2016-10-11 09:30:36 +00:00
|
|
|
|
|
|
|
if (KEYC_CLICK_TIMEOUT != 0) {
|
2020-03-12 13:16:16 +00:00
|
|
|
memcpy(&c->click_event, m, sizeof c->click_event);
|
2016-10-11 09:30:36 +00:00
|
|
|
c->click_button = m->b;
|
|
|
|
|
2020-03-31 17:14:40 +00:00
|
|
|
log_debug("click timer started");
|
2016-10-11 09:30:36 +00:00
|
|
|
tv.tv_sec = KEYC_CLICK_TIMEOUT / 1000;
|
|
|
|
tv.tv_usec = (KEYC_CLICK_TIMEOUT % 1000) * 1000L;
|
|
|
|
evtimer_del(&c->click_timer);
|
|
|
|
evtimer_add(&c->click_timer, &tv);
|
|
|
|
}
|
2012-01-29 09:37:02 +00:00
|
|
|
}
|
2016-10-11 09:30:36 +00:00
|
|
|
|
|
|
|
have_event:
|
2015-04-19 21:34:21 +00:00
|
|
|
if (type == NOTYPE)
|
2015-12-12 18:19:00 +00:00
|
|
|
return (KEYC_UNKNOWN);
|
2012-01-29 09:37:02 +00:00
|
|
|
|
2018-08-22 20:06:14 +00:00
|
|
|
/* Save the session. */
|
2015-04-19 21:34:21 +00:00
|
|
|
m->s = s->id;
|
2018-08-22 20:06:14 +00:00
|
|
|
m->w = -1;
|
2023-08-17 14:10:28 +00:00
|
|
|
m->wp = -1;
|
2020-03-16 06:12:42 +00:00
|
|
|
m->ignore = ignore;
|
2015-04-19 21:34:21 +00:00
|
|
|
|
|
|
|
/* Is this on the status line? */
|
|
|
|
m->statusat = status_at_line(c);
|
2019-07-06 20:56:34 +00:00
|
|
|
m->statuslines = status_line_size(c);
|
2019-03-18 20:53:33 +00:00
|
|
|
if (m->statusat != -1 &&
|
|
|
|
y >= (u_int)m->statusat &&
|
2019-07-06 20:56:34 +00:00
|
|
|
y < m->statusat + m->statuslines) {
|
2019-03-18 20:53:33 +00:00
|
|
|
sr = status_get_range(c, x, y - m->statusat);
|
2019-03-25 18:59:55 +00:00
|
|
|
if (sr == NULL) {
|
|
|
|
where = STATUS_DEFAULT;
|
|
|
|
} else {
|
|
|
|
switch (sr->type) {
|
|
|
|
case STYLE_RANGE_NONE:
|
2019-03-25 09:22:09 +00:00
|
|
|
return (KEYC_UNKNOWN);
|
2019-03-25 18:59:55 +00:00
|
|
|
case STYLE_RANGE_LEFT:
|
2023-08-17 14:10:28 +00:00
|
|
|
log_debug("mouse range: left");
|
2019-03-25 18:59:55 +00:00
|
|
|
where = STATUS_LEFT;
|
|
|
|
break;
|
|
|
|
case STYLE_RANGE_RIGHT:
|
2023-08-17 14:10:28 +00:00
|
|
|
log_debug("mouse range: right");
|
2019-03-25 18:59:55 +00:00
|
|
|
where = STATUS_RIGHT;
|
|
|
|
break;
|
2023-08-17 14:10:28 +00:00
|
|
|
case STYLE_RANGE_PANE:
|
|
|
|
fwp = window_pane_find_by_id(sr->argument);
|
|
|
|
if (fwp == NULL)
|
|
|
|
return (KEYC_UNKNOWN);
|
|
|
|
m->wp = sr->argument;
|
|
|
|
|
|
|
|
log_debug("mouse range: pane %%%u", m->wp);
|
|
|
|
where = STATUS;
|
|
|
|
break;
|
2019-03-25 18:59:55 +00:00
|
|
|
case STYLE_RANGE_WINDOW:
|
2023-08-17 14:10:28 +00:00
|
|
|
fwl = winlink_find_by_index(&s->windows,
|
2019-11-28 09:56:25 +00:00
|
|
|
sr->argument);
|
2023-08-17 14:10:28 +00:00
|
|
|
if (fwl == NULL)
|
2019-03-25 18:59:55 +00:00
|
|
|
return (KEYC_UNKNOWN);
|
2023-08-17 14:10:28 +00:00
|
|
|
m->w = fwl->window->id;
|
2019-03-25 09:22:09 +00:00
|
|
|
|
2023-08-17 14:10:28 +00:00
|
|
|
log_debug("mouse range: window @%u", m->w);
|
|
|
|
where = STATUS;
|
|
|
|
break;
|
|
|
|
case STYLE_RANGE_SESSION:
|
|
|
|
fs = session_find_by_id(sr->argument);
|
|
|
|
if (fs == NULL)
|
|
|
|
return (KEYC_UNKNOWN);
|
|
|
|
m->s = sr->argument;
|
|
|
|
|
|
|
|
log_debug("mouse range: session $%u", m->s);
|
|
|
|
where = STATUS;
|
|
|
|
break;
|
|
|
|
case STYLE_RANGE_USER:
|
2019-03-25 18:59:55 +00:00
|
|
|
where = STATUS;
|
|
|
|
break;
|
|
|
|
}
|
2018-08-22 20:06:14 +00:00
|
|
|
}
|
|
|
|
}
|
2015-04-19 21:34:21 +00:00
|
|
|
|
|
|
|
/* Not on status line. Adjust position and check for border or pane. */
|
|
|
|
if (where == NOWHERE) {
|
Support for windows larger than visible on the attached client. This has
been a limitation for a long time.
There are two new options, window-size and default-size, and a new
command, resize-window. The force-width and force-height options and the
session_width and session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and manual
means that it does not automatically resize windows. The default is
currently largest but this may change. aggressive-resize modifies the
choice of session for largest and smallest as it did before.
If a window is in a session attached to a client that is too small, only
part of the window is shown. tmux attempts to keep the cursor visible,
so the part of the window displayed is changed as the cursor moves (with
a small delay, to try and avoid excess redrawing when applications
redraw status lines or similar that are not currently visible). The
offset of the visible portion of the window is shown in status-right.
Drawing windows which are larger than the client is not as efficient as
those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If it
is used, the window-size option is automatically set to manual for the
window (undo this with "setw -u window-size"). resize-window works in a
similar way to resize-pane (-U -D -L -R -x -y flags) but also has -a and
-A flags. -a sets the window to the size of the smallest client (what it
would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use resize-window
-x or -y, and "setw -u window-size" to revert to automatic sizing..
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications to
complain and much higher memory use if making a window excessively
big. The minimum size is the size required for the current layout
including borders.
The refresh-client command can be used to pan around a window, -U -D -L
-R moves up, down, left or right and -c returns to automatic cursor
tracking. The position is reset when the current window is changed.
2018-10-18 08:38:01 +00:00
|
|
|
px = x;
|
2019-07-06 20:56:34 +00:00
|
|
|
if (m->statusat == 0 && y >= m->statuslines)
|
|
|
|
py = y - m->statuslines;
|
2015-04-19 21:34:21 +00:00
|
|
|
else if (m->statusat > 0 && y >= (u_int)m->statusat)
|
Support for windows larger than visible on the attached client. This has
been a limitation for a long time.
There are two new options, window-size and default-size, and a new
command, resize-window. The force-width and force-height options and the
session_width and session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and manual
means that it does not automatically resize windows. The default is
currently largest but this may change. aggressive-resize modifies the
choice of session for largest and smallest as it did before.
If a window is in a session attached to a client that is too small, only
part of the window is shown. tmux attempts to keep the cursor visible,
so the part of the window displayed is changed as the cursor moves (with
a small delay, to try and avoid excess redrawing when applications
redraw status lines or similar that are not currently visible). The
offset of the visible portion of the window is shown in status-right.
Drawing windows which are larger than the client is not as efficient as
those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If it
is used, the window-size option is automatically set to manual for the
window (undo this with "setw -u window-size"). resize-window works in a
similar way to resize-pane (-U -D -L -R -x -y flags) but also has -a and
-A flags. -a sets the window to the size of the smallest client (what it
would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use resize-window
-x or -y, and "setw -u window-size" to revert to automatic sizing..
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications to
complain and much higher memory use if making a window excessively
big. The minimum size is the size required for the current layout
including borders.
The refresh-client command can be used to pan around a window, -U -D -L
-R moves up, down, left or right and -c returns to automatic cursor
tracking. The position is reset when the current window is changed.
2018-10-18 08:38:01 +00:00
|
|
|
py = m->statusat - 1;
|
|
|
|
else
|
|
|
|
py = y;
|
|
|
|
|
|
|
|
tty_window_offset(&c->tty, &m->ox, &m->oy, &sx, &sy);
|
|
|
|
log_debug("mouse window @%u at %u,%u (%ux%u)",
|
|
|
|
s->curw->window->id, m->ox, m->oy, sx, sy);
|
|
|
|
if (px > sx || py > sy)
|
|
|
|
return (KEYC_UNKNOWN);
|
|
|
|
px = px + m->ox;
|
|
|
|
py = py + m->oy;
|
2015-04-19 21:34:21 +00:00
|
|
|
|
2018-09-11 06:37:54 +00:00
|
|
|
/* Try the pane borders if not zoomed. */
|
|
|
|
if (~s->curw->window->flags & WINDOW_ZOOMED) {
|
|
|
|
TAILQ_FOREACH(wp, &s->curw->window->panes, entry) {
|
Support for windows larger than visible on the attached client. This has
been a limitation for a long time.
There are two new options, window-size and default-size, and a new
command, resize-window. The force-width and force-height options and the
session_width and session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and manual
means that it does not automatically resize windows. The default is
currently largest but this may change. aggressive-resize modifies the
choice of session for largest and smallest as it did before.
If a window is in a session attached to a client that is too small, only
part of the window is shown. tmux attempts to keep the cursor visible,
so the part of the window displayed is changed as the cursor moves (with
a small delay, to try and avoid excess redrawing when applications
redraw status lines or similar that are not currently visible). The
offset of the visible portion of the window is shown in status-right.
Drawing windows which are larger than the client is not as efficient as
those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If it
is used, the window-size option is automatically set to manual for the
window (undo this with "setw -u window-size"). resize-window works in a
similar way to resize-pane (-U -D -L -R -x -y flags) but also has -a and
-A flags. -a sets the window to the size of the smallest client (what it
would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use resize-window
-x or -y, and "setw -u window-size" to revert to automatic sizing..
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications to
complain and much higher memory use if making a window excessively
big. The minimum size is the size required for the current layout
including borders.
The refresh-client command can be used to pan around a window, -U -D -L
-R moves up, down, left or right and -c returns to automatic cursor
tracking. The position is reset when the current window is changed.
2018-10-18 08:38:01 +00:00
|
|
|
if ((wp->xoff + wp->sx == px &&
|
|
|
|
wp->yoff <= 1 + py &&
|
|
|
|
wp->yoff + wp->sy >= py) ||
|
|
|
|
(wp->yoff + wp->sy == py &&
|
|
|
|
wp->xoff <= 1 + px &&
|
|
|
|
wp->xoff + wp->sx >= px))
|
2018-09-11 06:37:54 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (wp != NULL)
|
|
|
|
where = BORDER;
|
2015-04-19 21:34:21 +00:00
|
|
|
}
|
2018-09-11 06:37:54 +00:00
|
|
|
|
|
|
|
/* Otherwise try inside the pane. */
|
|
|
|
if (where == NOWHERE) {
|
Support for windows larger than visible on the attached client. This has
been a limitation for a long time.
There are two new options, window-size and default-size, and a new
command, resize-window. The force-width and force-height options and the
session_width and session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and manual
means that it does not automatically resize windows. The default is
currently largest but this may change. aggressive-resize modifies the
choice of session for largest and smallest as it did before.
If a window is in a session attached to a client that is too small, only
part of the window is shown. tmux attempts to keep the cursor visible,
so the part of the window displayed is changed as the cursor moves (with
a small delay, to try and avoid excess redrawing when applications
redraw status lines or similar that are not currently visible). The
offset of the visible portion of the window is shown in status-right.
Drawing windows which are larger than the client is not as efficient as
those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If it
is used, the window-size option is automatically set to manual for the
window (undo this with "setw -u window-size"). resize-window works in a
similar way to resize-pane (-U -D -L -R -x -y flags) but also has -a and
-A flags. -a sets the window to the size of the smallest client (what it
would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use resize-window
-x or -y, and "setw -u window-size" to revert to automatic sizing..
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications to
complain and much higher memory use if making a window excessively
big. The minimum size is the size required for the current layout
including borders.
The refresh-client command can be used to pan around a window, -U -D -L
-R moves up, down, left or right and -c returns to automatic cursor
tracking. The position is reset when the current window is changed.
2018-10-18 08:38:01 +00:00
|
|
|
wp = window_get_active_at(s->curw->window, px, py);
|
2018-09-11 06:37:54 +00:00
|
|
|
if (wp != NULL)
|
2015-04-19 21:34:21 +00:00
|
|
|
where = PANE;
|
2020-04-09 13:52:31 +00:00
|
|
|
else
|
|
|
|
return (KEYC_UNKNOWN);
|
2015-04-19 21:34:21 +00:00
|
|
|
}
|
2018-09-11 06:37:54 +00:00
|
|
|
if (where == PANE)
|
|
|
|
log_debug("mouse %u,%u on pane %%%u", x, y, wp->id);
|
|
|
|
else if (where == BORDER)
|
|
|
|
log_debug("mouse on pane %%%u border", wp->id);
|
2015-04-19 21:34:21 +00:00
|
|
|
m->wp = wp->id;
|
|
|
|
m->w = wp->window->id;
|
|
|
|
} else
|
|
|
|
m->wp = -1;
|
|
|
|
|
|
|
|
/* Stop dragging if needed. */
|
2022-02-16 18:55:05 +00:00
|
|
|
if (type != DRAG && type != WHEEL && c->tty.mouse_drag_flag != 0) {
|
2015-04-19 21:34:21 +00:00
|
|
|
if (c->tty.mouse_drag_release != NULL)
|
|
|
|
c->tty.mouse_drag_release(c, m);
|
|
|
|
|
|
|
|
c->tty.mouse_drag_update = NULL;
|
|
|
|
c->tty.mouse_drag_release = NULL;
|
|
|
|
|
2016-03-01 12:04:43 +00:00
|
|
|
/*
|
2016-03-18 07:28:27 +00:00
|
|
|
* End a mouse drag by passing a MouseDragEnd key corresponding
|
|
|
|
* to the button that started the drag.
|
2016-03-01 12:04:43 +00:00
|
|
|
*/
|
2022-02-16 18:55:05 +00:00
|
|
|
switch (c->tty.mouse_drag_flag - 1) {
|
|
|
|
case MOUSE_BUTTON_1:
|
2016-03-01 12:04:43 +00:00
|
|
|
if (where == PANE)
|
2016-03-18 07:28:27 +00:00
|
|
|
key = KEYC_MOUSEDRAGEND1_PANE;
|
2016-03-01 12:04:43 +00:00
|
|
|
if (where == STATUS)
|
2016-03-18 07:28:27 +00:00
|
|
|
key = KEYC_MOUSEDRAGEND1_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDRAGEND1_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDRAGEND1_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDRAGEND1_STATUS_DEFAULT;
|
2016-03-01 12:04:43 +00:00
|
|
|
if (where == BORDER)
|
2016-03-18 07:28:27 +00:00
|
|
|
key = KEYC_MOUSEDRAGEND1_BORDER;
|
2016-03-01 12:04:43 +00:00
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_2:
|
2016-03-01 12:04:43 +00:00
|
|
|
if (where == PANE)
|
2016-03-18 07:28:27 +00:00
|
|
|
key = KEYC_MOUSEDRAGEND2_PANE;
|
2016-03-01 12:04:43 +00:00
|
|
|
if (where == STATUS)
|
2016-03-18 07:28:27 +00:00
|
|
|
key = KEYC_MOUSEDRAGEND2_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDRAGEND2_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDRAGEND2_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDRAGEND2_STATUS_DEFAULT;
|
2016-03-01 12:04:43 +00:00
|
|
|
if (where == BORDER)
|
2016-03-18 07:28:27 +00:00
|
|
|
key = KEYC_MOUSEDRAGEND2_BORDER;
|
2016-03-01 12:04:43 +00:00
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_3:
|
2016-03-01 12:04:43 +00:00
|
|
|
if (where == PANE)
|
2016-03-18 07:28:27 +00:00
|
|
|
key = KEYC_MOUSEDRAGEND3_PANE;
|
2016-03-01 12:04:43 +00:00
|
|
|
if (where == STATUS)
|
2016-03-18 07:28:27 +00:00
|
|
|
key = KEYC_MOUSEDRAGEND3_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDRAGEND3_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDRAGEND3_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDRAGEND3_STATUS_DEFAULT;
|
2016-03-01 12:04:43 +00:00
|
|
|
if (where == BORDER)
|
2016-03-18 07:28:27 +00:00
|
|
|
key = KEYC_MOUSEDRAGEND3_BORDER;
|
2016-03-01 12:04:43 +00:00
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_6:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDRAGEND6_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDRAGEND6_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDRAGEND6_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDRAGEND6_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDRAGEND6_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDRAGEND6_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_7:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDRAGEND7_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDRAGEND7_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDRAGEND7_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDRAGEND7_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDRAGEND7_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDRAGEND7_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_8:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDRAGEND8_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDRAGEND8_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDRAGEND8_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDRAGEND8_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDRAGEND8_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDRAGEND8_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_9:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDRAGEND9_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDRAGEND9_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDRAGEND9_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDRAGEND9_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDRAGEND9_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDRAGEND9_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_10:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDRAGEND10_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDRAGEND10_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDRAGEND10_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDRAGEND10_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDRAGEND10_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDRAGEND10_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_11:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDRAGEND11_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDRAGEND11_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDRAGEND11_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDRAGEND11_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDRAGEND11_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDRAGEND11_BORDER;
|
|
|
|
break;
|
2016-03-01 12:04:43 +00:00
|
|
|
default:
|
|
|
|
key = KEYC_MOUSE;
|
|
|
|
break;
|
|
|
|
}
|
2015-04-19 21:34:21 +00:00
|
|
|
c->tty.mouse_drag_flag = 0;
|
2020-02-19 14:25:00 +00:00
|
|
|
goto out;
|
2012-01-29 09:37:02 +00:00
|
|
|
}
|
|
|
|
|
2015-04-19 21:34:21 +00:00
|
|
|
/* Convert to a key binding. */
|
2015-12-12 18:19:00 +00:00
|
|
|
key = KEYC_UNKNOWN;
|
2015-04-19 21:34:21 +00:00
|
|
|
switch (type) {
|
|
|
|
case NOTYPE:
|
|
|
|
break;
|
2017-02-01 09:55:07 +00:00
|
|
|
case MOVE:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEMOVE_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEMOVE_STATUS;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEMOVE_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEMOVE_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEMOVE_STATUS_DEFAULT;
|
2017-02-01 09:55:07 +00:00
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEMOVE_BORDER;
|
|
|
|
break;
|
2015-04-19 21:34:21 +00:00
|
|
|
case DRAG:
|
2016-11-24 18:45:45 +00:00
|
|
|
if (c->tty.mouse_drag_update != NULL)
|
|
|
|
key = KEYC_DRAGGING;
|
|
|
|
else {
|
2015-04-19 21:34:21 +00:00
|
|
|
switch (MOUSE_BUTTONS(b)) {
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_1:
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDRAG1_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDRAG1_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDRAG1_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDRAG1_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDRAG1_STATUS_DEFAULT;
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDRAG1_BORDER;
|
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_2:
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDRAG2_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDRAG2_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDRAG2_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDRAG2_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDRAG2_STATUS_DEFAULT;
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDRAG2_BORDER;
|
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_3:
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDRAG3_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDRAG3_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDRAG3_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDRAG3_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDRAG3_STATUS_DEFAULT;
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDRAG3_BORDER;
|
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_6:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDRAG6_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDRAG6_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDRAG6_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDRAG6_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDRAG6_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDRAG6_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_7:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDRAG7_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDRAG7_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDRAG7_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDRAG7_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDRAG7_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDRAG7_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_8:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDRAG8_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDRAG8_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDRAG8_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDRAG8_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDRAG8_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDRAG8_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_9:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDRAG9_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDRAG9_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDRAG9_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDRAG9_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDRAG9_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDRAG9_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_10:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDRAG10_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDRAG10_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDRAG10_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDRAG10_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDRAG10_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDRAG10_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_11:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDRAG11_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDRAG11_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDRAG11_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDRAG11_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDRAG11_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDRAG11_BORDER;
|
|
|
|
break;
|
2015-04-19 21:34:21 +00:00
|
|
|
}
|
|
|
|
}
|
2012-01-29 09:37:02 +00:00
|
|
|
|
2016-03-01 12:04:43 +00:00
|
|
|
/*
|
|
|
|
* Begin a drag by setting the flag to a non-zero value that
|
|
|
|
* corresponds to the mouse button in use.
|
|
|
|
*/
|
|
|
|
c->tty.mouse_drag_flag = MOUSE_BUTTONS(b) + 1;
|
2015-04-19 21:34:21 +00:00
|
|
|
break;
|
|
|
|
case WHEEL:
|
|
|
|
if (MOUSE_BUTTONS(b) == MOUSE_WHEEL_UP) {
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_WHEELUP_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_WHEELUP_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_WHEELUP_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_WHEELUP_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_WHEELUP_STATUS_DEFAULT;
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_WHEELUP_BORDER;
|
|
|
|
} else {
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_WHEELDOWN_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_WHEELDOWN_STATUS;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_WHEELDOWN_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_WHEELDOWN_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_WHEELDOWN_STATUS_DEFAULT;
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_WHEELDOWN_BORDER;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case UP:
|
|
|
|
switch (MOUSE_BUTTONS(b)) {
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_1:
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEUP1_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEUP1_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEUP1_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEUP1_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEUP1_STATUS_DEFAULT;
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEUP1_BORDER;
|
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_2:
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEUP2_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEUP2_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEUP2_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEUP2_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEUP2_STATUS_DEFAULT;
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEUP2_BORDER;
|
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_3:
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEUP3_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEUP3_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEUP3_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEUP3_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEUP3_STATUS_DEFAULT;
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEUP3_BORDER;
|
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_6:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEUP6_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEUP6_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEUP6_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEUP6_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEUP6_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEUP6_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_7:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEUP7_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEUP7_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEUP7_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEUP7_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEUP7_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEUP7_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_8:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEUP8_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEUP8_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEUP8_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEUP8_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEUP8_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEUP8_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_9:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEUP9_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEUP9_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEUP9_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEUP9_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEUP9_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEUP9_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_10:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEUP1_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEUP1_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEUP1_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEUP1_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEUP1_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEUP1_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_11:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEUP11_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEUP11_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEUP11_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEUP11_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEUP11_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEUP11_BORDER;
|
|
|
|
break;
|
2015-04-19 21:34:21 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DOWN:
|
|
|
|
switch (MOUSE_BUTTONS(b)) {
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_1:
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDOWN1_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDOWN1_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDOWN1_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDOWN1_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDOWN1_STATUS_DEFAULT;
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDOWN1_BORDER;
|
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_2:
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDOWN2_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDOWN2_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDOWN2_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDOWN2_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDOWN2_STATUS_DEFAULT;
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDOWN2_BORDER;
|
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_3:
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDOWN3_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDOWN3_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDOWN3_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDOWN3_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDOWN3_STATUS_DEFAULT;
|
2015-04-19 21:34:21 +00:00
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDOWN3_BORDER;
|
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_6:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDOWN6_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDOWN6_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDOWN6_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDOWN6_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDOWN6_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDOWN6_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_7:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDOWN7_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDOWN7_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDOWN7_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDOWN7_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDOWN7_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDOWN7_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_8:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDOWN8_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDOWN8_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDOWN8_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDOWN8_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDOWN8_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDOWN8_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_9:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDOWN9_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDOWN9_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDOWN9_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDOWN9_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDOWN9_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDOWN9_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_10:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDOWN10_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDOWN10_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDOWN10_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDOWN10_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDOWN10_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDOWN10_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_11:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_MOUSEDOWN11_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_MOUSEDOWN11_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_MOUSEDOWN11_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_MOUSEDOWN11_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_MOUSEDOWN11_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_MOUSEDOWN11_BORDER;
|
|
|
|
break;
|
2015-04-19 21:34:21 +00:00
|
|
|
}
|
|
|
|
break;
|
2020-03-31 11:38:35 +00:00
|
|
|
case SECOND:
|
|
|
|
switch (MOUSE_BUTTONS(b)) {
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_1:
|
2020-03-31 11:38:35 +00:00
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_SECONDCLICK1_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_SECONDCLICK1_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_SECONDCLICK1_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_SECONDCLICK1_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_SECONDCLICK1_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_SECONDCLICK1_BORDER;
|
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_2:
|
2020-03-31 11:38:35 +00:00
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_SECONDCLICK2_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_SECONDCLICK2_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_SECONDCLICK2_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_SECONDCLICK2_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_SECONDCLICK2_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_SECONDCLICK2_BORDER;
|
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_3:
|
2020-03-31 11:38:35 +00:00
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_SECONDCLICK3_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_SECONDCLICK3_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_SECONDCLICK3_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_SECONDCLICK3_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_SECONDCLICK3_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_SECONDCLICK3_BORDER;
|
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_6:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_SECONDCLICK6_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_SECONDCLICK6_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_SECONDCLICK6_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_SECONDCLICK6_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_SECONDCLICK6_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_SECONDCLICK6_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_7:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_SECONDCLICK7_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_SECONDCLICK7_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_SECONDCLICK7_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_SECONDCLICK7_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_SECONDCLICK7_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_SECONDCLICK7_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_8:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_SECONDCLICK8_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_SECONDCLICK8_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_SECONDCLICK8_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_SECONDCLICK8_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_SECONDCLICK8_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_SECONDCLICK8_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_9:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_SECONDCLICK9_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_SECONDCLICK9_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_SECONDCLICK9_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_SECONDCLICK9_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_SECONDCLICK9_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_SECONDCLICK9_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_10:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_SECONDCLICK10_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_SECONDCLICK10_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_SECONDCLICK10_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_SECONDCLICK10_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_SECONDCLICK10_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_SECONDCLICK10_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_11:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_SECONDCLICK11_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_SECONDCLICK11_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_SECONDCLICK11_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_SECONDCLICK11_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_SECONDCLICK11_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_SECONDCLICK11_BORDER;
|
|
|
|
break;
|
2020-03-31 11:38:35 +00:00
|
|
|
}
|
|
|
|
break;
|
2016-10-11 09:30:36 +00:00
|
|
|
case DOUBLE:
|
|
|
|
switch (MOUSE_BUTTONS(b)) {
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_1:
|
2016-10-11 09:30:36 +00:00
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_DOUBLECLICK1_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_DOUBLECLICK1_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_DOUBLECLICK1_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_DOUBLECLICK1_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_DOUBLECLICK1_STATUS_DEFAULT;
|
2016-10-11 09:30:36 +00:00
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_DOUBLECLICK1_BORDER;
|
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_2:
|
2016-10-11 09:30:36 +00:00
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_DOUBLECLICK2_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_DOUBLECLICK2_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_DOUBLECLICK2_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_DOUBLECLICK2_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_DOUBLECLICK2_STATUS_DEFAULT;
|
2016-10-11 09:30:36 +00:00
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_DOUBLECLICK2_BORDER;
|
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_3:
|
2016-10-11 09:30:36 +00:00
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_DOUBLECLICK3_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_DOUBLECLICK3_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_DOUBLECLICK3_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_DOUBLECLICK3_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_DOUBLECLICK3_STATUS_DEFAULT;
|
2016-10-11 09:30:36 +00:00
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_DOUBLECLICK3_BORDER;
|
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_6:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_DOUBLECLICK6_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_DOUBLECLICK6_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_DOUBLECLICK6_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_DOUBLECLICK6_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_DOUBLECLICK6_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_DOUBLECLICK6_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_7:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_DOUBLECLICK7_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_DOUBLECLICK7_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_DOUBLECLICK7_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_DOUBLECLICK7_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_DOUBLECLICK7_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_DOUBLECLICK7_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_8:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_DOUBLECLICK8_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_DOUBLECLICK8_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_DOUBLECLICK8_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_DOUBLECLICK8_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_DOUBLECLICK8_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_DOUBLECLICK8_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_9:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_DOUBLECLICK9_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_DOUBLECLICK9_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_DOUBLECLICK9_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_DOUBLECLICK9_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_DOUBLECLICK9_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_DOUBLECLICK9_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_10:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_DOUBLECLICK10_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_DOUBLECLICK10_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_DOUBLECLICK10_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_DOUBLECLICK10_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_DOUBLECLICK10_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_DOUBLECLICK10_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_11:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_DOUBLECLICK11_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_DOUBLECLICK11_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_DOUBLECLICK11_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_DOUBLECLICK11_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_DOUBLECLICK11_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_DOUBLECLICK11_BORDER;
|
|
|
|
break;
|
2016-10-11 09:30:36 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TRIPLE:
|
|
|
|
switch (MOUSE_BUTTONS(b)) {
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_1:
|
2016-10-11 09:30:36 +00:00
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_TRIPLECLICK1_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_TRIPLECLICK1_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_TRIPLECLICK1_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_TRIPLECLICK1_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_TRIPLECLICK1_STATUS_DEFAULT;
|
2016-10-11 09:30:36 +00:00
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_TRIPLECLICK1_BORDER;
|
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_2:
|
2016-10-11 09:30:36 +00:00
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_TRIPLECLICK2_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_TRIPLECLICK2_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_TRIPLECLICK2_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_TRIPLECLICK2_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_TRIPLECLICK2_STATUS_DEFAULT;
|
2016-10-11 09:30:36 +00:00
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_TRIPLECLICK2_BORDER;
|
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_3:
|
2016-10-11 09:30:36 +00:00
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_TRIPLECLICK3_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_TRIPLECLICK3_STATUS;
|
2018-08-22 20:06:14 +00:00
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_TRIPLECLICK3_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_TRIPLECLICK3_STATUS_RIGHT;
|
2019-03-25 18:59:55 +00:00
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_TRIPLECLICK3_STATUS_DEFAULT;
|
2016-10-11 09:30:36 +00:00
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_TRIPLECLICK3_BORDER;
|
|
|
|
break;
|
2022-02-16 18:55:05 +00:00
|
|
|
case MOUSE_BUTTON_6:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_TRIPLECLICK6_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_TRIPLECLICK6_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_TRIPLECLICK6_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_TRIPLECLICK6_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_TRIPLECLICK6_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_TRIPLECLICK6_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_7:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_TRIPLECLICK7_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_TRIPLECLICK7_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_TRIPLECLICK7_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_TRIPLECLICK7_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_TRIPLECLICK7_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_TRIPLECLICK7_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_8:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_TRIPLECLICK8_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_TRIPLECLICK8_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_TRIPLECLICK8_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_TRIPLECLICK8_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_TRIPLECLICK8_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_TRIPLECLICK8_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_9:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_TRIPLECLICK9_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_TRIPLECLICK9_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_TRIPLECLICK9_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_TRIPLECLICK9_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_TRIPLECLICK9_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_TRIPLECLICK9_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_10:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_TRIPLECLICK10_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_TRIPLECLICK10_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_TRIPLECLICK10_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_TRIPLECLICK10_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_TRIPLECLICK10_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_TRIPLECLICK10_BORDER;
|
|
|
|
break;
|
|
|
|
case MOUSE_BUTTON_11:
|
|
|
|
if (where == PANE)
|
|
|
|
key = KEYC_TRIPLECLICK11_PANE;
|
|
|
|
if (where == STATUS)
|
|
|
|
key = KEYC_TRIPLECLICK11_STATUS;
|
|
|
|
if (where == STATUS_LEFT)
|
|
|
|
key = KEYC_TRIPLECLICK11_STATUS_LEFT;
|
|
|
|
if (where == STATUS_RIGHT)
|
|
|
|
key = KEYC_TRIPLECLICK11_STATUS_RIGHT;
|
|
|
|
if (where == STATUS_DEFAULT)
|
|
|
|
key = KEYC_TRIPLECLICK11_STATUS_DEFAULT;
|
|
|
|
if (where == BORDER)
|
|
|
|
key = KEYC_TRIPLECLICK11_BORDER;
|
|
|
|
break;
|
2016-10-11 09:30:36 +00:00
|
|
|
}
|
|
|
|
break;
|
2015-04-19 21:34:21 +00:00
|
|
|
}
|
2015-12-12 18:19:00 +00:00
|
|
|
if (key == KEYC_UNKNOWN)
|
|
|
|
return (KEYC_UNKNOWN);
|
2015-04-19 21:34:21 +00:00
|
|
|
|
2020-02-19 14:25:00 +00:00
|
|
|
out:
|
2015-04-19 21:34:21 +00:00
|
|
|
/* Apply modifiers if any. */
|
|
|
|
if (b & MOUSE_MASK_META)
|
2020-05-16 16:50:55 +00:00
|
|
|
key |= KEYC_META;
|
2015-04-19 21:34:21 +00:00
|
|
|
if (b & MOUSE_MASK_CTRL)
|
|
|
|
key |= KEYC_CTRL;
|
|
|
|
if (b & MOUSE_MASK_SHIFT)
|
|
|
|
key |= KEYC_SHIFT;
|
|
|
|
|
2020-02-19 14:25:00 +00:00
|
|
|
if (log_get_level() != 0)
|
2020-05-16 16:50:55 +00:00
|
|
|
log_debug("mouse key is %s", key_string_lookup_key (key, 1));
|
2015-04-19 21:34:21 +00:00
|
|
|
return (key);
|
2012-01-29 09:37:02 +00:00
|
|
|
}
|
|
|
|
|
2023-01-12 18:49:11 +00:00
|
|
|
/* Is this a bracket paste key? */
|
|
|
|
static int
|
|
|
|
server_client_is_bracket_pasting(struct client *c, key_code key)
|
|
|
|
{
|
|
|
|
if (key == KEYC_PASTE_START) {
|
|
|
|
c->flags |= CLIENT_BRACKETPASTING;
|
|
|
|
log_debug("%s: bracket paste on", c->name);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (key == KEYC_PASTE_END) {
|
|
|
|
c->flags &= ~CLIENT_BRACKETPASTING;
|
|
|
|
log_debug("%s: bracket paste off", c->name);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return !!(c->flags & CLIENT_BRACKETPASTING);
|
|
|
|
}
|
|
|
|
|
2013-01-15 22:55:29 +00:00
|
|
|
/* Is this fast enough to probably be a paste? */
|
2016-10-10 21:29:23 +00:00
|
|
|
static int
|
2013-01-15 22:55:29 +00:00
|
|
|
server_client_assume_paste(struct session *s)
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
2013-01-30 17:00:17 +00:00
|
|
|
int t;
|
2013-01-15 22:55:29 +00:00
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
if ((t = options_get_number(s->options, "assume-paste-time")) == 0)
|
2013-01-18 02:10:29 +00:00
|
|
|
return (0);
|
2013-01-15 22:55:29 +00:00
|
|
|
|
|
|
|
timersub(&s->activity_time, &s->last_activity_time, &tv);
|
2015-11-19 22:46:46 +00:00
|
|
|
if (tv.tv_sec == 0 && tv.tv_usec < t * 1000) {
|
|
|
|
log_debug("session %s pasting (flag %d)", s->name,
|
|
|
|
!!(s->flags & SESSION_PASTING));
|
|
|
|
if (s->flags & SESSION_PASTING)
|
|
|
|
return (1);
|
|
|
|
s->flags |= SESSION_PASTING;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
log_debug("session %s not pasting", s->name);
|
|
|
|
s->flags &= ~SESSION_PASTING;
|
2013-01-18 02:10:29 +00:00
|
|
|
return (0);
|
2013-01-15 22:55:29 +00:00
|
|
|
}
|
|
|
|
|
2019-09-19 09:02:30 +00:00
|
|
|
/* Has the latest client changed? */
|
|
|
|
static void
|
|
|
|
server_client_update_latest(struct client *c)
|
|
|
|
{
|
|
|
|
struct window *w;
|
|
|
|
|
|
|
|
if (c->session == NULL)
|
|
|
|
return;
|
|
|
|
w = c->session->curw->window;
|
|
|
|
|
|
|
|
if (w->latest == c)
|
|
|
|
return;
|
|
|
|
w->latest = c;
|
|
|
|
|
|
|
|
if (options_get_number(w->options, "window-size") == WINDOW_SIZE_LATEST)
|
2020-06-05 07:33:57 +00:00
|
|
|
recalculate_size(w, 0);
|
2021-08-04 08:07:19 +00:00
|
|
|
|
|
|
|
notify_client("client-active", c);
|
2019-09-19 09:02:30 +00:00
|
|
|
}
|
|
|
|
|
2019-05-03 14:51:30 +00:00
|
|
|
/*
|
|
|
|
* Handle data key input from client. This owns and can modify the key event it
|
|
|
|
* is given and is responsible for freeing it.
|
|
|
|
*/
|
2019-05-07 11:24:03 +00:00
|
|
|
static enum cmd_retval
|
2019-05-03 14:51:30 +00:00
|
|
|
server_client_key_callback(struct cmdq_item *item, void *data)
|
2009-11-05 08:45:08 +00:00
|
|
|
{
|
2020-04-13 10:59:58 +00:00
|
|
|
struct client *c = cmdq_get_client(item);
|
2019-05-03 14:51:30 +00:00
|
|
|
struct key_event *event = data;
|
|
|
|
key_code key = event->key;
|
|
|
|
struct mouse_event *m = &event->m;
|
2019-03-12 11:16:49 +00:00
|
|
|
struct session *s = c->session;
|
|
|
|
struct winlink *wl;
|
|
|
|
struct window_pane *wp;
|
|
|
|
struct window_mode_entry *wme;
|
|
|
|
struct timeval tv;
|
|
|
|
struct key_table *table, *first;
|
|
|
|
struct key_binding *bd;
|
2024-08-26 07:30:46 +00:00
|
|
|
int xtimeout;
|
|
|
|
uint64_t flags;
|
2019-03-12 11:16:49 +00:00
|
|
|
struct cmd_find_state fs;
|
2023-12-27 20:23:59 +00:00
|
|
|
key_code key0, prefix, prefix2;
|
2009-11-05 08:45:08 +00:00
|
|
|
|
|
|
|
/* Check the client is good to accept input. */
|
2020-01-28 08:06:11 +00:00
|
|
|
if (s == NULL || (c->flags & CLIENT_UNATTACHEDFLAGS))
|
2019-05-03 14:51:30 +00:00
|
|
|
goto out;
|
2018-12-18 13:20:44 +00:00
|
|
|
wl = s->curw;
|
2013-03-21 18:47:01 +00:00
|
|
|
|
2009-11-05 08:45:08 +00:00
|
|
|
/* Update the activity timer. */
|
|
|
|
if (gettimeofday(&c->activity_time, NULL) != 0)
|
|
|
|
fatal("gettimeofday failed");
|
2015-08-28 13:01:03 +00:00
|
|
|
session_update_activity(s, &c->activity_time);
|
2009-11-05 08:45:08 +00:00
|
|
|
|
|
|
|
/* Check for mouse keys. */
|
2016-11-24 18:45:45 +00:00
|
|
|
m->valid = 0;
|
2020-03-12 13:16:16 +00:00
|
|
|
if (key == KEYC_MOUSE || key == KEYC_DOUBLECLICK) {
|
2010-02-06 22:55:31 +00:00
|
|
|
if (c->flags & CLIENT_READONLY)
|
2019-05-03 14:51:30 +00:00
|
|
|
goto out;
|
|
|
|
key = server_client_check_mouse(c, event);
|
2015-12-12 18:19:00 +00:00
|
|
|
if (key == KEYC_UNKNOWN)
|
2019-05-03 14:51:30 +00:00
|
|
|
goto out;
|
2015-04-19 21:34:21 +00:00
|
|
|
|
|
|
|
m->valid = 1;
|
|
|
|
m->key = key;
|
2016-11-24 14:38:55 +00:00
|
|
|
|
|
|
|
/*
|
2016-11-24 18:45:45 +00:00
|
|
|
* Mouse drag is in progress, so fire the callback (now that
|
|
|
|
* the mouse event is valid).
|
2016-11-24 14:38:55 +00:00
|
|
|
*/
|
2020-02-19 14:25:00 +00:00
|
|
|
if ((key & KEYC_MASK_KEY) == KEYC_DRAGGING) {
|
2016-11-24 18:45:45 +00:00
|
|
|
c->tty.mouse_drag_update(c, m);
|
2019-05-03 14:51:30 +00:00
|
|
|
goto out;
|
2016-11-24 18:45:45 +00:00
|
|
|
}
|
2020-05-16 15:47:22 +00:00
|
|
|
event->key = key;
|
2019-05-03 14:51:30 +00:00
|
|
|
}
|
2009-11-05 08:45:08 +00:00
|
|
|
|
2016-11-24 13:46:50 +00:00
|
|
|
/* Find affected pane. */
|
2017-08-30 10:33:57 +00:00
|
|
|
if (!KEYC_IS_MOUSE(key) || cmd_find_from_mouse(&fs, m, 0) != 0)
|
2020-05-16 16:20:59 +00:00
|
|
|
cmd_find_from_client(&fs, c, 0);
|
2017-04-22 08:56:24 +00:00
|
|
|
wp = fs.wp;
|
2016-11-24 13:46:50 +00:00
|
|
|
|
|
|
|
/* Forward mouse keys if disabled. */
|
2017-01-11 22:36:07 +00:00
|
|
|
if (KEYC_IS_MOUSE(key) && !options_get_number(s->options, "mouse"))
|
2018-07-17 18:02:40 +00:00
|
|
|
goto forward_key;
|
2016-11-24 13:46:50 +00:00
|
|
|
|
2023-01-12 18:49:11 +00:00
|
|
|
/* Forward if bracket pasting. */
|
|
|
|
if (server_client_is_bracket_pasting(c, key))
|
|
|
|
goto forward_key;
|
|
|
|
|
2015-04-20 15:34:56 +00:00
|
|
|
/* Treat everything as a regular key when pasting is detected. */
|
2023-01-16 11:26:14 +00:00
|
|
|
if (!KEYC_IS_MOUSE(key) &&
|
|
|
|
(~key & KEYC_SENT) &&
|
|
|
|
server_client_assume_paste(s))
|
2018-07-17 18:02:40 +00:00
|
|
|
goto forward_key;
|
2013-01-15 22:55:29 +00:00
|
|
|
|
2016-10-11 07:23:34 +00:00
|
|
|
/*
|
|
|
|
* Work out the current key table. If the pane is in a mode, use
|
|
|
|
* the mode table instead of the default key table.
|
|
|
|
*/
|
2017-04-21 16:04:18 +00:00
|
|
|
if (server_client_is_default_key_table(c, c->keytable) &&
|
|
|
|
wp != NULL &&
|
2019-03-12 11:16:49 +00:00
|
|
|
(wme = TAILQ_FIRST(&wp->modes)) != NULL &&
|
|
|
|
wme->mode->key_table != NULL)
|
|
|
|
table = key_bindings_get_table(wme->mode->key_table(wme), 1);
|
2016-10-11 07:23:34 +00:00
|
|
|
else
|
2017-04-21 16:04:18 +00:00
|
|
|
table = c->keytable;
|
|
|
|
first = table;
|
2016-10-11 07:23:34 +00:00
|
|
|
|
2018-07-17 18:02:40 +00:00
|
|
|
table_changed:
|
2016-12-07 09:16:13 +00:00
|
|
|
/*
|
|
|
|
* The prefix always takes precedence and forces a switch to the prefix
|
|
|
|
* table, unless we are already there.
|
|
|
|
*/
|
2023-12-27 20:23:59 +00:00
|
|
|
prefix = (key_code)options_get_number(s->options, "prefix");
|
|
|
|
prefix2 = (key_code)options_get_number(s->options, "prefix2");
|
2020-05-16 16:50:55 +00:00
|
|
|
key0 = (key & (KEYC_MASK_KEY|KEYC_MASK_MODIFIERS));
|
2023-12-27 20:23:59 +00:00
|
|
|
if ((key0 == (prefix & (KEYC_MASK_KEY|KEYC_MASK_MODIFIERS)) ||
|
|
|
|
key0 == (prefix2 & (KEYC_MASK_KEY|KEYC_MASK_MODIFIERS))) &&
|
2016-12-07 09:16:13 +00:00
|
|
|
strcmp(table->name, "prefix") != 0) {
|
|
|
|
server_client_set_key_table(c, "prefix");
|
|
|
|
server_status_client(c);
|
2019-05-03 14:51:30 +00:00
|
|
|
goto out;
|
2016-12-07 09:16:13 +00:00
|
|
|
}
|
2017-06-06 15:49:35 +00:00
|
|
|
flags = c->flags;
|
2016-12-07 09:16:13 +00:00
|
|
|
|
2018-11-07 08:06:28 +00:00
|
|
|
try_again:
|
2017-04-21 16:04:18 +00:00
|
|
|
/* Log key table. */
|
|
|
|
if (wp == NULL)
|
|
|
|
log_debug("key table %s (no pane)", table->name);
|
|
|
|
else
|
|
|
|
log_debug("key table %s (pane %%%u)", table->name, wp->id);
|
2017-04-21 19:33:07 +00:00
|
|
|
if (c->flags & CLIENT_REPEAT)
|
|
|
|
log_debug("currently repeating");
|
2017-04-21 16:04:18 +00:00
|
|
|
|
2015-04-20 15:34:56 +00:00
|
|
|
/* Try to see if there is a key binding in the current table. */
|
2018-08-02 11:44:07 +00:00
|
|
|
bd = key_bindings_get(table, key0);
|
2015-04-20 15:34:56 +00:00
|
|
|
if (bd != NULL) {
|
|
|
|
/*
|
|
|
|
* Key was matched in this table. If currently repeating but a
|
|
|
|
* non-repeating binding was found, stop repeating and try
|
|
|
|
* again in the root table.
|
|
|
|
*/
|
2017-04-21 14:01:19 +00:00
|
|
|
if ((c->flags & CLIENT_REPEAT) &&
|
|
|
|
(~bd->flags & KEY_BINDING_REPEAT)) {
|
2018-11-07 08:06:28 +00:00
|
|
|
log_debug("found in key table %s (not repeating)",
|
|
|
|
table->name);
|
2015-12-12 18:32:24 +00:00
|
|
|
server_client_set_key_table(c, NULL);
|
2018-11-07 08:06:28 +00:00
|
|
|
first = table = c->keytable;
|
2015-04-20 15:34:56 +00:00
|
|
|
c->flags &= ~CLIENT_REPEAT;
|
2013-03-21 16:14:09 +00:00
|
|
|
server_status_client(c);
|
2018-07-17 18:02:40 +00:00
|
|
|
goto table_changed;
|
2009-11-05 08:45:08 +00:00
|
|
|
}
|
2017-04-21 16:04:18 +00:00
|
|
|
log_debug("found in key table %s", table->name);
|
2013-01-15 22:55:29 +00:00
|
|
|
|
2015-04-20 15:34:56 +00:00
|
|
|
/*
|
|
|
|
* Take a reference to this table to make sure the key binding
|
|
|
|
* doesn't disappear.
|
|
|
|
*/
|
|
|
|
table->references++;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If this is a repeating key, start the timer. Otherwise reset
|
|
|
|
* the client back to the root table.
|
|
|
|
*/
|
2015-10-27 15:58:42 +00:00
|
|
|
xtimeout = options_get_number(s->options, "repeat-time");
|
2017-04-21 14:01:19 +00:00
|
|
|
if (xtimeout != 0 && (bd->flags & KEY_BINDING_REPEAT)) {
|
2015-04-20 15:34:56 +00:00
|
|
|
c->flags |= CLIENT_REPEAT;
|
|
|
|
|
|
|
|
tv.tv_sec = xtimeout / 1000;
|
|
|
|
tv.tv_usec = (xtimeout % 1000) * 1000L;
|
|
|
|
evtimer_del(&c->repeat_timer);
|
|
|
|
evtimer_add(&c->repeat_timer, &tv);
|
|
|
|
} else {
|
2009-11-05 08:45:08 +00:00
|
|
|
c->flags &= ~CLIENT_REPEAT;
|
2015-12-12 18:32:24 +00:00
|
|
|
server_client_set_key_table(c, NULL);
|
2009-11-05 08:45:08 +00:00
|
|
|
}
|
2015-04-20 15:34:56 +00:00
|
|
|
server_status_client(c);
|
|
|
|
|
2017-04-22 08:56:24 +00:00
|
|
|
/* Execute the key binding. */
|
2020-04-13 14:46:04 +00:00
|
|
|
key_bindings_dispatch(bd, item, c, event, &fs);
|
2015-04-20 15:34:56 +00:00
|
|
|
key_bindings_unref_table(table);
|
2019-05-03 14:51:30 +00:00
|
|
|
goto out;
|
2009-11-05 08:45:08 +00:00
|
|
|
}
|
|
|
|
|
2015-04-20 15:34:56 +00:00
|
|
|
/*
|
2018-07-17 18:02:40 +00:00
|
|
|
* No match, try the ANY key.
|
2015-04-20 15:34:56 +00:00
|
|
|
*/
|
2018-07-16 08:48:22 +00:00
|
|
|
if (key0 != KEYC_ANY) {
|
|
|
|
key0 = KEYC_ANY;
|
2018-07-17 18:02:40 +00:00
|
|
|
goto try_again;
|
2018-07-16 08:48:22 +00:00
|
|
|
}
|
2018-07-17 18:02:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* No match in this table. If not in the root table or if repeating,
|
|
|
|
* switch the client back to the root table and try again.
|
|
|
|
*/
|
|
|
|
log_debug("not found in key table %s", table->name);
|
2017-04-21 16:04:18 +00:00
|
|
|
if (!server_client_is_default_key_table(c, table) ||
|
|
|
|
(c->flags & CLIENT_REPEAT)) {
|
2018-11-07 08:06:28 +00:00
|
|
|
log_debug("trying in root table");
|
2015-12-12 18:32:24 +00:00
|
|
|
server_client_set_key_table(c, NULL);
|
2018-11-07 08:06:28 +00:00
|
|
|
table = c->keytable;
|
|
|
|
if (c->flags & CLIENT_REPEAT)
|
|
|
|
first = table;
|
2009-11-05 08:45:08 +00:00
|
|
|
c->flags &= ~CLIENT_REPEAT;
|
2015-04-20 15:34:56 +00:00
|
|
|
server_status_client(c);
|
2018-07-17 18:02:40 +00:00
|
|
|
goto table_changed;
|
2009-11-05 08:45:08 +00:00
|
|
|
}
|
|
|
|
|
2017-04-21 16:04:18 +00:00
|
|
|
/*
|
|
|
|
* No match in the root table either. If this wasn't the first table
|
|
|
|
* tried, don't pass the key to the pane.
|
|
|
|
*/
|
2017-06-06 15:49:35 +00:00
|
|
|
if (first != table && (~flags & CLIENT_REPEAT)) {
|
2015-12-12 18:32:24 +00:00
|
|
|
server_client_set_key_table(c, NULL);
|
2015-04-20 15:34:56 +00:00
|
|
|
server_status_client(c);
|
2019-05-03 14:51:30 +00:00
|
|
|
goto out;
|
2009-11-05 08:45:08 +00:00
|
|
|
}
|
|
|
|
|
2018-07-17 18:02:40 +00:00
|
|
|
forward_key:
|
2015-10-26 23:16:18 +00:00
|
|
|
if (c->flags & CLIENT_READONLY)
|
2019-05-03 14:51:30 +00:00
|
|
|
goto out;
|
2015-10-26 23:16:18 +00:00
|
|
|
if (wp != NULL)
|
2018-12-18 13:20:44 +00:00
|
|
|
window_pane_key(wp, c, s, wl, key, m);
|
2019-05-03 14:51:30 +00:00
|
|
|
|
|
|
|
out:
|
2020-05-22 15:43:38 +00:00
|
|
|
if (s != NULL && key != KEYC_FOCUS_OUT)
|
2019-09-19 09:02:30 +00:00
|
|
|
server_client_update_latest(c);
|
2019-05-03 14:51:30 +00:00
|
|
|
free(event);
|
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-11-05 08:45:08 +00:00
|
|
|
}
|
|
|
|
|
2019-05-07 11:24:03 +00:00
|
|
|
/* Handle a key event. */
|
|
|
|
int
|
|
|
|
server_client_handle_key(struct client *c, struct key_event *event)
|
|
|
|
{
|
|
|
|
struct session *s = c->session;
|
|
|
|
struct cmdq_item *item;
|
|
|
|
|
|
|
|
/* Check the client is good to accept input. */
|
2020-01-28 08:06:11 +00:00
|
|
|
if (s == NULL || (c->flags & CLIENT_UNATTACHEDFLAGS))
|
2019-05-07 11:24:03 +00:00
|
|
|
return (0);
|
|
|
|
|
|
|
|
/*
|
2019-07-02 20:09:19 +00:00
|
|
|
* Key presses in overlay mode and the command prompt are a special
|
|
|
|
* case. The queue might be blocked so they need to be processed
|
|
|
|
* immediately rather than queued.
|
2019-05-07 11:24:03 +00:00
|
|
|
*/
|
2019-07-02 20:09:19 +00:00
|
|
|
if (~c->flags & CLIENT_READONLY) {
|
2021-04-12 09:36:12 +00:00
|
|
|
if (c->message_string != NULL) {
|
|
|
|
if (c->message_ignore_keys)
|
|
|
|
return (0);
|
|
|
|
status_message_clear(c);
|
|
|
|
}
|
2019-07-02 20:09:19 +00:00
|
|
|
if (c->overlay_key != NULL) {
|
2021-08-13 18:54:54 +00:00
|
|
|
switch (c->overlay_key(c, c->overlay_data, event)) {
|
2019-07-02 20:09:19 +00:00
|
|
|
case 0:
|
|
|
|
return (0);
|
|
|
|
case 1:
|
|
|
|
server_client_clear_overlay(c);
|
|
|
|
return (0);
|
|
|
|
}
|
2019-06-26 18:28:31 +00:00
|
|
|
}
|
2019-07-17 17:46:51 +00:00
|
|
|
server_client_clear_overlay(c);
|
2020-05-16 15:06:03 +00:00
|
|
|
if (c->prompt_string != NULL) {
|
|
|
|
if (status_prompt_key(c, event->key) == 0)
|
|
|
|
return (0);
|
|
|
|
}
|
2019-05-07 11:24:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add the key to the queue so it happens after any commands queued by
|
|
|
|
* previous keys.
|
|
|
|
*/
|
|
|
|
item = cmdq_get_callback(server_client_key_callback, event);
|
|
|
|
cmdq_append(c, item);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
2009-10-22 20:04:21 +00:00
|
|
|
/* Client functions that need to happen every loop. */
|
|
|
|
void
|
|
|
|
server_client_loop(void)
|
|
|
|
{
|
|
|
|
struct client *c;
|
|
|
|
struct window *w;
|
|
|
|
struct window_pane *wp;
|
2020-05-16 16:50:55 +00:00
|
|
|
|
|
|
|
/* Check for window resize. This is done before redrawing. */
|
|
|
|
RB_FOREACH(w, windows, &windows)
|
|
|
|
server_client_check_window_resize(w);
|
2009-10-22 20:04:21 +00:00
|
|
|
|
2020-05-16 16:50:55 +00:00
|
|
|
/* Check clients. */
|
2015-04-24 23:17:11 +00:00
|
|
|
TAILQ_FOREACH(c, &clients, entry) {
|
2010-07-24 20:11:59 +00:00
|
|
|
server_client_check_exit(c);
|
|
|
|
if (c->session != NULL) {
|
2020-12-03 07:12:11 +00:00
|
|
|
server_client_check_modes(c);
|
2010-07-24 20:11:59 +00:00
|
|
|
server_client_check_redraw(c);
|
|
|
|
server_client_reset_state(c);
|
|
|
|
}
|
2009-10-22 20:04:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Any windows will have been redrawn as part of clients, so clear
|
2021-08-13 06:52:51 +00:00
|
|
|
* their flags now.
|
2009-10-22 20:04:21 +00:00
|
|
|
*/
|
2015-04-22 15:30:11 +00:00
|
|
|
RB_FOREACH(w, windows, &windows) {
|
2013-03-24 09:28:59 +00:00
|
|
|
TAILQ_FOREACH(wp, &w->panes, entry) {
|
2019-06-20 19:29:38 +00:00
|
|
|
if (wp->fd != -1) {
|
2020-05-16 16:50:55 +00:00
|
|
|
server_client_check_pane_resize(wp);
|
2020-05-21 07:24:13 +00:00
|
|
|
server_client_check_pane_buffer(wp);
|
2013-04-21 21:32:00 +00:00
|
|
|
}
|
2020-04-18 21:35:32 +00:00
|
|
|
wp->flags &= ~PANE_REDRAW;
|
2013-03-24 09:28:59 +00:00
|
|
|
}
|
2015-08-29 08:54:41 +00:00
|
|
|
check_window_name(w);
|
2013-03-24 09:28:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-16 16:50:55 +00:00
|
|
|
/* Check if window needs to be resized. */
|
|
|
|
static void
|
|
|
|
server_client_check_window_resize(struct window *w)
|
|
|
|
{
|
|
|
|
struct winlink *wl;
|
|
|
|
|
|
|
|
if (~w->flags & WINDOW_RESIZE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
TAILQ_FOREACH(wl, &w->winlinks, wentry) {
|
|
|
|
if (wl->session->attached != 0 && wl->session->curw == wl)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (wl == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
log_debug("%s: resizing window @%u", __func__, w->id);
|
|
|
|
resize_window(w, w->new_sx, w->new_sy, w->new_xpixel, w->new_ypixel);
|
|
|
|
}
|
|
|
|
|
2020-06-05 11:20:51 +00:00
|
|
|
/* Resize timer event. */
|
2016-09-28 08:30:44 +00:00
|
|
|
static void
|
2020-06-05 11:20:51 +00:00
|
|
|
server_client_resize_timer(__unused int fd, __unused short events, void *data)
|
2013-03-24 09:28:59 +00:00
|
|
|
{
|
2020-06-05 11:20:51 +00:00
|
|
|
struct window_pane *wp = data;
|
2017-05-31 10:15:51 +00:00
|
|
|
|
2020-06-05 11:20:51 +00:00
|
|
|
log_debug("%s: %%%u resize timer expired", __func__, wp->id);
|
|
|
|
evtimer_del(&wp->resize_timer);
|
2013-03-24 09:28:59 +00:00
|
|
|
}
|
|
|
|
|
2016-09-28 08:30:44 +00:00
|
|
|
/* Check if pane should be resized. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2020-05-16 16:50:55 +00:00
|
|
|
server_client_check_pane_resize(struct window_pane *wp)
|
2016-09-28 08:30:44 +00:00
|
|
|
{
|
2021-06-10 07:33:41 +00:00
|
|
|
struct window_pane_resize *r;
|
|
|
|
struct window_pane_resize *r1;
|
|
|
|
struct window_pane_resize *first;
|
|
|
|
struct window_pane_resize *last;
|
|
|
|
struct timeval tv = { .tv_usec = 250000 };
|
2020-06-05 11:20:51 +00:00
|
|
|
|
2021-06-10 07:33:41 +00:00
|
|
|
if (TAILQ_EMPTY(&wp->resize_queue))
|
2016-09-28 08:30:44 +00:00
|
|
|
return;
|
|
|
|
|
2021-06-10 07:33:41 +00:00
|
|
|
if (!event_initialized(&wp->resize_timer))
|
|
|
|
evtimer_set(&wp->resize_timer, server_client_resize_timer, wp);
|
|
|
|
if (evtimer_pending(&wp->resize_timer, NULL))
|
2020-06-05 11:20:51 +00:00
|
|
|
return;
|
2021-06-10 07:33:41 +00:00
|
|
|
|
|
|
|
log_debug("%s: %%%u needs to be resized", __func__, wp->id);
|
|
|
|
TAILQ_FOREACH(r, &wp->resize_queue, entry) {
|
|
|
|
log_debug("queued resize: %ux%u -> %ux%u", r->osx, r->osy,
|
|
|
|
r->sx, r->sy);
|
2020-06-05 11:20:51 +00:00
|
|
|
}
|
2016-09-28 08:30:44 +00:00
|
|
|
|
2021-06-10 07:33:41 +00:00
|
|
|
/*
|
|
|
|
* There are three cases that matter:
|
|
|
|
*
|
|
|
|
* - Only one resize. It can just be applied.
|
|
|
|
*
|
|
|
|
* - Multiple resizes and the ending size is different from the
|
|
|
|
* starting size. We can discard all resizes except the most recent.
|
|
|
|
*
|
|
|
|
* - Multiple resizes and the ending size is the same as the starting
|
|
|
|
* size. We must resize at least twice to force the application to
|
|
|
|
* redraw. So apply the first and leave the last on the queue for
|
|
|
|
* next time.
|
|
|
|
*/
|
|
|
|
first = TAILQ_FIRST(&wp->resize_queue);
|
|
|
|
last = TAILQ_LAST(&wp->resize_queue, window_pane_resizes);
|
|
|
|
if (first == last) {
|
|
|
|
/* Only one resize. */
|
|
|
|
window_pane_send_resize(wp, first->sx, first->sy);
|
|
|
|
TAILQ_REMOVE(&wp->resize_queue, first, entry);
|
|
|
|
free(first);
|
|
|
|
} else if (last->sx != first->osx || last->sy != first->osy) {
|
|
|
|
/* Multiple resizes ending up with a different size. */
|
|
|
|
window_pane_send_resize(wp, last->sx, last->sy);
|
|
|
|
TAILQ_FOREACH_SAFE(r, &wp->resize_queue, entry, r1) {
|
|
|
|
TAILQ_REMOVE(&wp->resize_queue, r, entry);
|
|
|
|
free(r);
|
|
|
|
}
|
2020-06-05 11:20:51 +00:00
|
|
|
} else {
|
|
|
|
/*
|
2021-06-10 07:33:41 +00:00
|
|
|
* Multiple resizes ending up with the same size. There will
|
|
|
|
* not be more than one to the same size in succession so we
|
|
|
|
* can just use the last-but-one on the list and leave the last
|
|
|
|
* for later. We reduce the time until the next check to avoid
|
|
|
|
* a long delay between the resizes.
|
2020-06-05 11:20:51 +00:00
|
|
|
*/
|
2021-06-10 07:33:41 +00:00
|
|
|
r = TAILQ_PREV(last, window_pane_resizes, entry);
|
|
|
|
window_pane_send_resize(wp, r->sx, r->sy);
|
|
|
|
TAILQ_FOREACH_SAFE(r, &wp->resize_queue, entry, r1) {
|
|
|
|
if (r == last)
|
|
|
|
break;
|
|
|
|
TAILQ_REMOVE(&wp->resize_queue, r, entry);
|
|
|
|
free(r);
|
2020-06-05 11:20:51 +00:00
|
|
|
}
|
2021-06-10 07:33:41 +00:00
|
|
|
tv.tv_usec = 10000;
|
2020-06-05 11:20:51 +00:00
|
|
|
}
|
2021-06-10 07:33:41 +00:00
|
|
|
evtimer_add(&wp->resize_timer, &tv);
|
2016-09-28 08:30:44 +00:00
|
|
|
}
|
|
|
|
|
2020-05-21 07:24:13 +00:00
|
|
|
/* Check pane buffer size. */
|
|
|
|
static void
|
|
|
|
server_client_check_pane_buffer(struct window_pane *wp)
|
|
|
|
{
|
|
|
|
struct evbuffer *evb = wp->event->input;
|
|
|
|
size_t minimum;
|
|
|
|
struct client *c;
|
2020-05-22 11:07:04 +00:00
|
|
|
struct window_pane_offset *wpo;
|
|
|
|
int off = 1, flag;
|
|
|
|
u_int attached_clients = 0;
|
2020-06-01 20:58:42 +00:00
|
|
|
size_t new_size;
|
2020-05-21 07:24:13 +00:00
|
|
|
|
|
|
|
/*
|
2020-06-01 09:43:00 +00:00
|
|
|
* Work out the minimum used size. This is the most that can be removed
|
|
|
|
* from the buffer.
|
2020-05-21 07:24:13 +00:00
|
|
|
*/
|
2020-06-01 09:43:00 +00:00
|
|
|
minimum = wp->offset.used;
|
|
|
|
if (wp->pipe_fd != -1 && wp->pipe_offset.used < minimum)
|
|
|
|
minimum = wp->pipe_offset.used;
|
2020-05-21 07:24:13 +00:00
|
|
|
TAILQ_FOREACH(c, &clients, entry) {
|
|
|
|
if (c->session == NULL)
|
|
|
|
continue;
|
2020-05-22 11:07:04 +00:00
|
|
|
attached_clients++;
|
|
|
|
|
|
|
|
if (~c->flags & CLIENT_CONTROL) {
|
|
|
|
off = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
wpo = control_pane_offset(c, wp, &flag);
|
|
|
|
if (wpo == NULL) {
|
2022-07-19 07:10:13 +00:00
|
|
|
if (!flag)
|
|
|
|
off = 0;
|
2020-05-21 07:24:13 +00:00
|
|
|
continue;
|
|
|
|
}
|
2020-05-22 11:07:04 +00:00
|
|
|
if (!flag)
|
2020-05-21 07:24:13 +00:00
|
|
|
off = 0;
|
2020-05-22 11:07:04 +00:00
|
|
|
|
2020-06-01 20:58:42 +00:00
|
|
|
window_pane_get_new_data(wp, wpo, &new_size);
|
|
|
|
log_debug("%s: %s has %zu bytes used and %zu left for %%%u",
|
|
|
|
__func__, c->name, wpo->used - wp->base_offset, new_size,
|
|
|
|
wp->id);
|
|
|
|
if (wpo->used < minimum)
|
2020-06-01 09:43:00 +00:00
|
|
|
minimum = wpo->used;
|
2020-05-21 07:24:13 +00:00
|
|
|
}
|
2020-05-22 11:07:04 +00:00
|
|
|
if (attached_clients == 0)
|
|
|
|
off = 0;
|
2020-05-21 07:24:13 +00:00
|
|
|
minimum -= wp->base_offset;
|
|
|
|
if (minimum == 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/* Drain the buffer. */
|
2020-06-01 09:43:00 +00:00
|
|
|
log_debug("%s: %%%u has %zu minimum (of %zu) bytes used", __func__,
|
|
|
|
wp->id, minimum, EVBUFFER_LENGTH(evb));
|
2020-05-21 07:24:13 +00:00
|
|
|
evbuffer_drain(evb, minimum);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Adjust the base offset. If it would roll over, all the offsets into
|
|
|
|
* the buffer need to be adjusted.
|
|
|
|
*/
|
|
|
|
if (wp->base_offset > SIZE_MAX - minimum) {
|
|
|
|
log_debug("%s: %%%u base offset has wrapped", __func__, wp->id);
|
|
|
|
wp->offset.used -= wp->base_offset;
|
2020-06-01 09:43:00 +00:00
|
|
|
if (wp->pipe_fd != -1)
|
2020-05-21 07:24:13 +00:00
|
|
|
wp->pipe_offset.used -= wp->base_offset;
|
|
|
|
TAILQ_FOREACH(c, &clients, entry) {
|
|
|
|
if (c->session == NULL || (~c->flags & CLIENT_CONTROL))
|
|
|
|
continue;
|
2020-05-22 11:07:04 +00:00
|
|
|
wpo = control_pane_offset(c, wp, &flag);
|
2020-06-01 09:43:00 +00:00
|
|
|
if (wpo != NULL && !flag)
|
2020-05-22 11:07:04 +00:00
|
|
|
wpo->used -= wp->base_offset;
|
2020-05-21 07:24:13 +00:00
|
|
|
}
|
|
|
|
wp->base_offset = minimum;
|
|
|
|
} else
|
|
|
|
wp->base_offset += minimum;
|
|
|
|
|
|
|
|
out:
|
|
|
|
/*
|
|
|
|
* If there is data remaining, and there are no clients able to consume
|
2020-05-26 08:41:47 +00:00
|
|
|
* it, do not read any more. This is true when there are attached
|
|
|
|
* clients, all of which are control clients which are not able to
|
|
|
|
* accept any more data.
|
2020-05-21 07:24:13 +00:00
|
|
|
*/
|
2020-06-01 09:43:00 +00:00
|
|
|
log_debug("%s: pane %%%u is %s", __func__, wp->id, off ? "off" : "on");
|
2020-05-21 07:24:13 +00:00
|
|
|
if (off)
|
|
|
|
bufferevent_disable(wp->event, EV_READ);
|
|
|
|
else
|
|
|
|
bufferevent_enable(wp->event, EV_READ);
|
|
|
|
}
|
|
|
|
|
2009-11-05 08:45:08 +00:00
|
|
|
/*
|
|
|
|
* Update cursor position and mode settings. The scroll region and attributes
|
|
|
|
* are cleared when idle (waiting for an event) as this is the most likely time
|
|
|
|
* a user may interrupt tmux, for example with ~^Z in ssh(1). This is a
|
|
|
|
* compromise between excessive resets and likelihood of an interrupt.
|
|
|
|
*
|
|
|
|
* tty_region/tty_reset/tty_update_mode already take care of not resetting
|
|
|
|
* things that are already in their default state.
|
|
|
|
*/
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2009-11-05 08:45:08 +00:00
|
|
|
server_client_reset_state(struct client *c)
|
2009-10-22 19:41:51 +00:00
|
|
|
{
|
2020-04-21 06:34:13 +00:00
|
|
|
struct tty *tty = &c->tty;
|
2009-11-05 08:45:08 +00:00
|
|
|
struct window *w = c->session->curw->window;
|
2020-05-16 16:20:59 +00:00
|
|
|
struct window_pane *wp = server_client_get_pane(c), *loop;
|
2020-05-16 15:34:08 +00:00
|
|
|
struct screen *s = NULL;
|
2015-10-27 15:58:42 +00:00
|
|
|
struct options *oo = c->session->options;
|
2021-11-15 10:58:13 +00:00
|
|
|
int mode = 0, cursor, flags, n;
|
Support for windows larger than visible on the attached client. This has
been a limitation for a long time.
There are two new options, window-size and default-size, and a new
command, resize-window. The force-width and force-height options and the
session_width and session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and manual
means that it does not automatically resize windows. The default is
currently largest but this may change. aggressive-resize modifies the
choice of session for largest and smallest as it did before.
If a window is in a session attached to a client that is too small, only
part of the window is shown. tmux attempts to keep the cursor visible,
so the part of the window displayed is changed as the cursor moves (with
a small delay, to try and avoid excess redrawing when applications
redraw status lines or similar that are not currently visible). The
offset of the visible portion of the window is shown in status-right.
Drawing windows which are larger than the client is not as efficient as
those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If it
is used, the window-size option is automatically set to manual for the
window (undo this with "setw -u window-size"). resize-window works in a
similar way to resize-pane (-U -D -L -R -x -y flags) but also has -a and
-A flags. -a sets the window to the size of the smallest client (what it
would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use resize-window
-x or -y, and "setw -u window-size" to revert to automatic sizing..
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications to
complain and much higher memory use if making a window excessively
big. The minimum size is the size required for the current layout
including borders.
The refresh-client command can be used to pan around a window, -U -D -L
-R moves up, down, left or right and -c returns to automatic cursor
tracking. The position is reset when the current window is changed.
2018-10-18 08:38:01 +00:00
|
|
|
u_int cx = 0, cy = 0, ox, oy, sx, sy;
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2016-04-30 18:59:02 +00:00
|
|
|
if (c->flags & (CLIENT_CONTROL|CLIENT_SUSPENDED))
|
2013-03-21 18:47:01 +00:00
|
|
|
return;
|
|
|
|
|
2020-04-21 06:34:13 +00:00
|
|
|
/* Disable the block flag. */
|
|
|
|
flags = (tty->flags & TTY_BLOCK);
|
|
|
|
tty->flags &= ~TTY_BLOCK;
|
|
|
|
|
2020-03-24 08:09:43 +00:00
|
|
|
/* Get mode from overlay if any, else from screen. */
|
|
|
|
if (c->overlay_draw != NULL) {
|
2020-05-16 15:34:08 +00:00
|
|
|
if (c->overlay_mode != NULL)
|
2021-08-13 18:54:54 +00:00
|
|
|
s = c->overlay_mode(c, c->overlay_data, &cx, &cy);
|
2020-05-16 15:34:08 +00:00
|
|
|
} else
|
2020-03-24 08:09:43 +00:00
|
|
|
s = wp->screen;
|
2020-05-16 15:34:08 +00:00
|
|
|
if (s != NULL)
|
2020-03-24 08:09:43 +00:00
|
|
|
mode = s->mode;
|
2021-06-10 07:43:44 +00:00
|
|
|
if (log_get_level() != 0) {
|
|
|
|
log_debug("%s: client %s mode %s", __func__, c->name,
|
|
|
|
screen_mode_to_string(mode));
|
|
|
|
}
|
2020-03-24 08:09:43 +00:00
|
|
|
|
|
|
|
/* Reset region and margin. */
|
2020-04-21 06:34:13 +00:00
|
|
|
tty_region_off(tty);
|
|
|
|
tty_margin_off(tty);
|
2009-10-22 19:41:51 +00:00
|
|
|
|
Support for windows larger than visible on the attached client. This has
been a limitation for a long time.
There are two new options, window-size and default-size, and a new
command, resize-window. The force-width and force-height options and the
session_width and session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and manual
means that it does not automatically resize windows. The default is
currently largest but this may change. aggressive-resize modifies the
choice of session for largest and smallest as it did before.
If a window is in a session attached to a client that is too small, only
part of the window is shown. tmux attempts to keep the cursor visible,
so the part of the window displayed is changed as the cursor moves (with
a small delay, to try and avoid excess redrawing when applications
redraw status lines or similar that are not currently visible). The
offset of the visible portion of the window is shown in status-right.
Drawing windows which are larger than the client is not as efficient as
those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If it
is used, the window-size option is automatically set to manual for the
window (undo this with "setw -u window-size"). resize-window works in a
similar way to resize-pane (-U -D -L -R -x -y flags) but also has -a and
-A flags. -a sets the window to the size of the smallest client (what it
would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use resize-window
-x or -y, and "setw -u window-size" to revert to automatic sizing..
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications to
complain and much higher memory use if making a window excessively
big. The minimum size is the size required for the current layout
including borders.
The refresh-client command can be used to pan around a window, -U -D -L
-R moves up, down, left or right and -c returns to automatic cursor
tracking. The position is reset when the current window is changed.
2018-10-18 08:38:01 +00:00
|
|
|
/* Move cursor to pane cursor and offset. */
|
2021-11-15 10:58:13 +00:00
|
|
|
if (c->prompt_string != NULL) {
|
|
|
|
n = options_get_number(c->session->options, "status-position");
|
|
|
|
if (n == 0)
|
|
|
|
cy = 0;
|
|
|
|
else {
|
|
|
|
n = status_line_size(c);
|
|
|
|
if (n == 0)
|
|
|
|
cy = tty->sy - 1;
|
|
|
|
else
|
|
|
|
cy = tty->sy - n;
|
|
|
|
}
|
|
|
|
cx = c->prompt_cursor;
|
|
|
|
mode &= ~MODE_CURSOR;
|
|
|
|
} else if (c->overlay_draw == NULL) {
|
2020-03-24 08:09:43 +00:00
|
|
|
cursor = 0;
|
2020-04-21 06:34:13 +00:00
|
|
|
tty_window_offset(tty, &ox, &oy, &sx, &sy);
|
2020-03-24 08:09:43 +00:00
|
|
|
if (wp->xoff + s->cx >= ox && wp->xoff + s->cx <= ox + sx &&
|
|
|
|
wp->yoff + s->cy >= oy && wp->yoff + s->cy <= oy + sy) {
|
|
|
|
cursor = 1;
|
|
|
|
|
|
|
|
cx = wp->xoff + s->cx - ox;
|
|
|
|
cy = wp->yoff + s->cy - oy;
|
|
|
|
|
|
|
|
if (status_at_line(c) == 0)
|
|
|
|
cy += status_line_size(c);
|
|
|
|
}
|
|
|
|
if (!cursor)
|
|
|
|
mode &= ~MODE_CURSOR;
|
Support for windows larger than visible on the attached client. This has
been a limitation for a long time.
There are two new options, window-size and default-size, and a new
command, resize-window. The force-width and force-height options and the
session_width and session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and manual
means that it does not automatically resize windows. The default is
currently largest but this may change. aggressive-resize modifies the
choice of session for largest and smallest as it did before.
If a window is in a session attached to a client that is too small, only
part of the window is shown. tmux attempts to keep the cursor visible,
so the part of the window displayed is changed as the cursor moves (with
a small delay, to try and avoid excess redrawing when applications
redraw status lines or similar that are not currently visible). The
offset of the visible portion of the window is shown in status-right.
Drawing windows which are larger than the client is not as efficient as
those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If it
is used, the window-size option is automatically set to manual for the
window (undo this with "setw -u window-size"). resize-window works in a
similar way to resize-pane (-U -D -L -R -x -y flags) but also has -a and
-A flags. -a sets the window to the size of the smallest client (what it
would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use resize-window
-x or -y, and "setw -u window-size" to revert to automatic sizing..
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications to
complain and much higher memory use if making a window excessively
big. The minimum size is the size required for the current layout
including borders.
The refresh-client command can be used to pan around a window, -U -D -L
-R moves up, down, left or right and -c returns to automatic cursor
tracking. The position is reset when the current window is changed.
2018-10-18 08:38:01 +00:00
|
|
|
}
|
2020-04-21 06:34:13 +00:00
|
|
|
log_debug("%s: cursor to %u,%u", __func__, cx, cy);
|
|
|
|
tty_cursor(tty, cx, cy);
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2011-05-08 20:34:12 +00:00
|
|
|
/*
|
2015-04-19 21:34:21 +00:00
|
|
|
* Set mouse mode if requested. To support dragging, always use button
|
|
|
|
* mode.
|
2011-05-08 20:34:12 +00:00
|
|
|
*/
|
2017-02-01 09:55:07 +00:00
|
|
|
if (options_get_number(oo, "mouse")) {
|
2020-03-24 08:09:43 +00:00
|
|
|
if (c->overlay_draw == NULL) {
|
2020-10-30 08:55:56 +00:00
|
|
|
mode &= ~ALL_MOUSE_MODES;
|
2020-03-24 08:09:43 +00:00
|
|
|
TAILQ_FOREACH(loop, &w->panes, entry) {
|
|
|
|
if (loop->screen->mode & MODE_MOUSE_ALL)
|
|
|
|
mode |= MODE_MOUSE_ALL;
|
|
|
|
}
|
2017-02-01 09:55:07 +00:00
|
|
|
}
|
|
|
|
if (~mode & MODE_MOUSE_ALL)
|
|
|
|
mode |= MODE_MOUSE_BUTTON;
|
|
|
|
}
|
2011-01-03 23:35:21 +00:00
|
|
|
|
2017-03-09 22:00:46 +00:00
|
|
|
/* Clear bracketed paste mode if at the prompt. */
|
2020-03-24 08:09:43 +00:00
|
|
|
if (c->overlay_draw == NULL && c->prompt_string != NULL)
|
2017-03-09 22:00:46 +00:00
|
|
|
mode &= ~MODE_BRACKETPASTE;
|
|
|
|
|
2011-01-03 23:35:21 +00:00
|
|
|
/* Set the terminal mode and reset attributes. */
|
2020-04-21 06:34:13 +00:00
|
|
|
tty_update_mode(tty, mode, s);
|
|
|
|
tty_reset(tty);
|
2020-04-20 14:59:31 +00:00
|
|
|
|
2020-04-21 06:34:13 +00:00
|
|
|
/* All writing must be done, send a sync end (if it was started). */
|
|
|
|
tty_sync_end(tty);
|
|
|
|
tty->flags |= flags;
|
2009-10-22 19:41:51 +00:00
|
|
|
}
|
|
|
|
|
2009-11-05 00:05:00 +00:00
|
|
|
/* Repeat time callback. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2015-11-18 14:27:44 +00:00
|
|
|
server_client_repeat_timer(__unused int fd, __unused short events, void *data)
|
2009-11-05 00:05:00 +00:00
|
|
|
{
|
|
|
|
struct client *c = data;
|
|
|
|
|
2013-03-21 16:14:09 +00:00
|
|
|
if (c->flags & CLIENT_REPEAT) {
|
2015-12-12 18:32:24 +00:00
|
|
|
server_client_set_key_table(c, NULL);
|
2015-04-20 15:34:56 +00:00
|
|
|
c->flags &= ~CLIENT_REPEAT;
|
|
|
|
server_status_client(c);
|
2013-03-21 16:14:09 +00:00
|
|
|
}
|
2009-11-05 00:05:00 +00:00
|
|
|
}
|
|
|
|
|
2016-10-11 09:30:36 +00:00
|
|
|
/* Double-click callback. */
|
|
|
|
static void
|
|
|
|
server_client_click_timer(__unused int fd, __unused short events, void *data)
|
|
|
|
{
|
2020-03-12 13:16:16 +00:00
|
|
|
struct client *c = data;
|
|
|
|
struct key_event *event;
|
|
|
|
|
|
|
|
log_debug("click timer expired");
|
2016-10-11 09:30:36 +00:00
|
|
|
|
2020-03-12 13:16:16 +00:00
|
|
|
if (c->flags & CLIENT_TRIPLECLICK) {
|
|
|
|
/*
|
|
|
|
* Waiting for a third click that hasn't happened, so this must
|
|
|
|
* have been a double click.
|
|
|
|
*/
|
|
|
|
event = xmalloc(sizeof *event);
|
|
|
|
event->key = KEYC_DOUBLECLICK;
|
|
|
|
memcpy(&event->m, &c->click_event, sizeof event->m);
|
|
|
|
if (!server_client_handle_key(c, event))
|
|
|
|
free(event);
|
|
|
|
}
|
2016-10-11 09:30:36 +00:00
|
|
|
c->flags &= ~(CLIENT_DOUBLECLICK|CLIENT_TRIPLECLICK);
|
|
|
|
}
|
|
|
|
|
2010-07-24 20:11:59 +00:00
|
|
|
/* Check if client should be exited. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2010-07-24 20:11:59 +00:00
|
|
|
server_client_check_exit(struct client *c)
|
|
|
|
{
|
2019-12-12 11:39:56 +00:00
|
|
|
struct client_file *cf;
|
2020-06-01 09:43:00 +00:00
|
|
|
const char *name = c->exit_session;
|
2020-06-10 07:27:10 +00:00
|
|
|
char *data;
|
|
|
|
size_t size, msize;
|
2019-12-12 11:39:56 +00:00
|
|
|
|
2020-06-02 08:17:27 +00:00
|
|
|
if (c->flags & (CLIENT_DEAD|CLIENT_EXITED))
|
|
|
|
return;
|
|
|
|
if (~c->flags & CLIENT_EXIT)
|
2010-07-24 20:11:59 +00:00
|
|
|
return;
|
|
|
|
|
2020-06-01 09:43:00 +00:00
|
|
|
if (c->flags & CLIENT_CONTROL) {
|
2020-06-05 07:33:57 +00:00
|
|
|
control_discard(c);
|
2020-06-01 09:43:00 +00:00
|
|
|
if (!control_all_done(c))
|
|
|
|
return;
|
|
|
|
}
|
2019-12-12 11:39:56 +00:00
|
|
|
RB_FOREACH(cf, client_files, &c->files) {
|
|
|
|
if (EVBUFFER_LENGTH(cf->buffer) != 0)
|
|
|
|
return;
|
|
|
|
}
|
2019-06-07 20:09:17 +00:00
|
|
|
c->flags |= CLIENT_EXITED;
|
2020-06-01 09:43:00 +00:00
|
|
|
|
|
|
|
switch (c->exit_type) {
|
|
|
|
case CLIENT_EXIT_RETURN:
|
2021-01-18 11:14:23 +00:00
|
|
|
if (c->exit_message != NULL)
|
2020-06-10 07:27:10 +00:00
|
|
|
msize = strlen(c->exit_message) + 1;
|
2021-01-18 11:14:23 +00:00
|
|
|
else
|
|
|
|
msize = 0;
|
|
|
|
size = (sizeof c->retval) + msize;
|
2020-06-10 07:27:10 +00:00
|
|
|
data = xmalloc(size);
|
|
|
|
memcpy(data, &c->retval, sizeof c->retval);
|
|
|
|
if (c->exit_message != NULL)
|
|
|
|
memcpy(data + sizeof c->retval, c->exit_message, msize);
|
|
|
|
proc_send(c->peer, MSG_EXIT, -1, data, size);
|
|
|
|
free(data);
|
2020-06-01 09:43:00 +00:00
|
|
|
break;
|
|
|
|
case CLIENT_EXIT_SHUTDOWN:
|
|
|
|
proc_send(c->peer, MSG_SHUTDOWN, -1, NULL, 0);
|
|
|
|
break;
|
|
|
|
case CLIENT_EXIT_DETACH:
|
|
|
|
proc_send(c->peer, c->exit_msgtype, -1, name, strlen(name) + 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
free(c->exit_session);
|
2020-06-10 07:27:10 +00:00
|
|
|
free(c->exit_message);
|
2010-07-24 20:11:59 +00:00
|
|
|
}
|
|
|
|
|
2017-04-18 20:37:49 +00:00
|
|
|
/* Redraw timer callback. */
|
|
|
|
static void
|
|
|
|
server_client_redraw_timer(__unused int fd, __unused short events,
|
2019-12-03 10:47:22 +00:00
|
|
|
__unused void *data)
|
2017-04-18 20:37:49 +00:00
|
|
|
{
|
|
|
|
log_debug("redraw timer fired");
|
|
|
|
}
|
|
|
|
|
2020-12-03 07:12:11 +00:00
|
|
|
/*
|
|
|
|
* Check if modes need to be updated. Only modes in the current window are
|
|
|
|
* updated and it is done when the status line is redrawn.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
server_client_check_modes(struct client *c)
|
|
|
|
{
|
|
|
|
struct window *w = c->session->curw->window;
|
|
|
|
struct window_pane *wp;
|
|
|
|
struct window_mode_entry *wme;
|
|
|
|
|
|
|
|
if (c->flags & (CLIENT_CONTROL|CLIENT_SUSPENDED))
|
|
|
|
return;
|
|
|
|
if (~c->flags & CLIENT_REDRAWSTATUS)
|
|
|
|
return;
|
|
|
|
TAILQ_FOREACH(wp, &w->panes, entry) {
|
|
|
|
wme = TAILQ_FIRST(&wp->modes);
|
|
|
|
if (wme != NULL && wme->mode->update != NULL)
|
|
|
|
wme->mode->update(wme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-22 19:41:51 +00:00
|
|
|
/* Check for client redraws. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2009-10-22 19:41:51 +00:00
|
|
|
server_client_check_redraw(struct client *c)
|
|
|
|
{
|
|
|
|
struct session *s = c->session;
|
2015-05-06 07:52:06 +00:00
|
|
|
struct tty *tty = &c->tty;
|
2020-04-18 21:35:32 +00:00
|
|
|
struct window *w = c->session->curw->window;
|
2009-10-22 19:41:51 +00:00
|
|
|
struct window_pane *wp;
|
2024-08-26 07:30:46 +00:00
|
|
|
int needed, tty_flags, mode = tty->mode;
|
|
|
|
uint64_t client_flags = 0;
|
2020-04-18 21:35:32 +00:00
|
|
|
int redraw;
|
|
|
|
u_int bit = 0;
|
2017-04-18 20:37:49 +00:00
|
|
|
struct timeval tv = { .tv_usec = 1000 };
|
|
|
|
static struct event ev;
|
|
|
|
size_t left;
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2013-03-21 18:47:01 +00:00
|
|
|
if (c->flags & (CLIENT_CONTROL|CLIENT_SUSPENDED))
|
2012-09-03 09:32:38 +00:00
|
|
|
return;
|
2018-08-19 20:13:07 +00:00
|
|
|
if (c->flags & CLIENT_ALLREDRAWFLAGS) {
|
2020-04-18 07:32:53 +00:00
|
|
|
log_debug("%s: redraw%s%s%s%s%s", c->name,
|
2018-08-19 20:13:07 +00:00
|
|
|
(c->flags & CLIENT_REDRAWWINDOW) ? " window" : "",
|
|
|
|
(c->flags & CLIENT_REDRAWSTATUS) ? " status" : "",
|
2019-05-08 18:07:12 +00:00
|
|
|
(c->flags & CLIENT_REDRAWBORDERS) ? " borders" : "",
|
2020-04-18 07:32:53 +00:00
|
|
|
(c->flags & CLIENT_REDRAWOVERLAY) ? " overlay" : "",
|
|
|
|
(c->flags & CLIENT_REDRAWPANES) ? " panes" : "");
|
2018-08-19 20:13:07 +00:00
|
|
|
}
|
2012-09-03 09:32:38 +00:00
|
|
|
|
2017-04-18 20:37:49 +00:00
|
|
|
/*
|
|
|
|
* If there is outstanding data, defer the redraw until it has been
|
|
|
|
* consumed. We can just add a timer to get out of the event loop and
|
|
|
|
* end up back here.
|
|
|
|
*/
|
|
|
|
needed = 0;
|
2018-08-19 16:45:03 +00:00
|
|
|
if (c->flags & CLIENT_ALLREDRAWFLAGS)
|
2017-04-18 20:37:49 +00:00
|
|
|
needed = 1;
|
|
|
|
else {
|
2020-04-18 21:35:32 +00:00
|
|
|
TAILQ_FOREACH(wp, &w->panes, entry) {
|
2017-04-18 20:37:49 +00:00
|
|
|
if (wp->flags & PANE_REDRAW) {
|
|
|
|
needed = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-04-18 07:32:53 +00:00
|
|
|
if (needed)
|
2024-08-26 07:30:46 +00:00
|
|
|
client_flags |= CLIENT_REDRAWPANES;
|
2017-04-18 20:37:49 +00:00
|
|
|
}
|
2017-07-14 08:04:23 +00:00
|
|
|
if (needed && (left = EVBUFFER_LENGTH(tty->out)) != 0) {
|
|
|
|
log_debug("%s: redraw deferred (%zu left)", c->name, left);
|
|
|
|
if (!evtimer_initialized(&ev))
|
2017-04-18 20:37:49 +00:00
|
|
|
evtimer_set(&ev, server_client_redraw_timer, NULL);
|
2017-07-14 08:04:23 +00:00
|
|
|
if (!evtimer_pending(&ev, NULL)) {
|
|
|
|
log_debug("redraw timer started");
|
2017-04-18 20:37:49 +00:00
|
|
|
evtimer_add(&ev, &tv);
|
|
|
|
}
|
2020-04-20 06:07:39 +00:00
|
|
|
|
|
|
|
if (~c->flags & CLIENT_REDRAWWINDOW) {
|
2020-04-18 21:35:32 +00:00
|
|
|
TAILQ_FOREACH(wp, &w->panes, entry) {
|
2020-04-20 06:07:39 +00:00
|
|
|
if (wp->flags & PANE_REDRAW) {
|
|
|
|
log_debug("%s: pane %%%u needs redraw",
|
|
|
|
c->name, wp->id);
|
2020-04-18 21:35:32 +00:00
|
|
|
c->redraw_panes |= (1 << bit);
|
2020-04-20 06:07:39 +00:00
|
|
|
}
|
2020-04-18 21:35:32 +00:00
|
|
|
if (++bit == 64) {
|
|
|
|
/*
|
|
|
|
* If more that 64 panes, give up and
|
|
|
|
* just redraw the window.
|
|
|
|
*/
|
2024-08-26 07:30:46 +00:00
|
|
|
client_flags &= CLIENT_REDRAWPANES;
|
|
|
|
client_flags |= CLIENT_REDRAWWINDOW;
|
2020-04-18 21:35:32 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-04-20 06:07:39 +00:00
|
|
|
if (c->redraw_panes != 0)
|
|
|
|
c->flags |= CLIENT_REDRAWPANES;
|
2020-04-18 21:35:32 +00:00
|
|
|
}
|
2024-08-26 07:30:46 +00:00
|
|
|
c->flags |= client_flags;
|
2017-07-14 08:04:23 +00:00
|
|
|
return;
|
|
|
|
} else if (needed)
|
2017-04-18 20:37:49 +00:00
|
|
|
log_debug("%s: redraw needed", c->name);
|
|
|
|
|
2024-08-26 07:30:46 +00:00
|
|
|
tty_flags = tty->flags & (TTY_BLOCK|TTY_FREEZE|TTY_NOCURSOR);
|
2020-04-18 21:35:32 +00:00
|
|
|
tty->flags = (tty->flags & ~(TTY_BLOCK|TTY_FREEZE))|TTY_NOCURSOR;
|
2015-05-06 07:52:06 +00:00
|
|
|
|
2018-08-19 16:45:03 +00:00
|
|
|
if (~c->flags & CLIENT_REDRAWWINDOW) {
|
|
|
|
/*
|
|
|
|
* If not redrawing the entire window, check whether each pane
|
|
|
|
* needs to be redrawn.
|
|
|
|
*/
|
2020-04-18 21:35:32 +00:00
|
|
|
TAILQ_FOREACH(wp, &w->panes, entry) {
|
|
|
|
redraw = 0;
|
|
|
|
if (wp->flags & PANE_REDRAW)
|
|
|
|
redraw = 1;
|
|
|
|
else if (c->flags & CLIENT_REDRAWPANES)
|
|
|
|
redraw = !!(c->redraw_panes & (1 << bit));
|
2020-04-20 09:07:55 +00:00
|
|
|
bit++;
|
2020-04-18 21:35:32 +00:00
|
|
|
if (!redraw)
|
|
|
|
continue;
|
|
|
|
log_debug("%s: redrawing pane %%%u", __func__, wp->id);
|
|
|
|
screen_redraw_pane(c, wp);
|
2009-10-22 19:41:51 +00:00
|
|
|
}
|
2020-04-21 06:34:13 +00:00
|
|
|
c->redraw_panes = 0;
|
2020-04-18 07:32:53 +00:00
|
|
|
c->flags &= ~CLIENT_REDRAWPANES;
|
2009-10-22 19:41:51 +00:00
|
|
|
}
|
|
|
|
|
2018-08-19 16:45:03 +00:00
|
|
|
if (c->flags & CLIENT_ALLREDRAWFLAGS) {
|
2022-03-24 09:05:57 +00:00
|
|
|
if (options_get_number(s->options, "set-titles")) {
|
2018-08-19 16:45:03 +00:00
|
|
|
server_client_set_title(c);
|
2022-03-24 09:05:57 +00:00
|
|
|
server_client_set_path(c);
|
|
|
|
}
|
2018-08-19 16:45:03 +00:00
|
|
|
screen_redraw_screen(c);
|
|
|
|
}
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2024-08-26 07:30:46 +00:00
|
|
|
tty->flags = (tty->flags & ~TTY_NOCURSOR)|(tty_flags & TTY_NOCURSOR);
|
2020-04-17 22:16:28 +00:00
|
|
|
tty_update_mode(tty, mode, NULL);
|
2024-08-26 07:30:46 +00:00
|
|
|
tty->flags = (tty->flags & ~(TTY_BLOCK|TTY_FREEZE|TTY_NOCURSOR))|
|
|
|
|
tty_flags;
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2018-08-19 16:45:03 +00:00
|
|
|
c->flags &= ~(CLIENT_ALLREDRAWFLAGS|CLIENT_STATUSFORCE);
|
2017-05-09 13:04:36 +00:00
|
|
|
|
|
|
|
if (needed) {
|
|
|
|
/*
|
|
|
|
* We would have deferred the redraw unless the output buffer
|
|
|
|
* was empty, so we can record how many bytes the redraw
|
|
|
|
* generated.
|
|
|
|
*/
|
|
|
|
c->redraw = EVBUFFER_LENGTH(tty->out);
|
|
|
|
log_debug("%s: redraw added %zu bytes", c->name, c->redraw);
|
|
|
|
}
|
2009-10-22 19:41:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set client title. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2009-10-22 19:41:51 +00:00
|
|
|
server_client_set_title(struct client *c)
|
|
|
|
{
|
2015-02-06 17:17:12 +00:00
|
|
|
struct session *s = c->session;
|
|
|
|
const char *template;
|
|
|
|
char *title;
|
|
|
|
struct format_tree *ft;
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
template = options_get_string(s->options, "set-titles-string");
|
2009-12-03 22:50:09 +00:00
|
|
|
|
2017-05-01 12:20:55 +00:00
|
|
|
ft = format_create(c, NULL, FORMAT_NONE, 0);
|
2015-02-06 17:17:12 +00:00
|
|
|
format_defaults(ft, c, NULL, NULL, NULL);
|
|
|
|
|
2019-03-14 23:14:27 +00:00
|
|
|
title = format_expand_time(ft, template);
|
2009-10-22 19:41:51 +00:00
|
|
|
if (c->title == NULL || strcmp(title, c->title) != 0) {
|
2012-07-10 11:53:01 +00:00
|
|
|
free(c->title);
|
2009-10-22 19:41:51 +00:00
|
|
|
c->title = xstrdup(title);
|
|
|
|
tty_set_title(&c->tty, c->title);
|
|
|
|
}
|
2012-07-10 11:53:01 +00:00
|
|
|
free(title);
|
2015-02-06 17:17:12 +00:00
|
|
|
|
|
|
|
format_free(ft);
|
2009-10-22 19:41:51 +00:00
|
|
|
}
|
|
|
|
|
2022-03-24 09:05:57 +00:00
|
|
|
/* Set client path. */
|
|
|
|
static void
|
|
|
|
server_client_set_path(struct client *c)
|
|
|
|
{
|
|
|
|
struct session *s = c->session;
|
|
|
|
const char *path;
|
|
|
|
|
|
|
|
if (s->curw == NULL)
|
|
|
|
return;
|
|
|
|
if (s->curw->window->active->base.path == NULL)
|
|
|
|
path = "";
|
|
|
|
else
|
|
|
|
path = s->curw->window->active->base.path;
|
|
|
|
if (c->path == NULL || strcmp(path, c->path) != 0) {
|
|
|
|
free(c->path);
|
|
|
|
c->path = xstrdup(path);
|
|
|
|
tty_set_path(&c->tty, c->path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-22 19:41:51 +00:00
|
|
|
/* Dispatch message from client. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2015-10-27 13:23:24 +00:00
|
|
|
server_client_dispatch(struct imsg *imsg, void *arg)
|
2009-10-22 19:41:51 +00:00
|
|
|
{
|
2019-12-12 11:39:56 +00:00
|
|
|
struct client *c = arg;
|
|
|
|
ssize_t datalen;
|
|
|
|
struct session *s;
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2015-10-27 13:23:24 +00:00
|
|
|
if (c->flags & CLIENT_DEAD)
|
|
|
|
return;
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2015-10-27 13:23:24 +00:00
|
|
|
if (imsg == NULL) {
|
|
|
|
server_client_lost(c);
|
|
|
|
return;
|
|
|
|
}
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2015-10-27 13:23:24 +00:00
|
|
|
datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
|
2010-07-24 20:11:59 +00:00
|
|
|
|
2015-10-27 13:23:24 +00:00
|
|
|
switch (imsg->hdr.type) {
|
2021-02-17 07:18:36 +00:00
|
|
|
case MSG_IDENTIFY_CLIENTPID:
|
|
|
|
case MSG_IDENTIFY_CWD:
|
|
|
|
case MSG_IDENTIFY_ENVIRON:
|
2020-04-20 13:25:36 +00:00
|
|
|
case MSG_IDENTIFY_FEATURES:
|
2015-10-27 13:23:24 +00:00
|
|
|
case MSG_IDENTIFY_FLAGS:
|
2020-09-22 05:23:34 +00:00
|
|
|
case MSG_IDENTIFY_LONGFLAGS:
|
2015-10-27 13:23:24 +00:00
|
|
|
case MSG_IDENTIFY_STDIN:
|
2020-05-26 08:41:47 +00:00
|
|
|
case MSG_IDENTIFY_STDOUT:
|
2021-02-17 07:18:36 +00:00
|
|
|
case MSG_IDENTIFY_TERM:
|
|
|
|
case MSG_IDENTIFY_TERMINFO:
|
|
|
|
case MSG_IDENTIFY_TTYNAME:
|
2015-10-27 13:23:24 +00:00
|
|
|
case MSG_IDENTIFY_DONE:
|
|
|
|
server_client_dispatch_identify(c, imsg);
|
|
|
|
break;
|
|
|
|
case MSG_COMMAND:
|
|
|
|
server_client_dispatch_command(c, imsg);
|
|
|
|
break;
|
|
|
|
case MSG_RESIZE:
|
|
|
|
if (datalen != 0)
|
|
|
|
fatalx("bad MSG_RESIZE size");
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2015-10-27 13:23:24 +00:00
|
|
|
if (c->flags & CLIENT_CONTROL)
|
2009-10-22 19:41:51 +00:00
|
|
|
break;
|
2019-09-19 09:02:30 +00:00
|
|
|
server_client_update_latest(c);
|
2017-05-31 10:29:15 +00:00
|
|
|
tty_resize(&c->tty);
|
2023-09-02 20:03:10 +00:00
|
|
|
tty_repeat_requests(&c->tty);
|
2017-05-31 10:29:15 +00:00
|
|
|
recalculate_sizes();
|
2021-07-21 08:06:36 +00:00
|
|
|
if (c->overlay_resize == NULL)
|
|
|
|
server_client_clear_overlay(c);
|
|
|
|
else
|
2021-08-13 18:54:54 +00:00
|
|
|
c->overlay_resize(c, c->overlay_data);
|
2017-05-31 10:29:15 +00:00
|
|
|
server_redraw_client(c);
|
2015-12-08 01:10:31 +00:00
|
|
|
if (c->session != NULL)
|
2016-10-16 22:06:40 +00:00
|
|
|
notify_client("client-resized", c);
|
2015-10-27 13:23:24 +00:00
|
|
|
break;
|
|
|
|
case MSG_EXITING:
|
|
|
|
if (datalen != 0)
|
|
|
|
fatalx("bad MSG_EXITING size");
|
2021-08-13 06:52:51 +00:00
|
|
|
server_client_set_session(c, NULL);
|
2021-09-27 19:12:00 +00:00
|
|
|
recalculate_sizes();
|
2015-10-27 13:23:24 +00:00
|
|
|
tty_close(&c->tty);
|
|
|
|
proc_send(c->peer, MSG_EXITED, -1, NULL, 0);
|
|
|
|
break;
|
|
|
|
case MSG_WAKEUP:
|
|
|
|
case MSG_UNLOCK:
|
|
|
|
if (datalen != 0)
|
|
|
|
fatalx("bad MSG_WAKEUP size");
|
2009-11-03 20:29:47 +00:00
|
|
|
|
2015-10-27 13:23:24 +00:00
|
|
|
if (!(c->flags & CLIENT_SUSPENDED))
|
2009-10-22 19:41:51 +00:00
|
|
|
break;
|
2015-10-27 13:23:24 +00:00
|
|
|
c->flags &= ~CLIENT_SUSPENDED;
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2020-10-30 18:54:23 +00:00
|
|
|
if (c->fd == -1 || c->session == NULL) /* exited already */
|
2009-10-22 19:41:51 +00:00
|
|
|
break;
|
2015-10-27 13:23:24 +00:00
|
|
|
s = c->session;
|
|
|
|
|
|
|
|
if (gettimeofday(&c->activity_time, NULL) != 0)
|
|
|
|
fatal("gettimeofday failed");
|
|
|
|
|
|
|
|
tty_start_tty(&c->tty);
|
|
|
|
server_redraw_client(c);
|
|
|
|
recalculate_sizes();
|
2016-04-28 06:51:56 +00:00
|
|
|
|
|
|
|
if (s != NULL)
|
|
|
|
session_update_activity(s, &c->activity_time);
|
2015-10-27 13:23:24 +00:00
|
|
|
break;
|
|
|
|
case MSG_SHELL:
|
|
|
|
if (datalen != 0)
|
|
|
|
fatalx("bad MSG_SHELL size");
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2015-10-27 13:23:24 +00:00
|
|
|
server_client_dispatch_shell(c);
|
|
|
|
break;
|
2019-12-12 11:39:56 +00:00
|
|
|
case MSG_WRITE_READY:
|
2021-02-11 08:28:45 +00:00
|
|
|
file_write_ready(&c->files, imsg);
|
2019-12-12 11:39:56 +00:00
|
|
|
break;
|
|
|
|
case MSG_READ:
|
2021-02-11 08:28:45 +00:00
|
|
|
file_read_data(&c->files, imsg);
|
2019-12-12 11:39:56 +00:00
|
|
|
break;
|
|
|
|
case MSG_READ_DONE:
|
2021-02-11 08:28:45 +00:00
|
|
|
file_read_done(&c->files, imsg);
|
2019-12-12 11:39:56 +00:00
|
|
|
break;
|
2009-10-22 19:41:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-30 12:55:25 +00:00
|
|
|
/* Callback when command is not allowed. */
|
|
|
|
static enum cmd_retval
|
|
|
|
server_client_read_only(struct cmdq_item *item, __unused void *data)
|
|
|
|
{
|
|
|
|
cmdq_error(item, "client is read-only");
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
|
|
|
|
2016-10-16 17:55:14 +00:00
|
|
|
/* Callback when command is done. */
|
|
|
|
static enum cmd_retval
|
2016-10-16 19:04:05 +00:00
|
|
|
server_client_command_done(struct cmdq_item *item, __unused void *data)
|
2016-10-16 17:55:14 +00:00
|
|
|
{
|
2020-04-13 10:59:58 +00:00
|
|
|
struct client *c = cmdq_get_client(item);
|
2016-10-16 17:55:14 +00:00
|
|
|
|
|
|
|
if (~c->flags & CLIENT_ATTACHED)
|
|
|
|
c->flags |= CLIENT_EXIT;
|
2022-07-06 08:31:59 +00:00
|
|
|
else if (~c->flags & CLIENT_EXIT) {
|
|
|
|
if (c->flags & CLIENT_CONTROL)
|
|
|
|
control_ready(c);
|
2020-04-09 12:16:16 +00:00
|
|
|
tty_send_requests(&c->tty);
|
2022-07-06 08:31:59 +00:00
|
|
|
}
|
2016-10-16 17:55:14 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
|
|
|
}
|
|
|
|
|
2009-10-22 19:41:51 +00:00
|
|
|
/* Handle command message. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2015-10-27 13:23:24 +00:00
|
|
|
server_client_dispatch_command(struct client *c, struct imsg *imsg)
|
2009-10-22 19:41:51 +00:00
|
|
|
{
|
2019-12-12 11:39:56 +00:00
|
|
|
struct msg_command data;
|
2013-10-10 12:13:56 +00:00
|
|
|
char *buf;
|
|
|
|
size_t len;
|
|
|
|
int argc;
|
|
|
|
char **argv, *cause;
|
2019-05-25 07:18:20 +00:00
|
|
|
struct cmd_parse_result *pr;
|
2021-08-27 17:25:55 +00:00
|
|
|
struct args_value *values;
|
2022-05-30 12:55:25 +00:00
|
|
|
struct cmdq_item *new_item;
|
2013-10-10 12:13:56 +00:00
|
|
|
|
2017-12-19 15:00:39 +00:00
|
|
|
if (c->flags & CLIENT_EXIT)
|
|
|
|
return;
|
|
|
|
|
2013-10-10 12:13:56 +00:00
|
|
|
if (imsg->hdr.len - IMSG_HEADER_SIZE < sizeof data)
|
|
|
|
fatalx("bad MSG_COMMAND size");
|
|
|
|
memcpy(&data, imsg->data, sizeof data);
|
|
|
|
|
2014-09-01 21:50:18 +00:00
|
|
|
buf = (char *)imsg->data + sizeof data;
|
2013-10-10 12:13:56 +00:00
|
|
|
len = imsg->hdr.len - IMSG_HEADER_SIZE - sizeof data;
|
|
|
|
if (len > 0 && buf[len - 1] != '\0')
|
|
|
|
fatalx("bad MSG_COMMAND string");
|
|
|
|
|
|
|
|
argc = data.argc;
|
|
|
|
if (cmd_unpack_argv(buf, len, argc, &argv) != 0) {
|
2016-10-16 17:55:14 +00:00
|
|
|
cause = xstrdup("command too long");
|
2009-10-22 19:41:51 +00:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc == 0) {
|
|
|
|
argc = 1;
|
|
|
|
argv = xcalloc(1, sizeof *argv);
|
|
|
|
*argv = xstrdup("new-session");
|
|
|
|
}
|
|
|
|
|
2021-08-27 17:25:55 +00:00
|
|
|
values = args_from_vector(argc, argv);
|
|
|
|
pr = cmd_parse_from_arguments(values, argc, NULL);
|
2019-05-25 07:18:20 +00:00
|
|
|
switch (pr->status) {
|
|
|
|
case CMD_PARSE_ERROR:
|
|
|
|
cause = pr->error;
|
|
|
|
goto error;
|
|
|
|
case CMD_PARSE_SUCCESS:
|
|
|
|
break;
|
2009-10-22 19:41:51 +00:00
|
|
|
}
|
2021-08-27 17:25:55 +00:00
|
|
|
args_free_values(values, argc);
|
|
|
|
free(values);
|
2009-10-22 19:41:51 +00:00
|
|
|
cmd_free_argv(argc, argv);
|
|
|
|
|
2022-05-30 12:55:25 +00:00
|
|
|
if ((c->flags & CLIENT_READONLY) &&
|
|
|
|
!cmd_list_all_have(pr->cmdlist, CMD_READONLY))
|
|
|
|
new_item = cmdq_get_callback(server_client_read_only, NULL);
|
|
|
|
else
|
|
|
|
new_item = cmdq_get_command(pr->cmdlist, NULL);
|
|
|
|
cmdq_append(c, new_item);
|
2016-10-16 17:55:14 +00:00
|
|
|
cmdq_append(c, cmdq_get_callback(server_client_command_done, NULL));
|
2019-05-25 07:18:20 +00:00
|
|
|
|
|
|
|
cmd_list_free(pr->cmdlist);
|
2009-10-22 19:41:51 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
error:
|
2019-05-25 07:18:20 +00:00
|
|
|
cmd_free_argv(argc, argv);
|
|
|
|
|
2019-05-20 11:46:06 +00:00
|
|
|
cmdq_append(c, cmdq_get_error(cause));
|
|
|
|
free(cause);
|
2016-10-16 17:55:14 +00:00
|
|
|
|
2010-07-24 20:11:59 +00:00
|
|
|
c->flags |= CLIENT_EXIT;
|
2009-10-22 19:41:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle identify message. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2015-10-27 13:23:24 +00:00
|
|
|
server_client_dispatch_identify(struct client *c, struct imsg *imsg)
|
2009-10-22 19:41:51 +00:00
|
|
|
{
|
2015-10-31 08:13:58 +00:00
|
|
|
const char *data, *home;
|
2017-05-16 12:57:26 +00:00
|
|
|
size_t datalen;
|
2020-04-20 13:25:36 +00:00
|
|
|
int flags, feat;
|
2020-09-22 05:23:34 +00:00
|
|
|
uint64_t longflags;
|
2017-04-05 10:49:46 +00:00
|
|
|
char *name;
|
2013-10-10 12:26:34 +00:00
|
|
|
|
|
|
|
if (c->flags & CLIENT_IDENTIFIED)
|
|
|
|
fatalx("out-of-order identify message");
|
|
|
|
|
|
|
|
data = imsg->data;
|
|
|
|
datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
|
|
|
|
|
|
|
|
switch (imsg->hdr.type) {
|
2020-04-20 13:25:36 +00:00
|
|
|
case MSG_IDENTIFY_FEATURES:
|
|
|
|
if (datalen != sizeof feat)
|
|
|
|
fatalx("bad MSG_IDENTIFY_FEATURES size");
|
|
|
|
memcpy(&feat, data, sizeof feat);
|
|
|
|
c->term_features |= feat;
|
|
|
|
log_debug("client %p IDENTIFY_FEATURES %s", c,
|
|
|
|
tty_get_features(feat));
|
|
|
|
break;
|
2013-10-10 12:26:34 +00:00
|
|
|
case MSG_IDENTIFY_FLAGS:
|
|
|
|
if (datalen != sizeof flags)
|
|
|
|
fatalx("bad MSG_IDENTIFY_FLAGS size");
|
|
|
|
memcpy(&flags, data, sizeof flags);
|
|
|
|
c->flags |= flags;
|
2015-10-22 11:00:51 +00:00
|
|
|
log_debug("client %p IDENTIFY_FLAGS %#x", c, flags);
|
2013-10-10 12:26:34 +00:00
|
|
|
break;
|
2020-09-22 05:23:34 +00:00
|
|
|
case MSG_IDENTIFY_LONGFLAGS:
|
|
|
|
if (datalen != sizeof longflags)
|
|
|
|
fatalx("bad MSG_IDENTIFY_LONGFLAGS size");
|
|
|
|
memcpy(&longflags, data, sizeof longflags);
|
|
|
|
c->flags |= longflags;
|
|
|
|
log_debug("client %p IDENTIFY_LONGFLAGS %#llx", c,
|
|
|
|
(unsigned long long)longflags);
|
|
|
|
break;
|
2013-10-10 12:26:34 +00:00
|
|
|
case MSG_IDENTIFY_TERM:
|
2013-10-10 12:27:38 +00:00
|
|
|
if (datalen == 0 || data[datalen - 1] != '\0')
|
2013-10-10 12:26:34 +00:00
|
|
|
fatalx("bad MSG_IDENTIFY_TERM string");
|
2020-04-20 13:25:36 +00:00
|
|
|
if (*data == '\0')
|
|
|
|
c->term_name = xstrdup("unknown");
|
|
|
|
else
|
|
|
|
c->term_name = xstrdup(data);
|
2015-10-22 11:00:51 +00:00
|
|
|
log_debug("client %p IDENTIFY_TERM %s", c, data);
|
2013-10-10 12:26:34 +00:00
|
|
|
break;
|
2021-02-17 07:18:36 +00:00
|
|
|
case MSG_IDENTIFY_TERMINFO:
|
|
|
|
if (datalen == 0 || data[datalen - 1] != '\0')
|
|
|
|
fatalx("bad MSG_IDENTIFY_TERMINFO string");
|
|
|
|
c->term_caps = xreallocarray(c->term_caps, c->term_ncaps + 1,
|
|
|
|
sizeof *c->term_caps);
|
|
|
|
c->term_caps[c->term_ncaps++] = xstrdup(data);
|
|
|
|
log_debug("client %p IDENTIFY_TERMINFO %s", c, data);
|
|
|
|
break;
|
2013-10-10 12:26:34 +00:00
|
|
|
case MSG_IDENTIFY_TTYNAME:
|
2013-10-10 12:27:38 +00:00
|
|
|
if (datalen == 0 || data[datalen - 1] != '\0')
|
2013-10-10 12:26:34 +00:00
|
|
|
fatalx("bad MSG_IDENTIFY_TTYNAME string");
|
|
|
|
c->ttyname = xstrdup(data);
|
2015-10-22 11:00:51 +00:00
|
|
|
log_debug("client %p IDENTIFY_TTYNAME %s", c, data);
|
2013-10-10 12:26:34 +00:00
|
|
|
break;
|
|
|
|
case MSG_IDENTIFY_CWD:
|
2015-10-18 20:42:42 +00:00
|
|
|
if (datalen == 0 || data[datalen - 1] != '\0')
|
|
|
|
fatalx("bad MSG_IDENTIFY_CWD string");
|
2015-10-31 08:13:58 +00:00
|
|
|
if (access(data, X_OK) == 0)
|
|
|
|
c->cwd = xstrdup(data);
|
|
|
|
else if ((home = find_home()) != NULL)
|
|
|
|
c->cwd = xstrdup(home);
|
|
|
|
else
|
|
|
|
c->cwd = xstrdup("/");
|
2015-10-22 11:00:51 +00:00
|
|
|
log_debug("client %p IDENTIFY_CWD %s", c, data);
|
2013-10-10 12:26:34 +00:00
|
|
|
break;
|
|
|
|
case MSG_IDENTIFY_STDIN:
|
|
|
|
if (datalen != 0)
|
|
|
|
fatalx("bad MSG_IDENTIFY_STDIN size");
|
2024-01-16 13:09:11 +00:00
|
|
|
c->fd = imsg_get_fd(imsg);
|
|
|
|
log_debug("client %p IDENTIFY_STDIN %d", c, c->fd);
|
2013-10-10 12:26:34 +00:00
|
|
|
break;
|
2020-05-26 08:41:47 +00:00
|
|
|
case MSG_IDENTIFY_STDOUT:
|
|
|
|
if (datalen != 0)
|
|
|
|
fatalx("bad MSG_IDENTIFY_STDOUT size");
|
2024-01-16 13:09:11 +00:00
|
|
|
c->out_fd = imsg_get_fd(imsg);
|
|
|
|
log_debug("client %p IDENTIFY_STDOUT %d", c, c->out_fd);
|
2020-05-26 08:41:47 +00:00
|
|
|
break;
|
2013-10-10 12:26:34 +00:00
|
|
|
case MSG_IDENTIFY_ENVIRON:
|
2013-10-10 12:27:38 +00:00
|
|
|
if (datalen == 0 || data[datalen - 1] != '\0')
|
2013-10-10 12:26:34 +00:00
|
|
|
fatalx("bad MSG_IDENTIFY_ENVIRON string");
|
|
|
|
if (strchr(data, '=') != NULL)
|
2020-03-31 17:14:40 +00:00
|
|
|
environ_put(c->environ, data, 0);
|
2015-10-22 11:00:51 +00:00
|
|
|
log_debug("client %p IDENTIFY_ENVIRON %s", c, data);
|
2013-10-10 12:26:34 +00:00
|
|
|
break;
|
2015-06-14 10:07:44 +00:00
|
|
|
case MSG_IDENTIFY_CLIENTPID:
|
|
|
|
if (datalen != sizeof c->pid)
|
|
|
|
fatalx("bad MSG_IDENTIFY_CLIENTPID size");
|
|
|
|
memcpy(&c->pid, data, sizeof c->pid);
|
2015-10-22 11:00:51 +00:00
|
|
|
log_debug("client %p IDENTIFY_CLIENTPID %ld", c, (long)c->pid);
|
2015-06-14 10:07:44 +00:00
|
|
|
break;
|
2013-10-10 12:26:34 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (imsg->hdr.type != MSG_IDENTIFY_DONE)
|
|
|
|
return;
|
|
|
|
c->flags |= CLIENT_IDENTIFIED;
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2017-04-05 10:49:46 +00:00
|
|
|
if (*c->ttyname != '\0')
|
|
|
|
name = xstrdup(c->ttyname);
|
|
|
|
else
|
|
|
|
xasprintf(&name, "client-%ld", (long)c->pid);
|
|
|
|
c->name = name;
|
|
|
|
log_debug("client %p name is %s", c, c->name);
|
|
|
|
|
2020-10-28 10:09:10 +00:00
|
|
|
if (c->flags & CLIENT_CONTROL)
|
2019-12-12 11:39:56 +00:00
|
|
|
control_start(c);
|
2020-05-26 08:41:47 +00:00
|
|
|
else if (c->fd != -1) {
|
2020-05-24 09:13:06 +00:00
|
|
|
if (tty_init(&c->tty, c) != 0) {
|
2019-06-20 06:51:36 +00:00
|
|
|
close(c->fd);
|
|
|
|
c->fd = -1;
|
|
|
|
} else {
|
|
|
|
tty_resize(&c->tty);
|
|
|
|
c->flags |= CLIENT_TERMINAL;
|
|
|
|
}
|
2020-05-26 08:41:47 +00:00
|
|
|
close(c->out_fd);
|
|
|
|
c->out_fd = -1;
|
2012-09-27 10:02:56 +00:00
|
|
|
}
|
2009-10-22 19:41:51 +00:00
|
|
|
|
2019-06-20 06:51:36 +00:00
|
|
|
/*
|
2020-10-28 10:09:10 +00:00
|
|
|
* If this is the first client, load configuration files. Any later
|
|
|
|
* clients are allowed to continue with their command even if the
|
|
|
|
* config has not been loaded - they might have been run from inside it
|
2019-06-20 06:51:36 +00:00
|
|
|
*/
|
|
|
|
if ((~c->flags & CLIENT_EXIT) &&
|
2020-10-28 10:09:10 +00:00
|
|
|
!cfg_finished &&
|
|
|
|
c == TAILQ_FIRST(&clients))
|
2019-06-20 06:51:36 +00:00
|
|
|
start_cfg();
|
2009-10-22 19:41:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle shell message. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2015-10-27 13:23:24 +00:00
|
|
|
server_client_dispatch_shell(struct client *c)
|
2009-10-22 19:41:51 +00:00
|
|
|
{
|
2013-10-10 12:13:56 +00:00
|
|
|
const char *shell;
|
2009-12-03 22:50:09 +00:00
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
shell = options_get_string(global_s_options, "default-shell");
|
2020-03-17 11:10:12 +00:00
|
|
|
if (!checkshell(shell))
|
2009-10-22 19:41:51 +00:00
|
|
|
shell = _PATH_BSHELL;
|
2017-07-12 09:07:52 +00:00
|
|
|
proc_send(c->peer, MSG_SHELL, -1, shell, strlen(shell) + 1);
|
2009-12-03 22:50:09 +00:00
|
|
|
|
2015-10-27 13:23:24 +00:00
|
|
|
proc_kill_peer(c->peer);
|
2009-10-22 19:41:51 +00:00
|
|
|
}
|
2015-11-14 09:41:06 +00:00
|
|
|
|
2017-02-14 18:13:05 +00:00
|
|
|
/* Get client working directory. */
|
|
|
|
const char *
|
2018-05-24 09:42:49 +00:00
|
|
|
server_client_get_cwd(struct client *c, struct session *s)
|
2017-02-14 18:13:05 +00:00
|
|
|
{
|
2018-05-24 09:42:49 +00:00
|
|
|
const char *home;
|
2017-02-14 18:13:05 +00:00
|
|
|
|
2019-02-16 11:42:08 +00:00
|
|
|
if (!cfg_finished && cfg_client != NULL)
|
|
|
|
return (cfg_client->cwd);
|
2017-02-14 18:13:05 +00:00
|
|
|
if (c != NULL && c->session == NULL && c->cwd != NULL)
|
|
|
|
return (c->cwd);
|
2018-05-24 09:42:49 +00:00
|
|
|
if (s != NULL && s->cwd != NULL)
|
|
|
|
return (s->cwd);
|
2017-02-14 18:13:05 +00:00
|
|
|
if (c != NULL && (s = c->session) != NULL && s->cwd != NULL)
|
|
|
|
return (s->cwd);
|
2018-05-24 09:42:49 +00:00
|
|
|
if ((home = find_home()) != NULL)
|
|
|
|
return (home);
|
|
|
|
return ("/");
|
2017-02-14 18:13:05 +00:00
|
|
|
}
|
2020-05-16 15:45:29 +00:00
|
|
|
|
2020-06-05 07:33:57 +00:00
|
|
|
/* Get control client flags. */
|
|
|
|
static uint64_t
|
|
|
|
server_client_control_flags(struct client *c, const char *next)
|
|
|
|
{
|
|
|
|
if (strcmp(next, "pause-after") == 0) {
|
|
|
|
c->pause_age = 0;
|
|
|
|
return (CLIENT_CONTROL_PAUSEAFTER);
|
|
|
|
}
|
|
|
|
if (sscanf(next, "pause-after=%u", &c->pause_age) == 1) {
|
|
|
|
c->pause_age *= 1000;
|
|
|
|
return (CLIENT_CONTROL_PAUSEAFTER);
|
|
|
|
}
|
|
|
|
if (strcmp(next, "no-output") == 0)
|
|
|
|
return (CLIENT_CONTROL_NOOUTPUT);
|
2020-06-18 08:34:22 +00:00
|
|
|
if (strcmp(next, "wait-exit") == 0)
|
|
|
|
return (CLIENT_CONTROL_WAITEXIT);
|
2020-06-05 07:33:57 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2020-05-16 15:45:29 +00:00
|
|
|
/* Set client flags. */
|
|
|
|
void
|
|
|
|
server_client_set_flags(struct client *c, const char *flags)
|
|
|
|
{
|
|
|
|
char *s, *copy, *next;
|
2020-05-26 08:41:47 +00:00
|
|
|
uint64_t flag;
|
|
|
|
int not;
|
2020-05-16 15:45:29 +00:00
|
|
|
|
2021-08-20 17:50:42 +00:00
|
|
|
s = copy = xstrdup(flags);
|
2020-05-16 15:45:29 +00:00
|
|
|
while ((next = strsep(&s, ",")) != NULL) {
|
|
|
|
not = (*next == '!');
|
|
|
|
if (not)
|
|
|
|
next++;
|
|
|
|
|
2020-06-05 07:33:57 +00:00
|
|
|
if (c->flags & CLIENT_CONTROL)
|
|
|
|
flag = server_client_control_flags(c, next);
|
|
|
|
else
|
|
|
|
flag = 0;
|
2020-05-24 14:45:00 +00:00
|
|
|
if (strcmp(next, "read-only") == 0)
|
2020-05-16 15:45:29 +00:00
|
|
|
flag = CLIENT_READONLY;
|
|
|
|
else if (strcmp(next, "ignore-size") == 0)
|
|
|
|
flag = CLIENT_IGNORESIZE;
|
2020-05-16 16:20:59 +00:00
|
|
|
else if (strcmp(next, "active-pane") == 0)
|
|
|
|
flag = CLIENT_ACTIVEPANE;
|
2020-05-24 14:45:00 +00:00
|
|
|
if (flag == 0)
|
2020-05-16 15:45:29 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
log_debug("client %s set flag %s", c->name, next);
|
2022-05-30 12:55:25 +00:00
|
|
|
if (not) {
|
|
|
|
if (c->flags & CLIENT_READONLY)
|
|
|
|
flag &= ~CLIENT_READONLY;
|
2020-05-16 15:45:29 +00:00
|
|
|
c->flags &= ~flag;
|
2022-05-30 12:55:25 +00:00
|
|
|
} else
|
2020-05-16 15:45:29 +00:00
|
|
|
c->flags |= flag;
|
2020-05-22 11:07:04 +00:00
|
|
|
if (flag == CLIENT_CONTROL_NOOUTPUT)
|
2020-06-01 09:43:00 +00:00
|
|
|
control_reset_offsets(c);
|
2020-05-16 15:45:29 +00:00
|
|
|
}
|
|
|
|
free(copy);
|
2020-06-18 08:34:22 +00:00
|
|
|
proc_send(c->peer, MSG_FLAGS, -1, &c->flags, sizeof c->flags);
|
2020-05-16 15:45:29 +00:00
|
|
|
}
|
|
|
|
|
2020-05-16 16:16:07 +00:00
|
|
|
/* Get client flags. This is only flags useful to show to users. */
|
2020-05-16 15:45:29 +00:00
|
|
|
const char *
|
|
|
|
server_client_get_flags(struct client *c)
|
|
|
|
{
|
2020-06-05 07:33:57 +00:00
|
|
|
static char s[256];
|
|
|
|
char tmp[32];
|
2020-05-16 15:45:29 +00:00
|
|
|
|
|
|
|
*s = '\0';
|
|
|
|
if (c->flags & CLIENT_ATTACHED)
|
|
|
|
strlcat(s, "attached,", sizeof s);
|
2021-02-08 08:33:54 +00:00
|
|
|
if (c->flags & CLIENT_FOCUSED)
|
|
|
|
strlcat(s, "focused,", sizeof s);
|
2020-05-16 15:45:29 +00:00
|
|
|
if (c->flags & CLIENT_CONTROL)
|
|
|
|
strlcat(s, "control-mode,", sizeof s);
|
|
|
|
if (c->flags & CLIENT_IGNORESIZE)
|
|
|
|
strlcat(s, "ignore-size,", sizeof s);
|
|
|
|
if (c->flags & CLIENT_CONTROL_NOOUTPUT)
|
|
|
|
strlcat(s, "no-output,", sizeof s);
|
2020-06-18 08:34:22 +00:00
|
|
|
if (c->flags & CLIENT_CONTROL_WAITEXIT)
|
|
|
|
strlcat(s, "wait-exit,", sizeof s);
|
2020-06-05 07:33:57 +00:00
|
|
|
if (c->flags & CLIENT_CONTROL_PAUSEAFTER) {
|
|
|
|
xsnprintf(tmp, sizeof tmp, "pause-after=%u,",
|
|
|
|
c->pause_age / 1000);
|
|
|
|
strlcat(s, tmp, sizeof s);
|
|
|
|
}
|
2020-05-16 15:45:29 +00:00
|
|
|
if (c->flags & CLIENT_READONLY)
|
|
|
|
strlcat(s, "read-only,", sizeof s);
|
2020-05-16 16:20:59 +00:00
|
|
|
if (c->flags & CLIENT_ACTIVEPANE)
|
|
|
|
strlcat(s, "active-pane,", sizeof s);
|
2020-05-16 15:45:29 +00:00
|
|
|
if (c->flags & CLIENT_SUSPENDED)
|
|
|
|
strlcat(s, "suspended,", sizeof s);
|
|
|
|
if (c->flags & CLIENT_UTF8)
|
|
|
|
strlcat(s, "UTF-8,", sizeof s);
|
|
|
|
if (*s != '\0')
|
|
|
|
s[strlen(s) - 1] = '\0';
|
|
|
|
return (s);
|
|
|
|
}
|
2020-05-16 16:20:59 +00:00
|
|
|
|
|
|
|
/* Get client window. */
|
2021-08-27 17:15:57 +00:00
|
|
|
struct client_window *
|
2020-05-16 16:20:59 +00:00
|
|
|
server_client_get_client_window(struct client *c, u_int id)
|
|
|
|
{
|
|
|
|
struct client_window cw = { .window = id };
|
|
|
|
|
|
|
|
return (RB_FIND(client_windows, &c->windows, &cw));
|
|
|
|
}
|
|
|
|
|
2021-08-27 17:15:57 +00:00
|
|
|
/* Add client window. */
|
|
|
|
struct client_window *
|
|
|
|
server_client_add_client_window(struct client *c, u_int id)
|
|
|
|
{
|
|
|
|
struct client_window *cw;
|
|
|
|
|
|
|
|
cw = server_client_get_client_window(c, id);
|
|
|
|
if (cw == NULL) {
|
|
|
|
cw = xcalloc(1, sizeof *cw);
|
|
|
|
cw->window = id;
|
|
|
|
RB_INSERT(client_windows, &c->windows, cw);
|
|
|
|
}
|
2022-05-30 12:55:25 +00:00
|
|
|
return (cw);
|
2021-08-27 17:15:57 +00:00
|
|
|
}
|
|
|
|
|
2020-05-16 16:20:59 +00:00
|
|
|
/* Get client active pane. */
|
|
|
|
struct window_pane *
|
|
|
|
server_client_get_pane(struct client *c)
|
|
|
|
{
|
|
|
|
struct session *s = c->session;
|
|
|
|
struct client_window *cw;
|
|
|
|
|
|
|
|
if (s == NULL)
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
if (~c->flags & CLIENT_ACTIVEPANE)
|
|
|
|
return (s->curw->window->active);
|
|
|
|
cw = server_client_get_client_window(c, s->curw->window->id);
|
|
|
|
if (cw == NULL)
|
|
|
|
return (s->curw->window->active);
|
|
|
|
return (cw->pane);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set client active pane. */
|
|
|
|
void
|
|
|
|
server_client_set_pane(struct client *c, struct window_pane *wp)
|
|
|
|
{
|
|
|
|
struct session *s = c->session;
|
|
|
|
struct client_window *cw;
|
|
|
|
|
|
|
|
if (s == NULL)
|
|
|
|
return;
|
|
|
|
|
2021-08-27 17:15:57 +00:00
|
|
|
cw = server_client_add_client_window(c, s->curw->window->id);
|
2020-05-16 16:20:59 +00:00
|
|
|
cw->pane = wp;
|
|
|
|
log_debug("%s pane now %%%u", c->name, wp->id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove pane from client lists. */
|
|
|
|
void
|
|
|
|
server_client_remove_pane(struct window_pane *wp)
|
|
|
|
{
|
|
|
|
struct client *c;
|
|
|
|
struct window *w = wp->window;
|
|
|
|
struct client_window *cw;
|
|
|
|
|
|
|
|
TAILQ_FOREACH(c, &clients, entry) {
|
|
|
|
cw = server_client_get_client_window(c, w->id);
|
|
|
|
if (cw != NULL && cw->pane == wp) {
|
|
|
|
RB_REMOVE(client_windows, &c->windows, cw);
|
|
|
|
free(cw);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-02-05 21:15:32 +00:00
|
|
|
|
|
|
|
/* Print to a client. */
|
|
|
|
void
|
|
|
|
server_client_print(struct client *c, int parse, struct evbuffer *evb)
|
|
|
|
{
|
|
|
|
void *data = EVBUFFER_DATA(evb);
|
|
|
|
size_t size = EVBUFFER_LENGTH(evb);
|
|
|
|
struct window_pane *wp;
|
|
|
|
struct window_mode_entry *wme;
|
|
|
|
char *sanitized, *msg, *line;
|
|
|
|
|
|
|
|
if (!parse) {
|
|
|
|
utf8_stravisx(&msg, data, size,
|
|
|
|
VIS_OCTAL|VIS_CSTYLE|VIS_NOSLASH);
|
|
|
|
log_debug("%s: %s", __func__, msg);
|
|
|
|
} else {
|
|
|
|
msg = EVBUFFER_DATA(evb);
|
|
|
|
if (msg[size - 1] != '\0')
|
|
|
|
evbuffer_add(evb, "", 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == NULL)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (c->session == NULL || (c->flags & CLIENT_CONTROL)) {
|
|
|
|
if (~c->flags & CLIENT_UTF8) {
|
|
|
|
sanitized = utf8_sanitize(msg);
|
|
|
|
if (c->flags & CLIENT_CONTROL)
|
|
|
|
control_write(c, "%s", sanitized);
|
|
|
|
else
|
|
|
|
file_print(c, "%s\n", sanitized);
|
|
|
|
free(sanitized);
|
|
|
|
} else {
|
|
|
|
if (c->flags & CLIENT_CONTROL)
|
|
|
|
control_write(c, "%s", msg);
|
|
|
|
else
|
|
|
|
file_print(c, "%s\n", msg);
|
|
|
|
}
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
wp = server_client_get_pane(c);
|
|
|
|
wme = TAILQ_FIRST(&wp->modes);
|
|
|
|
if (wme == NULL || wme->mode != &window_view_mode)
|
|
|
|
window_pane_set_mode(wp, NULL, &window_view_mode, NULL, NULL);
|
|
|
|
if (parse) {
|
|
|
|
do {
|
|
|
|
line = evbuffer_readln(evb, NULL, EVBUFFER_EOL_LF);
|
|
|
|
if (line != NULL) {
|
|
|
|
window_copy_add(wp, 1, "%s", line);
|
|
|
|
free(line);
|
|
|
|
}
|
|
|
|
} while (line != NULL);
|
|
|
|
|
|
|
|
size = EVBUFFER_LENGTH(evb);
|
|
|
|
if (size != 0) {
|
|
|
|
line = EVBUFFER_DATA(evb);
|
|
|
|
window_copy_add(wp, 1, "%.*s", (int)size, line);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
window_copy_add(wp, 0, "%s", msg);
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (!parse)
|
|
|
|
free(msg);
|
|
|
|
}
|