4 * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
21 #include <netinet/in.h>
32 * Based on the description by Paul Williams at:
34 * https://vt100.net/emu/dec_ansi_parser
36 * With the following changes:
40 * - Support for UTF-8.
42 * - OSC (but not APC) may be terminated by \007 as well as ST.
44 * - A state for APC similar to OSC. Some terminals appear to use this to set
47 * - A state for the screen \033k...\033\\ sequence to rename a window. This is
48 * pretty stupid but not supporting it is more trouble than it is worth.
50 * - Special handling for ESC inside a DCS to allow arbitrary byte sequences to
51 * be passed to the underlying terminals.
54 /* Input parser cell. */
56 struct grid_cell cell
;
58 int g0set
; /* 1 if ACS */
59 int g1set
; /* 1 if ACS */
62 /* Input parser argument. */
75 /* Input parser context. */
77 struct window_pane
*wp
;
78 struct bufferevent
*event
;
79 struct screen_write_ctx ctx
;
80 struct colour_palette
*palette
;
82 struct input_cell cell
;
84 struct input_cell old_cell
;
95 #define INPUT_BUF_START 32
96 #define INPUT_BUF_LIMIT 1048576
105 struct input_param param_list
[24];
106 u_int param_list_len
;
108 struct utf8_data utf8data
;
115 #define INPUT_DISCARD 0x1
117 const struct input_state
*state
;
122 * All input received since we were last in the ground state. Sent to
123 * control clients on connection.
125 struct evbuffer
*since_ground
;
128 /* Helper functions. */
129 struct input_transition
;
130 static int input_split(struct input_ctx
*);
131 static int input_get(struct input_ctx
*, u_int
, int, int);
132 static void printflike(2, 3) input_reply(struct input_ctx
*, const char *, ...);
133 static void input_set_state(struct input_ctx
*,
134 const struct input_transition
*);
135 static void input_reset_cell(struct input_ctx
*);
137 static void input_osc_4(struct input_ctx
*, const char *);
138 static void input_osc_8(struct input_ctx
*, const char *);
139 static void input_osc_10(struct input_ctx
*, const char *);
140 static void input_osc_11(struct input_ctx
*, const char *);
141 static void input_osc_12(struct input_ctx
*, const char *);
142 static void input_osc_52(struct input_ctx
*, const char *);
143 static void input_osc_104(struct input_ctx
*, const char *);
144 static void input_osc_110(struct input_ctx
*, const char *);
145 static void input_osc_111(struct input_ctx
*, const char *);
146 static void input_osc_112(struct input_ctx
*, const char *);
148 /* Transition entry/exit handlers. */
149 static void input_clear(struct input_ctx
*);
150 static void input_ground(struct input_ctx
*);
151 static void input_enter_dcs(struct input_ctx
*);
152 static void input_enter_osc(struct input_ctx
*);
153 static void input_exit_osc(struct input_ctx
*);
154 static void input_enter_apc(struct input_ctx
*);
155 static void input_exit_apc(struct input_ctx
*);
156 static void input_enter_rename(struct input_ctx
*);
157 static void input_exit_rename(struct input_ctx
*);
159 /* Input state handlers. */
160 static int input_print(struct input_ctx
*);
161 static int input_intermediate(struct input_ctx
*);
162 static int input_parameter(struct input_ctx
*);
163 static int input_input(struct input_ctx
*);
164 static int input_c0_dispatch(struct input_ctx
*);
165 static int input_esc_dispatch(struct input_ctx
*);
166 static int input_csi_dispatch(struct input_ctx
*);
167 static void input_csi_dispatch_rm(struct input_ctx
*);
168 static void input_csi_dispatch_rm_private(struct input_ctx
*);
169 static void input_csi_dispatch_sm(struct input_ctx
*);
170 static void input_csi_dispatch_sm_private(struct input_ctx
*);
171 static void input_csi_dispatch_winops(struct input_ctx
*);
172 static void input_csi_dispatch_sgr_256(struct input_ctx
*, int, u_int
*);
173 static void input_csi_dispatch_sgr_rgb(struct input_ctx
*, int, u_int
*);
174 static void input_csi_dispatch_sgr(struct input_ctx
*);
175 static int input_dcs_dispatch(struct input_ctx
*);
176 static int input_top_bit_set(struct input_ctx
*);
177 static int input_end_bel(struct input_ctx
*);
179 /* Command table comparison function. */
180 static int input_table_compare(const void *, const void *);
182 /* Command table entry. */
183 struct input_table_entry
{
189 /* Escape commands. */
190 enum input_esc_type
{
208 /* Escape command table. */
209 static const struct input_table_entry input_esc_table
[] = {
210 { '0', "(", INPUT_ESC_SCSG0_ON
},
211 { '0', ")", INPUT_ESC_SCSG1_ON
},
212 { '7', "", INPUT_ESC_DECSC
},
213 { '8', "", INPUT_ESC_DECRC
},
214 { '8', "#", INPUT_ESC_DECALN
},
215 { '=', "", INPUT_ESC_DECKPAM
},
216 { '>', "", INPUT_ESC_DECKPNM
},
217 { 'B', "(", INPUT_ESC_SCSG0_OFF
},
218 { 'B', ")", INPUT_ESC_SCSG1_OFF
},
219 { 'D', "", INPUT_ESC_IND
},
220 { 'E', "", INPUT_ESC_NEL
},
221 { 'H', "", INPUT_ESC_HTS
},
222 { 'M', "", INPUT_ESC_RI
},
223 { '\\', "", INPUT_ESC_ST
},
224 { 'c', "", INPUT_ESC_RIS
},
227 /* Control (CSI) commands. */
228 enum input_csi_type
{
255 INPUT_CSI_RM_PRIVATE
,
260 INPUT_CSI_SM_PRIVATE
,
268 /* Control (CSI) command table. */
269 static const struct input_table_entry input_csi_table
[] = {
270 { '@', "", INPUT_CSI_ICH
},
271 { 'A', "", INPUT_CSI_CUU
},
272 { 'B', "", INPUT_CSI_CUD
},
273 { 'C', "", INPUT_CSI_CUF
},
274 { 'D', "", INPUT_CSI_CUB
},
275 { 'E', "", INPUT_CSI_CNL
},
276 { 'F', "", INPUT_CSI_CPL
},
277 { 'G', "", INPUT_CSI_HPA
},
278 { 'H', "", INPUT_CSI_CUP
},
279 { 'J', "", INPUT_CSI_ED
},
280 { 'K', "", INPUT_CSI_EL
},
281 { 'L', "", INPUT_CSI_IL
},
282 { 'M', "", INPUT_CSI_DL
},
283 { 'P', "", INPUT_CSI_DCH
},
284 { 'S', "", INPUT_CSI_SU
},
285 { 'T', "", INPUT_CSI_SD
},
286 { 'X', "", INPUT_CSI_ECH
},
287 { 'Z', "", INPUT_CSI_CBT
},
288 { '`', "", INPUT_CSI_HPA
},
289 { 'b', "", INPUT_CSI_REP
},
290 { 'c', "", INPUT_CSI_DA
},
291 { 'c', ">", INPUT_CSI_DA_TWO
},
292 { 'd', "", INPUT_CSI_VPA
},
293 { 'f', "", INPUT_CSI_CUP
},
294 { 'g', "", INPUT_CSI_TBC
},
295 { 'h', "", INPUT_CSI_SM
},
296 { 'h', "?", INPUT_CSI_SM_PRIVATE
},
297 { 'l', "", INPUT_CSI_RM
},
298 { 'l', "?", INPUT_CSI_RM_PRIVATE
},
299 { 'm', "", INPUT_CSI_SGR
},
300 { 'm', ">", INPUT_CSI_MODSET
},
301 { 'n', "", INPUT_CSI_DSR
},
302 { 'n', ">", INPUT_CSI_MODOFF
},
303 { 'q', " ", INPUT_CSI_DECSCUSR
},
304 { 'q', ">", INPUT_CSI_XDA
},
305 { 'r', "", INPUT_CSI_DECSTBM
},
306 { 's', "", INPUT_CSI_SCP
},
307 { 't', "", INPUT_CSI_WINOPS
},
308 { 'u', "", INPUT_CSI_RCP
},
311 /* Input transition. */
312 struct input_transition
{
316 int (*handler
)(struct input_ctx
*);
317 const struct input_state
*state
;
323 void (*enter
)(struct input_ctx
*);
324 void (*exit
)(struct input_ctx
*);
325 const struct input_transition
*transitions
;
328 /* State transitions available from all states. */
329 #define INPUT_STATE_ANYWHERE \
330 { 0x18, 0x18, input_c0_dispatch, &input_state_ground }, \
331 { 0x1a, 0x1a, input_c0_dispatch, &input_state_ground }, \
332 { 0x1b, 0x1b, NULL, &input_state_esc_enter }
334 /* Forward declarations of state tables. */
335 static const struct input_transition input_state_ground_table
[];
336 static const struct input_transition input_state_esc_enter_table
[];
337 static const struct input_transition input_state_esc_intermediate_table
[];
338 static const struct input_transition input_state_csi_enter_table
[];
339 static const struct input_transition input_state_csi_parameter_table
[];
340 static const struct input_transition input_state_csi_intermediate_table
[];
341 static const struct input_transition input_state_csi_ignore_table
[];
342 static const struct input_transition input_state_dcs_enter_table
[];
343 static const struct input_transition input_state_dcs_parameter_table
[];
344 static const struct input_transition input_state_dcs_intermediate_table
[];
345 static const struct input_transition input_state_dcs_handler_table
[];
346 static const struct input_transition input_state_dcs_escape_table
[];
347 static const struct input_transition input_state_dcs_ignore_table
[];
348 static const struct input_transition input_state_osc_string_table
[];
349 static const struct input_transition input_state_apc_string_table
[];
350 static const struct input_transition input_state_rename_string_table
[];
351 static const struct input_transition input_state_consume_st_table
[];
353 /* ground state definition. */
354 static const struct input_state input_state_ground
= {
357 input_state_ground_table
360 /* esc_enter state definition. */
361 static const struct input_state input_state_esc_enter
= {
364 input_state_esc_enter_table
367 /* esc_intermediate state definition. */
368 static const struct input_state input_state_esc_intermediate
= {
371 input_state_esc_intermediate_table
374 /* csi_enter state definition. */
375 static const struct input_state input_state_csi_enter
= {
378 input_state_csi_enter_table
381 /* csi_parameter state definition. */
382 static const struct input_state input_state_csi_parameter
= {
385 input_state_csi_parameter_table
388 /* csi_intermediate state definition. */
389 static const struct input_state input_state_csi_intermediate
= {
392 input_state_csi_intermediate_table
395 /* csi_ignore state definition. */
396 static const struct input_state input_state_csi_ignore
= {
399 input_state_csi_ignore_table
402 /* dcs_enter state definition. */
403 static const struct input_state input_state_dcs_enter
= {
405 input_enter_dcs
, NULL
,
406 input_state_dcs_enter_table
409 /* dcs_parameter state definition. */
410 static const struct input_state input_state_dcs_parameter
= {
413 input_state_dcs_parameter_table
416 /* dcs_intermediate state definition. */
417 static const struct input_state input_state_dcs_intermediate
= {
420 input_state_dcs_intermediate_table
423 /* dcs_handler state definition. */
424 static const struct input_state input_state_dcs_handler
= {
427 input_state_dcs_handler_table
430 /* dcs_escape state definition. */
431 static const struct input_state input_state_dcs_escape
= {
434 input_state_dcs_escape_table
437 /* dcs_ignore state definition. */
438 static const struct input_state input_state_dcs_ignore
= {
441 input_state_dcs_ignore_table
444 /* osc_string state definition. */
445 static const struct input_state input_state_osc_string
= {
447 input_enter_osc
, input_exit_osc
,
448 input_state_osc_string_table
451 /* apc_string state definition. */
452 static const struct input_state input_state_apc_string
= {
454 input_enter_apc
, input_exit_apc
,
455 input_state_apc_string_table
458 /* rename_string state definition. */
459 static const struct input_state input_state_rename_string
= {
461 input_enter_rename
, input_exit_rename
,
462 input_state_rename_string_table
465 /* consume_st state definition. */
466 static const struct input_state input_state_consume_st
= {
468 input_enter_rename
, NULL
, /* rename also waits for ST */
469 input_state_consume_st_table
472 /* ground state table. */
473 static const struct input_transition input_state_ground_table
[] = {
474 INPUT_STATE_ANYWHERE
,
476 { 0x00, 0x17, input_c0_dispatch
, NULL
},
477 { 0x19, 0x19, input_c0_dispatch
, NULL
},
478 { 0x1c, 0x1f, input_c0_dispatch
, NULL
},
479 { 0x20, 0x7e, input_print
, NULL
},
480 { 0x7f, 0x7f, NULL
, NULL
},
481 { 0x80, 0xff, input_top_bit_set
, NULL
},
483 { -1, -1, NULL
, NULL
}
486 /* esc_enter state table. */
487 static const struct input_transition input_state_esc_enter_table
[] = {
488 INPUT_STATE_ANYWHERE
,
490 { 0x00, 0x17, input_c0_dispatch
, NULL
},
491 { 0x19, 0x19, input_c0_dispatch
, NULL
},
492 { 0x1c, 0x1f, input_c0_dispatch
, NULL
},
493 { 0x20, 0x2f, input_intermediate
, &input_state_esc_intermediate
},
494 { 0x30, 0x4f, input_esc_dispatch
, &input_state_ground
},
495 { 0x50, 0x50, NULL
, &input_state_dcs_enter
},
496 { 0x51, 0x57, input_esc_dispatch
, &input_state_ground
},
497 { 0x58, 0x58, NULL
, &input_state_consume_st
},
498 { 0x59, 0x59, input_esc_dispatch
, &input_state_ground
},
499 { 0x5a, 0x5a, input_esc_dispatch
, &input_state_ground
},
500 { 0x5b, 0x5b, NULL
, &input_state_csi_enter
},
501 { 0x5c, 0x5c, input_esc_dispatch
, &input_state_ground
},
502 { 0x5d, 0x5d, NULL
, &input_state_osc_string
},
503 { 0x5e, 0x5e, NULL
, &input_state_consume_st
},
504 { 0x5f, 0x5f, NULL
, &input_state_apc_string
},
505 { 0x60, 0x6a, input_esc_dispatch
, &input_state_ground
},
506 { 0x6b, 0x6b, NULL
, &input_state_rename_string
},
507 { 0x6c, 0x7e, input_esc_dispatch
, &input_state_ground
},
508 { 0x7f, 0xff, NULL
, NULL
},
510 { -1, -1, NULL
, NULL
}
513 /* esc_intermediate state table. */
514 static const struct input_transition input_state_esc_intermediate_table
[] = {
515 INPUT_STATE_ANYWHERE
,
517 { 0x00, 0x17, input_c0_dispatch
, NULL
},
518 { 0x19, 0x19, input_c0_dispatch
, NULL
},
519 { 0x1c, 0x1f, input_c0_dispatch
, NULL
},
520 { 0x20, 0x2f, input_intermediate
, NULL
},
521 { 0x30, 0x7e, input_esc_dispatch
, &input_state_ground
},
522 { 0x7f, 0xff, NULL
, NULL
},
524 { -1, -1, NULL
, NULL
}
527 /* csi_enter state table. */
528 static const struct input_transition input_state_csi_enter_table
[] = {
529 INPUT_STATE_ANYWHERE
,
531 { 0x00, 0x17, input_c0_dispatch
, NULL
},
532 { 0x19, 0x19, input_c0_dispatch
, NULL
},
533 { 0x1c, 0x1f, input_c0_dispatch
, NULL
},
534 { 0x20, 0x2f, input_intermediate
, &input_state_csi_intermediate
},
535 { 0x30, 0x39, input_parameter
, &input_state_csi_parameter
},
536 { 0x3a, 0x3a, input_parameter
, &input_state_csi_parameter
},
537 { 0x3b, 0x3b, input_parameter
, &input_state_csi_parameter
},
538 { 0x3c, 0x3f, input_intermediate
, &input_state_csi_parameter
},
539 { 0x40, 0x7e, input_csi_dispatch
, &input_state_ground
},
540 { 0x7f, 0xff, NULL
, NULL
},
542 { -1, -1, NULL
, NULL
}
545 /* csi_parameter state table. */
546 static const struct input_transition input_state_csi_parameter_table
[] = {
547 INPUT_STATE_ANYWHERE
,
549 { 0x00, 0x17, input_c0_dispatch
, NULL
},
550 { 0x19, 0x19, input_c0_dispatch
, NULL
},
551 { 0x1c, 0x1f, input_c0_dispatch
, NULL
},
552 { 0x20, 0x2f, input_intermediate
, &input_state_csi_intermediate
},
553 { 0x30, 0x39, input_parameter
, NULL
},
554 { 0x3a, 0x3a, input_parameter
, NULL
},
555 { 0x3b, 0x3b, input_parameter
, NULL
},
556 { 0x3c, 0x3f, NULL
, &input_state_csi_ignore
},
557 { 0x40, 0x7e, input_csi_dispatch
, &input_state_ground
},
558 { 0x7f, 0xff, NULL
, NULL
},
560 { -1, -1, NULL
, NULL
}
563 /* csi_intermediate state table. */
564 static const struct input_transition input_state_csi_intermediate_table
[] = {
565 INPUT_STATE_ANYWHERE
,
567 { 0x00, 0x17, input_c0_dispatch
, NULL
},
568 { 0x19, 0x19, input_c0_dispatch
, NULL
},
569 { 0x1c, 0x1f, input_c0_dispatch
, NULL
},
570 { 0x20, 0x2f, input_intermediate
, NULL
},
571 { 0x30, 0x3f, NULL
, &input_state_csi_ignore
},
572 { 0x40, 0x7e, input_csi_dispatch
, &input_state_ground
},
573 { 0x7f, 0xff, NULL
, NULL
},
575 { -1, -1, NULL
, NULL
}
578 /* csi_ignore state table. */
579 static const struct input_transition input_state_csi_ignore_table
[] = {
580 INPUT_STATE_ANYWHERE
,
582 { 0x00, 0x17, input_c0_dispatch
, NULL
},
583 { 0x19, 0x19, input_c0_dispatch
, NULL
},
584 { 0x1c, 0x1f, input_c0_dispatch
, NULL
},
585 { 0x20, 0x3f, NULL
, NULL
},
586 { 0x40, 0x7e, NULL
, &input_state_ground
},
587 { 0x7f, 0xff, NULL
, NULL
},
589 { -1, -1, NULL
, NULL
}
592 /* dcs_enter state table. */
593 static const struct input_transition input_state_dcs_enter_table
[] = {
594 INPUT_STATE_ANYWHERE
,
596 { 0x00, 0x17, NULL
, NULL
},
597 { 0x19, 0x19, NULL
, NULL
},
598 { 0x1c, 0x1f, NULL
, NULL
},
599 { 0x20, 0x2f, input_intermediate
, &input_state_dcs_intermediate
},
600 { 0x30, 0x39, input_parameter
, &input_state_dcs_parameter
},
601 { 0x3a, 0x3a, NULL
, &input_state_dcs_ignore
},
602 { 0x3b, 0x3b, input_parameter
, &input_state_dcs_parameter
},
603 { 0x3c, 0x3f, input_intermediate
, &input_state_dcs_parameter
},
604 { 0x40, 0x7e, input_input
, &input_state_dcs_handler
},
605 { 0x7f, 0xff, NULL
, NULL
},
607 { -1, -1, NULL
, NULL
}
610 /* dcs_parameter state table. */
611 static const struct input_transition input_state_dcs_parameter_table
[] = {
612 INPUT_STATE_ANYWHERE
,
614 { 0x00, 0x17, NULL
, NULL
},
615 { 0x19, 0x19, NULL
, NULL
},
616 { 0x1c, 0x1f, NULL
, NULL
},
617 { 0x20, 0x2f, input_intermediate
, &input_state_dcs_intermediate
},
618 { 0x30, 0x39, input_parameter
, NULL
},
619 { 0x3a, 0x3a, NULL
, &input_state_dcs_ignore
},
620 { 0x3b, 0x3b, input_parameter
, NULL
},
621 { 0x3c, 0x3f, NULL
, &input_state_dcs_ignore
},
622 { 0x40, 0x7e, input_input
, &input_state_dcs_handler
},
623 { 0x7f, 0xff, NULL
, NULL
},
625 { -1, -1, NULL
, NULL
}
628 /* dcs_intermediate state table. */
629 static const struct input_transition input_state_dcs_intermediate_table
[] = {
630 INPUT_STATE_ANYWHERE
,
632 { 0x00, 0x17, NULL
, NULL
},
633 { 0x19, 0x19, NULL
, NULL
},
634 { 0x1c, 0x1f, NULL
, NULL
},
635 { 0x20, 0x2f, input_intermediate
, NULL
},
636 { 0x30, 0x3f, NULL
, &input_state_dcs_ignore
},
637 { 0x40, 0x7e, input_input
, &input_state_dcs_handler
},
638 { 0x7f, 0xff, NULL
, NULL
},
640 { -1, -1, NULL
, NULL
}
643 /* dcs_handler state table. */
644 static const struct input_transition input_state_dcs_handler_table
[] = {
645 /* No INPUT_STATE_ANYWHERE */
647 { 0x00, 0x1a, input_input
, NULL
},
648 { 0x1b, 0x1b, NULL
, &input_state_dcs_escape
},
649 { 0x1c, 0xff, input_input
, NULL
},
651 { -1, -1, NULL
, NULL
}
654 /* dcs_escape state table. */
655 static const struct input_transition input_state_dcs_escape_table
[] = {
656 /* No INPUT_STATE_ANYWHERE */
658 { 0x00, 0x5b, input_input
, &input_state_dcs_handler
},
659 { 0x5c, 0x5c, input_dcs_dispatch
, &input_state_ground
},
660 { 0x5d, 0xff, input_input
, &input_state_dcs_handler
},
662 { -1, -1, NULL
, NULL
}
665 /* dcs_ignore state table. */
666 static const struct input_transition input_state_dcs_ignore_table
[] = {
667 INPUT_STATE_ANYWHERE
,
669 { 0x00, 0x17, NULL
, NULL
},
670 { 0x19, 0x19, NULL
, NULL
},
671 { 0x1c, 0x1f, NULL
, NULL
},
672 { 0x20, 0xff, NULL
, NULL
},
674 { -1, -1, NULL
, NULL
}
677 /* osc_string state table. */
678 static const struct input_transition input_state_osc_string_table
[] = {
679 INPUT_STATE_ANYWHERE
,
681 { 0x00, 0x06, NULL
, NULL
},
682 { 0x07, 0x07, input_end_bel
, &input_state_ground
},
683 { 0x08, 0x17, NULL
, NULL
},
684 { 0x19, 0x19, NULL
, NULL
},
685 { 0x1c, 0x1f, NULL
, NULL
},
686 { 0x20, 0xff, input_input
, NULL
},
688 { -1, -1, NULL
, NULL
}
691 /* apc_string state table. */
692 static const struct input_transition input_state_apc_string_table
[] = {
693 INPUT_STATE_ANYWHERE
,
695 { 0x00, 0x17, NULL
, NULL
},
696 { 0x19, 0x19, NULL
, NULL
},
697 { 0x1c, 0x1f, NULL
, NULL
},
698 { 0x20, 0xff, input_input
, NULL
},
700 { -1, -1, NULL
, NULL
}
703 /* rename_string state table. */
704 static const struct input_transition input_state_rename_string_table
[] = {
705 INPUT_STATE_ANYWHERE
,
707 { 0x00, 0x17, NULL
, NULL
},
708 { 0x19, 0x19, NULL
, NULL
},
709 { 0x1c, 0x1f, NULL
, NULL
},
710 { 0x20, 0xff, input_input
, NULL
},
712 { -1, -1, NULL
, NULL
}
715 /* consume_st state table. */
716 static const struct input_transition input_state_consume_st_table
[] = {
717 INPUT_STATE_ANYWHERE
,
719 { 0x00, 0x17, NULL
, NULL
},
720 { 0x19, 0x19, NULL
, NULL
},
721 { 0x1c, 0x1f, NULL
, NULL
},
722 { 0x20, 0xff, NULL
, NULL
},
724 { -1, -1, NULL
, NULL
}
727 /* Input table compare. */
729 input_table_compare(const void *key
, const void *value
)
731 const struct input_ctx
*ictx
= key
;
732 const struct input_table_entry
*entry
= value
;
734 if (ictx
->ch
!= entry
->ch
)
735 return (ictx
->ch
- entry
->ch
);
736 return (strcmp(ictx
->interm_buf
, entry
->interm
));
740 * Timer - if this expires then have been waiting for a terminator for too
741 * long, so reset to ground.
744 input_timer_callback(__unused
int fd
, __unused
short events
, void *arg
)
746 struct input_ctx
*ictx
= arg
;
748 log_debug("%s: %s expired" , __func__
, ictx
->state
->name
);
749 input_reset(ictx
, 0);
752 /* Start the timer. */
754 input_start_timer(struct input_ctx
*ictx
)
756 struct timeval tv
= { .tv_sec
= 5, .tv_usec
= 0 };
758 event_del(&ictx
->timer
);
759 event_add(&ictx
->timer
, &tv
);
762 /* Reset cell state to default. */
764 input_reset_cell(struct input_ctx
*ictx
)
766 memcpy(&ictx
->cell
.cell
, &grid_default_cell
, sizeof ictx
->cell
.cell
);
768 ictx
->cell
.g0set
= ictx
->cell
.g1set
= 0;
770 memcpy(&ictx
->old_cell
, &ictx
->cell
, sizeof ictx
->old_cell
);
775 /* Save screen state. */
777 input_save_state(struct input_ctx
*ictx
)
779 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
780 struct screen
*s
= sctx
->s
;
782 memcpy(&ictx
->old_cell
, &ictx
->cell
, sizeof ictx
->old_cell
);
783 ictx
->old_cx
= s
->cx
;
784 ictx
->old_cy
= s
->cy
;
785 ictx
->old_mode
= s
->mode
;
788 /* Restore screen state. */
790 input_restore_state(struct input_ctx
*ictx
)
792 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
794 memcpy(&ictx
->cell
, &ictx
->old_cell
, sizeof ictx
->cell
);
795 if (ictx
->old_mode
& MODE_ORIGIN
)
796 screen_write_mode_set(sctx
, MODE_ORIGIN
);
798 screen_write_mode_clear(sctx
, MODE_ORIGIN
);
799 screen_write_cursormove(sctx
, ictx
->old_cx
, ictx
->old_cy
, 0);
802 /* Initialise input parser. */
804 input_init(struct window_pane
*wp
, struct bufferevent
*bev
,
805 struct colour_palette
*palette
)
807 struct input_ctx
*ictx
;
809 ictx
= xcalloc(1, sizeof *ictx
);
812 ictx
->palette
= palette
;
814 ictx
->input_space
= INPUT_BUF_START
;
815 ictx
->input_buf
= xmalloc(INPUT_BUF_START
);
817 ictx
->since_ground
= evbuffer_new();
818 if (ictx
->since_ground
== NULL
)
819 fatalx("out of memory");
821 evtimer_set(&ictx
->timer
, input_timer_callback
, ictx
);
823 input_reset(ictx
, 0);
827 /* Destroy input parser. */
829 input_free(struct input_ctx
*ictx
)
833 for (i
= 0; i
< ictx
->param_list_len
; i
++) {
834 if (ictx
->param_list
[i
].type
== INPUT_STRING
)
835 free(ictx
->param_list
[i
].str
);
838 event_del(&ictx
->timer
);
840 free(ictx
->input_buf
);
841 evbuffer_free(ictx
->since_ground
);
846 /* Reset input state and clear screen. */
848 input_reset(struct input_ctx
*ictx
, int clear
)
850 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
851 struct window_pane
*wp
= ictx
->wp
;
853 input_reset_cell(ictx
);
855 if (clear
&& wp
!= NULL
) {
856 if (TAILQ_EMPTY(&wp
->modes
))
857 screen_write_start_pane(sctx
, wp
, &wp
->base
);
859 screen_write_start(sctx
, &wp
->base
);
860 screen_write_reset(sctx
);
861 screen_write_stop(sctx
);
868 ictx
->state
= &input_state_ground
;
872 /* Return pending data. */
874 input_pending(struct input_ctx
*ictx
)
876 return (ictx
->since_ground
);
879 /* Change input state. */
881 input_set_state(struct input_ctx
*ictx
, const struct input_transition
*itr
)
883 if (ictx
->state
->exit
!= NULL
)
884 ictx
->state
->exit(ictx
);
885 ictx
->state
= itr
->state
;
886 if (ictx
->state
->enter
!= NULL
)
887 ictx
->state
->enter(ictx
);
892 input_parse(struct input_ctx
*ictx
, u_char
*buf
, size_t len
)
894 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
895 const struct input_state
*state
= NULL
;
896 const struct input_transition
*itr
= NULL
;
899 /* Parse the input. */
901 ictx
->ch
= buf
[off
++];
903 /* Find the transition. */
904 if (ictx
->state
!= state
||
906 ictx
->ch
< itr
->first
||
907 ictx
->ch
> itr
->last
) {
908 itr
= ictx
->state
->transitions
;
909 while (itr
->first
!= -1 && itr
->last
!= -1) {
910 if (ictx
->ch
>= itr
->first
&&
911 ictx
->ch
<= itr
->last
)
915 if (itr
->first
== -1 || itr
->last
== -1) {
916 /* No transition? Eh? */
917 fatalx("no transition from state");
923 * Any state except print stops the current collection. This is
924 * an optimization to avoid checking if the attributes have
925 * changed for every character. It will stop unnecessarily for
926 * sequences that don't make a terminal change, but they should
929 if (itr
->handler
!= input_print
)
930 screen_write_collect_end(sctx
);
933 * Execute the handler, if any. Don't switch state if it
936 if (itr
->handler
!= NULL
&& itr
->handler(ictx
) != 0)
939 /* And switch state, if necessary. */
940 if (itr
->state
!= NULL
)
941 input_set_state(ictx
, itr
);
943 /* If not in ground state, save input. */
944 if (ictx
->state
!= &input_state_ground
)
945 evbuffer_add(ictx
->since_ground
, &ictx
->ch
, 1);
949 /* Parse input from pane. */
951 input_parse_pane(struct window_pane
*wp
)
956 new_data
= window_pane_get_new_data(wp
, &wp
->offset
, &new_size
);
957 input_parse_buffer(wp
, new_data
, new_size
);
958 window_pane_update_used_data(wp
, &wp
->offset
, new_size
);
961 /* Parse given input. */
963 input_parse_buffer(struct window_pane
*wp
, u_char
*buf
, size_t len
)
965 struct input_ctx
*ictx
= wp
->ictx
;
966 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
971 window_update_activity(wp
->window
);
972 wp
->flags
|= PANE_CHANGED
;
974 /* NULL wp if there is a mode set as don't want to update the tty. */
975 if (TAILQ_EMPTY(&wp
->modes
))
976 screen_write_start_pane(sctx
, wp
, &wp
->base
);
978 screen_write_start(sctx
, &wp
->base
);
980 log_debug("%s: %%%u %s, %zu bytes: %.*s", __func__
, wp
->id
,
981 ictx
->state
->name
, len
, (int)len
, buf
);
983 input_parse(ictx
, buf
, len
);
984 screen_write_stop(sctx
);
987 /* Parse given input for screen. */
989 input_parse_screen(struct input_ctx
*ictx
, struct screen
*s
,
990 screen_write_init_ctx_cb cb
, void *arg
, u_char
*buf
, size_t len
)
992 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
997 screen_write_start_callback(sctx
, s
, cb
, arg
);
998 input_parse(ictx
, buf
, len
);
999 screen_write_stop(sctx
);
1002 /* Split the parameter list (if any). */
1004 input_split(struct input_ctx
*ictx
)
1008 struct input_param
*ip
;
1011 for (i
= 0; i
< ictx
->param_list_len
; i
++) {
1012 if (ictx
->param_list
[i
].type
== INPUT_STRING
)
1013 free(ictx
->param_list
[i
].str
);
1015 ictx
->param_list_len
= 0;
1017 if (ictx
->param_len
== 0)
1019 ip
= &ictx
->param_list
[0];
1021 ptr
= ictx
->param_buf
;
1022 while ((out
= strsep(&ptr
, ";")) != NULL
) {
1024 ip
->type
= INPUT_MISSING
;
1026 if (strchr(out
, ':') != NULL
) {
1027 ip
->type
= INPUT_STRING
;
1028 ip
->str
= xstrdup(out
);
1030 ip
->type
= INPUT_NUMBER
;
1031 ip
->num
= strtonum(out
, 0, INT_MAX
, &errstr
);
1036 ip
= &ictx
->param_list
[++ictx
->param_list_len
];
1037 if (ictx
->param_list_len
== nitems(ictx
->param_list
))
1041 for (i
= 0; i
< ictx
->param_list_len
; i
++) {
1042 ip
= &ictx
->param_list
[i
];
1043 if (ip
->type
== INPUT_MISSING
)
1044 log_debug("parameter %u: missing", i
);
1045 else if (ip
->type
== INPUT_STRING
)
1046 log_debug("parameter %u: string %s", i
, ip
->str
);
1047 else if (ip
->type
== INPUT_NUMBER
)
1048 log_debug("parameter %u: number %d", i
, ip
->num
);
1054 /* Get an argument or return default value. */
1056 input_get(struct input_ctx
*ictx
, u_int validx
, int minval
, int defval
)
1058 struct input_param
*ip
;
1061 if (validx
>= ictx
->param_list_len
)
1063 ip
= &ictx
->param_list
[validx
];
1064 if (ip
->type
== INPUT_MISSING
)
1066 if (ip
->type
== INPUT_STRING
)
1069 if (retval
< minval
)
1074 /* Reply to terminal query. */
1076 input_reply(struct input_ctx
*ictx
, const char *fmt
, ...)
1078 struct bufferevent
*bev
= ictx
->event
;
1086 xvasprintf(&reply
, fmt
, ap
);
1089 log_debug("%s: %s", __func__
, reply
);
1090 bufferevent_write(bev
, reply
, strlen(reply
));
1094 /* Clear saved state. */
1096 input_clear(struct input_ctx
*ictx
)
1098 event_del(&ictx
->timer
);
1100 *ictx
->interm_buf
= '\0';
1101 ictx
->interm_len
= 0;
1103 *ictx
->param_buf
= '\0';
1104 ictx
->param_len
= 0;
1106 *ictx
->input_buf
= '\0';
1107 ictx
->input_len
= 0;
1109 ictx
->input_end
= INPUT_END_ST
;
1111 ictx
->flags
&= ~INPUT_DISCARD
;
1114 /* Reset for ground state. */
1116 input_ground(struct input_ctx
*ictx
)
1118 event_del(&ictx
->timer
);
1119 evbuffer_drain(ictx
->since_ground
, EVBUFFER_LENGTH(ictx
->since_ground
));
1121 if (ictx
->input_space
> INPUT_BUF_START
) {
1122 ictx
->input_space
= INPUT_BUF_START
;
1123 ictx
->input_buf
= xrealloc(ictx
->input_buf
, INPUT_BUF_START
);
1127 /* Output this character to the screen. */
1129 input_print(struct input_ctx
*ictx
)
1131 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
1134 ictx
->utf8started
= 0; /* can't be valid UTF-8 */
1136 set
= ictx
->cell
.set
== 0 ? ictx
->cell
.g0set
: ictx
->cell
.g1set
;
1138 ictx
->cell
.cell
.attr
|= GRID_ATTR_CHARSET
;
1140 ictx
->cell
.cell
.attr
&= ~GRID_ATTR_CHARSET
;
1142 utf8_set(&ictx
->cell
.cell
.data
, ictx
->ch
);
1143 screen_write_collect_add(sctx
, &ictx
->cell
.cell
);
1144 ictx
->last
= ictx
->ch
;
1146 ictx
->cell
.cell
.attr
&= ~GRID_ATTR_CHARSET
;
1151 /* Collect intermediate string. */
1153 input_intermediate(struct input_ctx
*ictx
)
1155 if (ictx
->interm_len
== (sizeof ictx
->interm_buf
) - 1)
1156 ictx
->flags
|= INPUT_DISCARD
;
1158 ictx
->interm_buf
[ictx
->interm_len
++] = ictx
->ch
;
1159 ictx
->interm_buf
[ictx
->interm_len
] = '\0';
1165 /* Collect parameter string. */
1167 input_parameter(struct input_ctx
*ictx
)
1169 if (ictx
->param_len
== (sizeof ictx
->param_buf
) - 1)
1170 ictx
->flags
|= INPUT_DISCARD
;
1172 ictx
->param_buf
[ictx
->param_len
++] = ictx
->ch
;
1173 ictx
->param_buf
[ictx
->param_len
] = '\0';
1179 /* Collect input string. */
1181 input_input(struct input_ctx
*ictx
)
1185 available
= ictx
->input_space
;
1186 while (ictx
->input_len
+ 1 >= available
) {
1188 if (available
> INPUT_BUF_LIMIT
) {
1189 ictx
->flags
|= INPUT_DISCARD
;
1192 ictx
->input_buf
= xrealloc(ictx
->input_buf
, available
);
1193 ictx
->input_space
= available
;
1195 ictx
->input_buf
[ictx
->input_len
++] = ictx
->ch
;
1196 ictx
->input_buf
[ictx
->input_len
] = '\0';
1201 /* Execute C0 control sequence. */
1203 input_c0_dispatch(struct input_ctx
*ictx
)
1205 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
1206 struct window_pane
*wp
= ictx
->wp
;
1207 struct screen
*s
= sctx
->s
;
1209 ictx
->utf8started
= 0; /* can't be valid UTF-8 */
1211 log_debug("%s: '%c'", __func__
, ictx
->ch
);
1214 case '\000': /* NUL */
1216 case '\007': /* BEL */
1218 alerts_queue(wp
->window
, WINDOW_BELL
);
1220 case '\010': /* BS */
1221 screen_write_backspace(sctx
);
1223 case '\011': /* HT */
1224 /* Don't tab beyond the end of the line. */
1225 if (s
->cx
>= screen_size_x(s
) - 1)
1228 /* Find the next tab point, or use the last column if none. */
1231 if (bit_test(s
->tabs
, s
->cx
))
1233 } while (s
->cx
< screen_size_x(s
) - 1);
1235 case '\012': /* LF */
1236 case '\013': /* VT */
1237 case '\014': /* FF */
1238 screen_write_linefeed(sctx
, 0, ictx
->cell
.cell
.bg
);
1239 if (s
->mode
& MODE_CRLF
)
1240 screen_write_carriagereturn(sctx
);
1242 case '\015': /* CR */
1243 screen_write_carriagereturn(sctx
);
1245 case '\016': /* SO */
1248 case '\017': /* SI */
1252 log_debug("%s: unknown '%c'", __func__
, ictx
->ch
);
1260 /* Execute escape sequence. */
1262 input_esc_dispatch(struct input_ctx
*ictx
)
1264 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
1265 struct screen
*s
= sctx
->s
;
1266 struct input_table_entry
*entry
;
1268 if (ictx
->flags
& INPUT_DISCARD
)
1270 log_debug("%s: '%c', %s", __func__
, ictx
->ch
, ictx
->interm_buf
);
1272 entry
= bsearch(ictx
, input_esc_table
, nitems(input_esc_table
),
1273 sizeof input_esc_table
[0], input_table_compare
);
1274 if (entry
== NULL
) {
1275 log_debug("%s: unknown '%c'", __func__
, ictx
->ch
);
1279 switch (entry
->type
) {
1281 colour_palette_clear(ictx
->palette
);
1282 input_reset_cell(ictx
);
1283 screen_write_reset(sctx
);
1284 screen_write_fullredraw(sctx
);
1287 screen_write_linefeed(sctx
, 0, ictx
->cell
.cell
.bg
);
1290 screen_write_carriagereturn(sctx
);
1291 screen_write_linefeed(sctx
, 0, ictx
->cell
.cell
.bg
);
1294 if (s
->cx
< screen_size_x(s
))
1295 bit_set(s
->tabs
, s
->cx
);
1298 screen_write_reverseindex(sctx
, ictx
->cell
.cell
.bg
);
1300 case INPUT_ESC_DECKPAM
:
1301 screen_write_mode_set(sctx
, MODE_KKEYPAD
);
1303 case INPUT_ESC_DECKPNM
:
1304 screen_write_mode_clear(sctx
, MODE_KKEYPAD
);
1306 case INPUT_ESC_DECSC
:
1307 input_save_state(ictx
);
1309 case INPUT_ESC_DECRC
:
1310 input_restore_state(ictx
);
1312 case INPUT_ESC_DECALN
:
1313 screen_write_alignmenttest(sctx
);
1315 case INPUT_ESC_SCSG0_ON
:
1316 ictx
->cell
.g0set
= 1;
1318 case INPUT_ESC_SCSG0_OFF
:
1319 ictx
->cell
.g0set
= 0;
1321 case INPUT_ESC_SCSG1_ON
:
1322 ictx
->cell
.g1set
= 1;
1324 case INPUT_ESC_SCSG1_OFF
:
1325 ictx
->cell
.g1set
= 0;
1328 /* ST terminates OSC but the state transition already did it. */
1336 /* Execute control sequence. */
1338 input_csi_dispatch(struct input_ctx
*ictx
)
1340 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
1341 struct screen
*s
= sctx
->s
;
1342 struct input_table_entry
*entry
;
1344 u_int cx
, bg
= ictx
->cell
.cell
.bg
;
1346 if (ictx
->flags
& INPUT_DISCARD
)
1349 log_debug("%s: '%c' \"%s\" \"%s\"", __func__
, ictx
->ch
,
1350 ictx
->interm_buf
, ictx
->param_buf
);
1352 if (input_split(ictx
) != 0)
1355 entry
= bsearch(ictx
, input_csi_table
, nitems(input_csi_table
),
1356 sizeof input_csi_table
[0], input_table_compare
);
1357 if (entry
== NULL
) {
1358 log_debug("%s: unknown '%c'", __func__
, ictx
->ch
);
1362 switch (entry
->type
) {
1364 /* Find the previous tab point, n times. */
1366 if (cx
> screen_size_x(s
) - 1)
1367 cx
= screen_size_x(s
) - 1;
1368 n
= input_get(ictx
, 0, 1, 1);
1371 while (cx
> 0 && n
-- > 0) {
1374 while (cx
> 0 && !bit_test(s
->tabs
, cx
));
1379 n
= input_get(ictx
, 0, 1, 1);
1381 screen_write_cursorleft(sctx
, n
);
1384 n
= input_get(ictx
, 0, 1, 1);
1386 screen_write_cursordown(sctx
, n
);
1389 n
= input_get(ictx
, 0, 1, 1);
1391 screen_write_cursorright(sctx
, n
);
1394 n
= input_get(ictx
, 0, 1, 1);
1395 m
= input_get(ictx
, 1, 1, 1);
1396 if (n
!= -1 && m
!= -1)
1397 screen_write_cursormove(sctx
, m
- 1, n
- 1, 1);
1399 case INPUT_CSI_MODSET
:
1400 n
= input_get(ictx
, 0, 0, 0);
1401 m
= input_get(ictx
, 1, 0, 0);
1402 if (options_get_number(global_options
, "extended-keys") == 2)
1404 if (n
== 0 || (n
== 4 && m
== 0))
1405 screen_write_mode_clear(sctx
, MODE_KEXTENDED
);
1406 else if (n
== 4 && (m
== 1 || m
== 2))
1407 screen_write_mode_set(sctx
, MODE_KEXTENDED
);
1409 case INPUT_CSI_MODOFF
:
1410 n
= input_get(ictx
, 0, 0, 0);
1412 screen_write_mode_clear(sctx
, MODE_KEXTENDED
);
1414 case INPUT_CSI_WINOPS
:
1415 input_csi_dispatch_winops(ictx
);
1418 n
= input_get(ictx
, 0, 1, 1);
1420 screen_write_cursorup(sctx
, n
);
1423 n
= input_get(ictx
, 0, 1, 1);
1425 screen_write_carriagereturn(sctx
);
1426 screen_write_cursordown(sctx
, n
);
1430 n
= input_get(ictx
, 0, 1, 1);
1432 screen_write_carriagereturn(sctx
);
1433 screen_write_cursorup(sctx
, n
);
1437 switch (input_get(ictx
, 0, 0, 0)) {
1441 input_reply(ictx
, "\033[?1;2c");
1444 log_debug("%s: unknown '%c'", __func__
, ictx
->ch
);
1448 case INPUT_CSI_DA_TWO
:
1449 switch (input_get(ictx
, 0, 0, 0)) {
1453 input_reply(ictx
, "\033[>84;0;0c");
1456 log_debug("%s: unknown '%c'", __func__
, ictx
->ch
);
1461 n
= input_get(ictx
, 0, 1, 1);
1463 screen_write_clearcharacter(sctx
, n
, bg
);
1466 n
= input_get(ictx
, 0, 1, 1);
1468 screen_write_deletecharacter(sctx
, n
, bg
);
1470 case INPUT_CSI_DECSTBM
:
1471 n
= input_get(ictx
, 0, 1, 1);
1472 m
= input_get(ictx
, 1, 1, screen_size_y(s
));
1473 if (n
!= -1 && m
!= -1)
1474 screen_write_scrollregion(sctx
, n
- 1, m
- 1);
1477 n
= input_get(ictx
, 0, 1, 1);
1479 screen_write_deleteline(sctx
, n
, bg
);
1482 switch (input_get(ictx
, 0, 0, 0)) {
1486 input_reply(ictx
, "\033[0n");
1489 input_reply(ictx
, "\033[%u;%uR", s
->cy
+ 1, s
->cx
+ 1);
1492 log_debug("%s: unknown '%c'", __func__
, ictx
->ch
);
1497 switch (input_get(ictx
, 0, 0, 0)) {
1501 screen_write_clearendofscreen(sctx
, bg
);
1504 screen_write_clearstartofscreen(sctx
, bg
);
1507 screen_write_clearscreen(sctx
, bg
);
1510 if (input_get(ictx
, 1, 0, 0) == 0) {
1512 * Linux console extension to clear history
1513 * (for example before locking the screen).
1515 screen_write_clearhistory(sctx
);
1519 log_debug("%s: unknown '%c'", __func__
, ictx
->ch
);
1524 switch (input_get(ictx
, 0, 0, 0)) {
1528 screen_write_clearendofline(sctx
, bg
);
1531 screen_write_clearstartofline(sctx
, bg
);
1534 screen_write_clearline(sctx
, bg
);
1537 log_debug("%s: unknown '%c'", __func__
, ictx
->ch
);
1542 n
= input_get(ictx
, 0, 1, 1);
1544 screen_write_cursormove(sctx
, n
- 1, -1, 1);
1547 n
= input_get(ictx
, 0, 1, 1);
1549 screen_write_insertcharacter(sctx
, n
, bg
);
1552 n
= input_get(ictx
, 0, 1, 1);
1554 screen_write_insertline(sctx
, n
, bg
);
1557 n
= input_get(ictx
, 0, 1, 1);
1561 m
= screen_size_x(s
) - s
->cx
;
1565 if (ictx
->last
== -1)
1567 ictx
->ch
= ictx
->last
;
1569 for (i
= 0; i
< n
; i
++)
1573 input_restore_state(ictx
);
1576 input_csi_dispatch_rm(ictx
);
1578 case INPUT_CSI_RM_PRIVATE
:
1579 input_csi_dispatch_rm_private(ictx
);
1582 input_save_state(ictx
);
1585 input_csi_dispatch_sgr(ictx
);
1588 input_csi_dispatch_sm(ictx
);
1590 case INPUT_CSI_SM_PRIVATE
:
1591 input_csi_dispatch_sm_private(ictx
);
1594 n
= input_get(ictx
, 0, 1, 1);
1596 screen_write_scrollup(sctx
, n
, bg
);
1599 n
= input_get(ictx
, 0, 1, 1);
1601 screen_write_scrolldown(sctx
, n
, bg
);
1604 switch (input_get(ictx
, 0, 0, 0)) {
1608 if (s
->cx
< screen_size_x(s
))
1609 bit_clear(s
->tabs
, s
->cx
);
1612 bit_nclear(s
->tabs
, 0, screen_size_x(s
) - 1);
1615 log_debug("%s: unknown '%c'", __func__
, ictx
->ch
);
1620 n
= input_get(ictx
, 0, 1, 1);
1622 screen_write_cursormove(sctx
, -1, n
- 1, 1);
1624 case INPUT_CSI_DECSCUSR
:
1625 n
= input_get(ictx
, 0, 0, 0);
1627 screen_set_cursor_style(n
, &s
->cstyle
, &s
->mode
);
1630 n
= input_get(ictx
, 0, 0, 0);
1632 input_reply(ictx
, "\033P>|tmux %s\033\\", getversion());
1641 /* Handle CSI RM. */
1643 input_csi_dispatch_rm(struct input_ctx
*ictx
)
1645 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
1648 for (i
= 0; i
< ictx
->param_list_len
; i
++) {
1649 switch (input_get(ictx
, i
, 0, -1)) {
1653 screen_write_mode_clear(sctx
, MODE_INSERT
);
1656 screen_write_mode_set(sctx
, MODE_CURSOR_VERY_VISIBLE
);
1659 log_debug("%s: unknown '%c'", __func__
, ictx
->ch
);
1665 /* Handle CSI private RM. */
1667 input_csi_dispatch_rm_private(struct input_ctx
*ictx
)
1669 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
1670 struct grid_cell
*gc
= &ictx
->cell
.cell
;
1673 for (i
= 0; i
< ictx
->param_list_len
; i
++) {
1674 switch (input_get(ictx
, i
, 0, -1)) {
1677 case 1: /* DECCKM */
1678 screen_write_mode_clear(sctx
, MODE_KCURSOR
);
1680 case 3: /* DECCOLM */
1681 screen_write_cursormove(sctx
, 0, 0, 1);
1682 screen_write_clearscreen(sctx
, gc
->bg
);
1685 screen_write_mode_clear(sctx
, MODE_ORIGIN
);
1686 screen_write_cursormove(sctx
, 0, 0, 1);
1688 case 7: /* DECAWM */
1689 screen_write_mode_clear(sctx
, MODE_WRAP
);
1692 screen_write_mode_clear(sctx
, MODE_CURSOR_BLINKING
);
1693 screen_write_mode_set(sctx
, MODE_CURSOR_BLINKING_SET
);
1696 screen_write_mode_clear(sctx
, MODE_CURSOR
);
1702 screen_write_mode_clear(sctx
, ALL_MOUSE_MODES
);
1705 screen_write_mode_clear(sctx
, MODE_FOCUSON
);
1708 screen_write_mode_clear(sctx
, MODE_MOUSE_UTF8
);
1711 screen_write_mode_clear(sctx
, MODE_MOUSE_SGR
);
1715 screen_write_alternateoff(sctx
, gc
, 0);
1718 screen_write_alternateoff(sctx
, gc
, 1);
1721 screen_write_mode_clear(sctx
, MODE_BRACKETPASTE
);
1724 log_debug("%s: unknown '%c'", __func__
, ictx
->ch
);
1730 /* Handle CSI SM. */
1732 input_csi_dispatch_sm(struct input_ctx
*ictx
)
1734 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
1737 for (i
= 0; i
< ictx
->param_list_len
; i
++) {
1738 switch (input_get(ictx
, i
, 0, -1)) {
1742 screen_write_mode_set(sctx
, MODE_INSERT
);
1745 screen_write_mode_clear(sctx
, MODE_CURSOR_VERY_VISIBLE
);
1748 log_debug("%s: unknown '%c'", __func__
, ictx
->ch
);
1754 /* Handle CSI private SM. */
1756 input_csi_dispatch_sm_private(struct input_ctx
*ictx
)
1758 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
1759 struct grid_cell
*gc
= &ictx
->cell
.cell
;
1762 for (i
= 0; i
< ictx
->param_list_len
; i
++) {
1763 switch (input_get(ictx
, i
, 0, -1)) {
1766 case 1: /* DECCKM */
1767 screen_write_mode_set(sctx
, MODE_KCURSOR
);
1769 case 3: /* DECCOLM */
1770 screen_write_cursormove(sctx
, 0, 0, 1);
1771 screen_write_clearscreen(sctx
, ictx
->cell
.cell
.bg
);
1774 screen_write_mode_set(sctx
, MODE_ORIGIN
);
1775 screen_write_cursormove(sctx
, 0, 0, 1);
1777 case 7: /* DECAWM */
1778 screen_write_mode_set(sctx
, MODE_WRAP
);
1781 screen_write_mode_set(sctx
, MODE_CURSOR_BLINKING
);
1782 screen_write_mode_set(sctx
, MODE_CURSOR_BLINKING_SET
);
1785 screen_write_mode_set(sctx
, MODE_CURSOR
);
1788 screen_write_mode_clear(sctx
, ALL_MOUSE_MODES
);
1789 screen_write_mode_set(sctx
, MODE_MOUSE_STANDARD
);
1792 screen_write_mode_clear(sctx
, ALL_MOUSE_MODES
);
1793 screen_write_mode_set(sctx
, MODE_MOUSE_BUTTON
);
1796 screen_write_mode_clear(sctx
, ALL_MOUSE_MODES
);
1797 screen_write_mode_set(sctx
, MODE_MOUSE_ALL
);
1800 screen_write_mode_set(sctx
, MODE_FOCUSON
);
1803 screen_write_mode_set(sctx
, MODE_MOUSE_UTF8
);
1806 screen_write_mode_set(sctx
, MODE_MOUSE_SGR
);
1810 screen_write_alternateon(sctx
, gc
, 0);
1813 screen_write_alternateon(sctx
, gc
, 1);
1816 screen_write_mode_set(sctx
, MODE_BRACKETPASTE
);
1819 log_debug("%s: unknown '%c'", __func__
, ictx
->ch
);
1825 /* Handle CSI window operations. */
1827 input_csi_dispatch_winops(struct input_ctx
*ictx
)
1829 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
1830 struct screen
*s
= sctx
->s
;
1831 struct window_pane
*wp
= ictx
->wp
;
1832 u_int x
= screen_size_x(s
), y
= screen_size_y(s
);
1836 while ((n
= input_get(ictx
, m
, 0, -1)) != -1) {
1855 if (input_get(ictx
, m
, 0, -1) == -1)
1861 if (input_get(ictx
, m
, 0, -1) == -1)
1866 switch (input_get(ictx
, m
, 0, -1)) {
1871 screen_push_title(sctx
->s
);
1877 switch (input_get(ictx
, m
, 0, -1)) {
1882 screen_pop_title(sctx
->s
);
1885 notify_pane("pane-title-changed", wp
);
1886 server_redraw_window_borders(wp
->window
);
1887 server_status_window(wp
->window
);
1892 input_reply(ictx
, "\033[8;%u;%ut", y
, x
);
1895 log_debug("%s: unknown '%c'", __func__
, ictx
->ch
);
1902 /* Helper for 256 colour SGR. */
1904 input_csi_dispatch_sgr_256_do(struct input_ctx
*ictx
, int fgbg
, int c
)
1906 struct grid_cell
*gc
= &ictx
->cell
.cell
;
1908 if (c
== -1 || c
> 255) {
1911 else if (fgbg
== 48)
1915 gc
->fg
= c
| COLOUR_FLAG_256
;
1916 else if (fgbg
== 48)
1917 gc
->bg
= c
| COLOUR_FLAG_256
;
1918 else if (fgbg
== 58)
1919 gc
->us
= c
| COLOUR_FLAG_256
;
1924 /* Handle CSI SGR for 256 colours. */
1926 input_csi_dispatch_sgr_256(struct input_ctx
*ictx
, int fgbg
, u_int
*i
)
1930 c
= input_get(ictx
, (*i
) + 1, 0, -1);
1931 if (input_csi_dispatch_sgr_256_do(ictx
, fgbg
, c
))
1935 /* Helper for RGB colour SGR. */
1937 input_csi_dispatch_sgr_rgb_do(struct input_ctx
*ictx
, int fgbg
, int r
, int g
,
1940 struct grid_cell
*gc
= &ictx
->cell
.cell
;
1942 if (r
== -1 || r
> 255)
1944 if (g
== -1 || g
> 255)
1946 if (b
== -1 || b
> 255)
1950 gc
->fg
= colour_join_rgb(r
, g
, b
);
1951 else if (fgbg
== 48)
1952 gc
->bg
= colour_join_rgb(r
, g
, b
);
1953 else if (fgbg
== 58)
1954 gc
->us
= colour_join_rgb(r
, g
, b
);
1958 /* Handle CSI SGR for RGB colours. */
1960 input_csi_dispatch_sgr_rgb(struct input_ctx
*ictx
, int fgbg
, u_int
*i
)
1964 r
= input_get(ictx
, (*i
) + 1, 0, -1);
1965 g
= input_get(ictx
, (*i
) + 2, 0, -1);
1966 b
= input_get(ictx
, (*i
) + 3, 0, -1);
1967 if (input_csi_dispatch_sgr_rgb_do(ictx
, fgbg
, r
, g
, b
))
1971 /* Handle CSI SGR with a ISO parameter. */
1973 input_csi_dispatch_sgr_colon(struct input_ctx
*ictx
, u_int i
)
1975 struct grid_cell
*gc
= &ictx
->cell
.cell
;
1976 char *s
= ictx
->param_list
[i
].str
, *copy
, *ptr
, *out
;
1981 for (n
= 0; n
< nitems(p
); n
++)
1985 ptr
= copy
= xstrdup(s
);
1986 while ((out
= strsep(&ptr
, ":")) != NULL
) {
1988 p
[n
++] = strtonum(out
, 0, INT_MAX
, &errstr
);
1989 if (errstr
!= NULL
|| n
== nitems(p
)) {
1995 if (n
== nitems(p
)) {
2000 log_debug("%s: %u = %d", __func__
, n
- 1, p
[n
- 1]);
2011 gc
->attr
&= ~GRID_ATTR_ALL_UNDERSCORE
;
2014 gc
->attr
&= ~GRID_ATTR_ALL_UNDERSCORE
;
2015 gc
->attr
|= GRID_ATTR_UNDERSCORE
;
2018 gc
->attr
&= ~GRID_ATTR_ALL_UNDERSCORE
;
2019 gc
->attr
|= GRID_ATTR_UNDERSCORE_2
;
2022 gc
->attr
&= ~GRID_ATTR_ALL_UNDERSCORE
;
2023 gc
->attr
|= GRID_ATTR_UNDERSCORE_3
;
2026 gc
->attr
&= ~GRID_ATTR_ALL_UNDERSCORE
;
2027 gc
->attr
|= GRID_ATTR_UNDERSCORE_4
;
2030 gc
->attr
&= ~GRID_ATTR_ALL_UNDERSCORE
;
2031 gc
->attr
|= GRID_ATTR_UNDERSCORE_5
;
2036 if (n
< 2 || (p
[0] != 38 && p
[0] != 48 && p
[0] != 58))
2048 input_csi_dispatch_sgr_rgb_do(ictx
, p
[0], p
[i
], p
[i
+ 1],
2054 input_csi_dispatch_sgr_256_do(ictx
, p
[0], p
[2]);
2059 /* Handle CSI SGR. */
2061 input_csi_dispatch_sgr(struct input_ctx
*ictx
)
2063 struct grid_cell
*gc
= &ictx
->cell
.cell
;
2067 if (ictx
->param_list_len
== 0) {
2068 memcpy(gc
, &grid_default_cell
, sizeof *gc
);
2072 for (i
= 0; i
< ictx
->param_list_len
; i
++) {
2073 if (ictx
->param_list
[i
].type
== INPUT_STRING
) {
2074 input_csi_dispatch_sgr_colon(ictx
, i
);
2077 n
= input_get(ictx
, i
, 0, 0);
2081 if (n
== 38 || n
== 48 || n
== 58) {
2083 switch (input_get(ictx
, i
, 0, -1)) {
2085 input_csi_dispatch_sgr_rgb(ictx
, n
, &i
);
2088 input_csi_dispatch_sgr_256(ictx
, n
, &i
);
2096 memcpy(gc
, &grid_default_cell
, sizeof *gc
);
2099 gc
->attr
|= GRID_ATTR_BRIGHT
;
2102 gc
->attr
|= GRID_ATTR_DIM
;
2105 gc
->attr
|= GRID_ATTR_ITALICS
;
2108 gc
->attr
&= ~GRID_ATTR_ALL_UNDERSCORE
;
2109 gc
->attr
|= GRID_ATTR_UNDERSCORE
;
2113 gc
->attr
|= GRID_ATTR_BLINK
;
2116 gc
->attr
|= GRID_ATTR_REVERSE
;
2119 gc
->attr
|= GRID_ATTR_HIDDEN
;
2122 gc
->attr
|= GRID_ATTR_STRIKETHROUGH
;
2125 gc
->attr
&= ~GRID_ATTR_ALL_UNDERSCORE
;
2126 gc
->attr
|= GRID_ATTR_UNDERSCORE_2
;
2129 gc
->attr
&= ~(GRID_ATTR_BRIGHT
|GRID_ATTR_DIM
);
2132 gc
->attr
&= ~GRID_ATTR_ITALICS
;
2135 gc
->attr
&= ~GRID_ATTR_ALL_UNDERSCORE
;
2138 gc
->attr
&= ~GRID_ATTR_BLINK
;
2141 gc
->attr
&= ~GRID_ATTR_REVERSE
;
2144 gc
->attr
&= ~GRID_ATTR_HIDDEN
;
2147 gc
->attr
&= ~GRID_ATTR_STRIKETHROUGH
;
2176 gc
->attr
|= GRID_ATTR_OVERLINE
;
2179 gc
->attr
&= ~GRID_ATTR_OVERLINE
;
2208 /* End of input with BEL. */
2210 input_end_bel(struct input_ctx
*ictx
)
2212 log_debug("%s", __func__
);
2214 ictx
->input_end
= INPUT_END_BEL
;
2219 /* DCS string started. */
2221 input_enter_dcs(struct input_ctx
*ictx
)
2223 log_debug("%s", __func__
);
2226 input_start_timer(ictx
);
2230 /* DCS terminator (ST) received. */
2232 input_dcs_dispatch(struct input_ctx
*ictx
)
2234 struct window_pane
*wp
= ictx
->wp
;
2235 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
2236 u_char
*buf
= ictx
->input_buf
;
2237 size_t len
= ictx
->input_len
;
2238 const char prefix
[] = "tmux;";
2239 const u_int prefixlen
= (sizeof prefix
) - 1;
2240 long long allow_passthrough
= 0;
2244 if (ictx
->flags
& INPUT_DISCARD
)
2246 allow_passthrough
= options_get_number(wp
->options
,
2247 "allow-passthrough");
2248 if (!allow_passthrough
)
2250 log_debug("%s: \"%s\"", __func__
, buf
);
2252 if (len
>= prefixlen
&& strncmp(buf
, prefix
, prefixlen
) == 0) {
2253 screen_write_rawstring(sctx
, buf
+ prefixlen
, len
- prefixlen
,
2254 allow_passthrough
== 2);
2260 /* OSC string started. */
2262 input_enter_osc(struct input_ctx
*ictx
)
2264 log_debug("%s", __func__
);
2267 input_start_timer(ictx
);
2271 /* OSC terminator (ST) received. */
2273 input_exit_osc(struct input_ctx
*ictx
)
2275 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
2276 struct window_pane
*wp
= ictx
->wp
;
2277 u_char
*p
= ictx
->input_buf
;
2280 if (ictx
->flags
& INPUT_DISCARD
)
2282 if (ictx
->input_len
< 1 || *p
< '0' || *p
> '9')
2285 log_debug("%s: \"%s\" (end %s)", __func__
, p
,
2286 ictx
->input_end
== INPUT_END_ST
? "ST" : "BEL");
2289 while (*p
>= '0' && *p
<= '9')
2290 option
= option
* 10 + *p
++ - '0';
2291 if (*p
!= ';' && *p
!= '\0')
2299 if (screen_set_title(sctx
->s
, p
) && wp
!= NULL
) {
2300 notify_pane("pane-title-changed", wp
);
2301 server_redraw_window_borders(wp
->window
);
2302 server_status_window(wp
->window
);
2306 input_osc_4(ictx
, p
);
2309 if (utf8_isvalid(p
)) {
2310 screen_set_path(sctx
->s
, p
);
2312 server_redraw_window_borders(wp
->window
);
2313 server_status_window(wp
->window
);
2318 input_osc_8(ictx
, p
);
2321 input_osc_10(ictx
, p
);
2324 input_osc_11(ictx
, p
);
2327 input_osc_12(ictx
, p
);
2330 input_osc_52(ictx
, p
);
2333 input_osc_104(ictx
, p
);
2336 input_osc_110(ictx
, p
);
2339 input_osc_111(ictx
, p
);
2342 input_osc_112(ictx
, p
);
2345 log_debug("%s: unknown '%u'", __func__
, option
);
2350 /* APC string started. */
2352 input_enter_apc(struct input_ctx
*ictx
)
2354 log_debug("%s", __func__
);
2357 input_start_timer(ictx
);
2361 /* APC terminator (ST) received. */
2363 input_exit_apc(struct input_ctx
*ictx
)
2365 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
2366 struct window_pane
*wp
= ictx
->wp
;
2368 if (ictx
->flags
& INPUT_DISCARD
)
2370 log_debug("%s: \"%s\"", __func__
, ictx
->input_buf
);
2372 if (screen_set_title(sctx
->s
, ictx
->input_buf
) && wp
!= NULL
) {
2373 notify_pane("pane-title-changed", wp
);
2374 server_redraw_window_borders(wp
->window
);
2375 server_status_window(wp
->window
);
2379 /* Rename string started. */
2381 input_enter_rename(struct input_ctx
*ictx
)
2383 log_debug("%s", __func__
);
2386 input_start_timer(ictx
);
2390 /* Rename terminator (ST) received. */
2392 input_exit_rename(struct input_ctx
*ictx
)
2394 struct window_pane
*wp
= ictx
->wp
;
2396 struct options_entry
*o
;
2400 if (ictx
->flags
& INPUT_DISCARD
)
2402 if (!options_get_number(ictx
->wp
->options
, "allow-rename"))
2404 log_debug("%s: \"%s\"", __func__
, ictx
->input_buf
);
2406 if (!utf8_isvalid(ictx
->input_buf
))
2410 if (ictx
->input_len
== 0) {
2411 o
= options_get_only(w
->options
, "automatic-rename");
2413 options_remove_or_default(o
, -1, NULL
);
2414 if (!options_get_number(w
->options
, "automatic-rename"))
2415 window_set_name(w
, "");
2417 options_set_number(w
->options
, "automatic-rename", 0);
2418 window_set_name(w
, ictx
->input_buf
);
2420 server_redraw_window_borders(w
);
2421 server_status_window(w
);
2424 /* Open UTF-8 character. */
2426 input_top_bit_set(struct input_ctx
*ictx
)
2428 struct screen_write_ctx
*sctx
= &ictx
->ctx
;
2429 struct utf8_data
*ud
= &ictx
->utf8data
;
2433 if (!ictx
->utf8started
) {
2434 if (utf8_open(ud
, ictx
->ch
) != UTF8_MORE
)
2436 ictx
->utf8started
= 1;
2440 switch (utf8_append(ud
, ictx
->ch
)) {
2444 ictx
->utf8started
= 0;
2449 ictx
->utf8started
= 0;
2451 log_debug("%s %hhu '%*s' (width %hhu)", __func__
, ud
->size
,
2452 (int)ud
->size
, ud
->data
, ud
->width
);
2454 utf8_copy(&ictx
->cell
.cell
.data
, ud
);
2455 screen_write_collect_add(sctx
, &ictx
->cell
.cell
);
2460 /* Reply to a colour request. */
2462 input_osc_colour_reply(struct input_ctx
*ictx
, u_int n
, int c
)
2468 c
= colour_force_rgb(c
);
2471 colour_split_rgb(c
, &r
, &g
, &b
);
2473 if (ictx
->input_end
== INPUT_END_BEL
)
2477 input_reply(ictx
, "\033]%u;rgb:%02hhx%02hhx/%02hhx%02hhx/%02hhx%02hhx%s",
2478 n
, r
, r
, g
, g
, b
, b
, end
);
2481 /* Handle the OSC 4 sequence for setting (multiple) palette entries. */
2483 input_osc_4(struct input_ctx
*ictx
, const char *p
)
2485 char *copy
, *s
, *next
= NULL
;
2487 int c
, bad
= 0, redraw
= 0;
2489 copy
= s
= xstrdup(p
);
2490 while (s
!= NULL
&& *s
!= '\0') {
2491 idx
= strtol(s
, &next
, 10);
2492 if (*next
++ != ';') {
2496 if (idx
< 0 || idx
>= 256) {
2501 s
= strsep(&next
, ";");
2502 if (strcmp(s
, "?") == 0) {
2503 c
= colour_palette_get(ictx
->palette
, idx
);
2505 input_osc_colour_reply(ictx
, 4, c
);
2508 if ((c
= colour_parseX11(s
)) == -1) {
2512 if (colour_palette_set(ictx
->palette
, idx
, c
))
2517 log_debug("bad OSC 4: %s", p
);
2519 screen_write_fullredraw(&ictx
->ctx
);
2523 /* Handle the OSC 8 sequence for embedding hyperlinks. */
2525 input_osc_8(struct input_ctx
*ictx
, const char *p
)
2527 struct hyperlinks
*hl
= ictx
->ctx
.s
->hyperlinks
;
2528 struct grid_cell
*gc
= &ictx
->cell
.cell
;
2529 const char *start
, *end
, *uri
;
2532 for (start
= p
; (end
= strpbrk(start
, ":;")) != NULL
; start
= end
+ 1) {
2533 if (end
- start
>= 4 && strncmp(start
, "id=", 3) == 0) {
2536 id
= xstrndup(start
+ 3, end
- start
- 3);
2539 /* The first ; is the end of parameters and start of the URI. */
2543 if (end
== NULL
|| *end
!= ';')
2551 gc
->link
= hyperlinks_put(hl
, uri
, id
);
2553 log_debug("hyperlink (anonymous) %s = %u", uri
, gc
->link
);
2555 log_debug("hyperlink (id=%s) %s = %u", id
, uri
, gc
->link
);
2560 log_debug("bad OSC 8 %s", p
);
2565 * Get a client with a foreground for the pane. There isn't much to choose
2566 * between them so just use the first.
2569 input_get_fg_client(struct window_pane
*wp
)
2571 struct window
*w
= wp
->window
;
2572 struct client
*loop
;
2574 TAILQ_FOREACH(loop
, &clients
, entry
) {
2575 if (loop
->flags
& CLIENT_UNATTACHEDFLAGS
)
2577 if (loop
->session
== NULL
|| !session_has(loop
->session
, w
))
2579 if (loop
->tty
.fg
== -1)
2581 return (loop
->tty
.fg
);
2586 /* Get a client with a background for the pane. */
2588 input_get_bg_client(struct window_pane
*wp
)
2590 struct window
*w
= wp
->window
;
2591 struct client
*loop
;
2593 TAILQ_FOREACH(loop
, &clients
, entry
) {
2594 if (loop
->flags
& CLIENT_UNATTACHEDFLAGS
)
2596 if (loop
->session
== NULL
|| !session_has(loop
->session
, w
))
2598 if (loop
->tty
.bg
== -1)
2600 return (loop
->tty
.bg
);
2605 /* Handle the OSC 10 sequence for setting and querying foreground colour. */
2607 input_osc_10(struct input_ctx
*ictx
, const char *p
)
2609 struct window_pane
*wp
= ictx
->wp
;
2610 struct grid_cell defaults
;
2613 if (strcmp(p
, "?") == 0) {
2616 tty_default_colours(&defaults
, wp
);
2617 if (COLOUR_DEFAULT(defaults
.fg
))
2618 c
= input_get_fg_client(wp
);
2621 input_osc_colour_reply(ictx
, 10, c
);
2625 if ((c
= colour_parseX11(p
)) == -1) {
2626 log_debug("bad OSC 10: %s", p
);
2629 if (ictx
->palette
!= NULL
) {
2630 ictx
->palette
->fg
= c
;
2632 wp
->flags
|= PANE_STYLECHANGED
;
2633 screen_write_fullredraw(&ictx
->ctx
);
2637 /* Handle the OSC 110 sequence for resetting foreground colour. */
2639 input_osc_110(struct input_ctx
*ictx
, const char *p
)
2641 struct window_pane
*wp
= ictx
->wp
;
2645 if (ictx
->palette
!= NULL
) {
2646 ictx
->palette
->fg
= 8;
2648 wp
->flags
|= PANE_STYLECHANGED
;
2649 screen_write_fullredraw(&ictx
->ctx
);
2653 /* Handle the OSC 11 sequence for setting and querying background colour. */
2655 input_osc_11(struct input_ctx
*ictx
, const char *p
)
2657 struct window_pane
*wp
= ictx
->wp
;
2658 struct grid_cell defaults
;
2661 if (strcmp(p
, "?") == 0) {
2664 tty_default_colours(&defaults
, wp
);
2665 if (COLOUR_DEFAULT(defaults
.bg
))
2666 c
= input_get_bg_client(wp
);
2669 input_osc_colour_reply(ictx
, 11, c
);
2673 if ((c
= colour_parseX11(p
)) == -1) {
2674 log_debug("bad OSC 11: %s", p
);
2677 if (ictx
->palette
!= NULL
) {
2678 ictx
->palette
->bg
= c
;
2680 wp
->flags
|= PANE_STYLECHANGED
;
2681 screen_write_fullredraw(&ictx
->ctx
);
2685 /* Handle the OSC 111 sequence for resetting background colour. */
2687 input_osc_111(struct input_ctx
*ictx
, const char *p
)
2689 struct window_pane
*wp
= ictx
->wp
;
2693 if (ictx
->palette
!= NULL
) {
2694 ictx
->palette
->bg
= 8;
2696 wp
->flags
|= PANE_STYLECHANGED
;
2697 screen_write_fullredraw(&ictx
->ctx
);
2701 /* Handle the OSC 12 sequence for setting and querying cursor colour. */
2703 input_osc_12(struct input_ctx
*ictx
, const char *p
)
2705 struct window_pane
*wp
= ictx
->wp
;
2708 if (strcmp(p
, "?") == 0) {
2710 c
= ictx
->ctx
.s
->ccolour
;
2712 c
= ictx
->ctx
.s
->default_ccolour
;
2713 input_osc_colour_reply(ictx
, 12, c
);
2718 if ((c
= colour_parseX11(p
)) == -1) {
2719 log_debug("bad OSC 12: %s", p
);
2722 screen_set_cursor_colour(ictx
->ctx
.s
, c
);
2725 /* Handle the OSC 112 sequence for resetting cursor colour. */
2727 input_osc_112(struct input_ctx
*ictx
, const char *p
)
2729 if (*p
== '\0') /* no arguments allowed */
2730 screen_set_cursor_colour(ictx
->ctx
.s
, -1);
2734 /* Handle the OSC 52 sequence for setting the clipboard. */
2736 input_osc_52(struct input_ctx
*ictx
, const char *p
)
2738 struct window_pane
*wp
= ictx
->wp
;
2740 const char *buf
= NULL
;
2744 struct screen_write_ctx ctx
;
2745 struct paste_buffer
*pb
;
2746 const char* allow
= "cpqs01234567";
2747 char flags
[sizeof "cpqs01234567"] = "";
2752 state
= options_get_number(global_options
, "set-clipboard");
2756 if ((end
= strchr(p
, ';')) == NULL
)
2761 log_debug("%s: %s", __func__
, end
);
2763 for (i
= 0; p
+ i
!= end
; i
++) {
2764 if (strchr(allow
, p
[i
]) != NULL
&& strchr(flags
, p
[i
]) == NULL
)
2767 log_debug("%s: %.*s %s", __func__
, (int)(end
- p
- 1), p
, flags
);
2769 if (strcmp(end
, "?") == 0) {
2770 if ((pb
= paste_get_top(NULL
)) != NULL
)
2771 buf
= paste_buffer_data(pb
, &len
);
2772 if (ictx
->input_end
== INPUT_END_BEL
)
2773 input_reply_clipboard(ictx
->event
, buf
, len
, "\007");
2775 input_reply_clipboard(ictx
->event
, buf
, len
, "\033\\");
2779 len
= (strlen(end
) / 4) * 3;
2784 if ((outlen
= b64_pton(end
, out
, len
)) == -1) {
2789 screen_write_start_pane(&ctx
, wp
, NULL
);
2790 screen_write_setselection(&ctx
, flags
, out
, outlen
);
2791 screen_write_stop(&ctx
);
2792 notify_pane("pane-set-clipboard", wp
);
2794 paste_add(NULL
, out
, outlen
);
2797 /* Handle the OSC 104 sequence for unsetting (multiple) palette entries. */
2799 input_osc_104(struct input_ctx
*ictx
, const char *p
)
2803 int bad
= 0, redraw
= 0;
2806 colour_palette_clear(ictx
->palette
);
2807 screen_write_fullredraw(&ictx
->ctx
);
2811 copy
= s
= xstrdup(p
);
2812 while (*s
!= '\0') {
2813 idx
= strtol(s
, &s
, 10);
2814 if (*s
!= '\0' && *s
!= ';') {
2818 if (idx
< 0 || idx
>= 256) {
2822 if (colour_palette_set(ictx
->palette
, idx
, -1))
2828 log_debug("bad OSC 104: %s", p
);
2830 screen_write_fullredraw(&ictx
->ctx
);
2835 input_reply_clipboard(struct bufferevent
*bev
, const char *buf
, size_t len
,
2841 if (buf
!= NULL
&& len
!= 0) {
2842 outlen
= 4 * ((len
+ 2) / 3) + 1;
2843 out
= xmalloc(outlen
);
2844 if ((outlen
= b64_ntop(buf
, len
, out
, outlen
)) == -1) {
2850 bufferevent_write(bev
, "\033]52;;", 6);
2852 bufferevent_write(bev
, out
, outlen
);
2853 bufferevent_write(bev
, end
, strlen(end
));