[BACK]Return to input.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Annotation of src/usr.bin/tmux/input.c, Revision 1.141

1.141   ! nicm        1: /* $OpenBSD: input.c,v 1.140 2018/12/17 21:52:59 nicm Exp $ */
1.1       nicm        2:
                      3: /*
1.99      nicm        4:  * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
1.1       nicm        5:  *
                      6:  * Permission to use, copy, modify, and distribute this software for any
                      7:  * purpose with or without fee is hereby granted, provided that the above
                      8:  * copyright notice and this permission notice appear in all copies.
                      9:  *
                     10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     13:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     14:  * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
                     15:  * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
                     16:  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
                     17:  */
                     18:
                     19: #include <sys/types.h>
                     20:
1.108     nicm       21: #include <netinet/in.h>
                     22:
                     23: #include <resolv.h>
1.1       nicm       24: #include <stdlib.h>
                     25: #include <string.h>
1.79      nicm       26: #include <time.h>
1.1       nicm       27:
                     28: #include "tmux.h"
                     29:
1.28      nicm       30: /*
                     31:  * Based on the description by Paul Williams at:
                     32:  *
1.133     nicm       33:  * https://vt100.net/emu/dec_ansi_parser
1.28      nicm       34:  *
                     35:  * With the following changes:
                     36:  *
                     37:  * - 7-bit only.
                     38:  *
                     39:  * - Support for UTF-8.
                     40:  *
                     41:  * - OSC (but not APC) may be terminated by \007 as well as ST.
                     42:  *
                     43:  * - A state for APC similar to OSC. Some terminals appear to use this to set
                     44:  *   the title.
                     45:  *
                     46:  * - A state for the screen \033k...\033\\ sequence to rename a window. This is
                     47:  *   pretty stupid but not supporting it is more trouble than it is worth.
1.37      nicm       48:  *
                     49:  * - Special handling for ESC inside a DCS to allow arbitrary byte sequences to
1.77      nicm       50:  *   be passed to the underlying terminals.
1.28      nicm       51:  */
                     52:
1.74      nicm       53: /* Input parser cell. */
                     54: struct input_cell {
                     55:        struct grid_cell        cell;
                     56:        int                     set;
                     57:        int                     g0set;  /* 1 if ACS */
                     58:        int                     g1set;  /* 1 if ACS */
                     59: };
                     60:
1.131     nicm       61: /* Input parser argument. */
                     62: struct input_param {
                     63:        enum {
                     64:                INPUT_MISSING,
                     65:                INPUT_NUMBER,
                     66:                INPUT_STRING
                     67:        }                       type;
                     68:        union {
                     69:                int             num;
                     70:                char           *str;
                     71:        };
                     72: };
                     73:
1.74      nicm       74: /* Input parser context. */
                     75: struct input_ctx {
                     76:        struct window_pane     *wp;
                     77:        struct screen_write_ctx ctx;
                     78:
                     79:        struct input_cell       cell;
                     80:
                     81:        struct input_cell       old_cell;
                     82:        u_int                   old_cx;
                     83:        u_int                   old_cy;
                     84:
                     85:        u_char                  interm_buf[4];
                     86:        size_t                  interm_len;
                     87:
                     88:        u_char                  param_buf[64];
                     89:        size_t                  param_len;
                     90:
                     91: #define INPUT_BUF_START 32
                     92: #define INPUT_BUF_LIMIT 1048576
                     93:        u_char                 *input_buf;
                     94:        size_t                  input_len;
                     95:        size_t                  input_space;
1.138     nicm       96:        enum {
                     97:                INPUT_END_ST,
                     98:                INPUT_END_BEL
                     99:        }                       input_end;
1.74      nicm      100:
1.131     nicm      101:        struct input_param      param_list[24];
1.74      nicm      102:        u_int                   param_list_len;
                    103:
                    104:        struct utf8_data        utf8data;
1.130     nicm      105:        int                     utf8started;
1.74      nicm      106:
                    107:        int                     ch;
1.127     nicm      108:        int                     last;
1.112     nicm      109:
1.74      nicm      110:        int                     flags;
                    111: #define INPUT_DISCARD 0x1
                    112:
                    113:        const struct input_state *state;
                    114:
1.125     nicm      115:        struct event            timer;
                    116:
1.74      nicm      117:        /*
                    118:         * All input received since we were last in the ground state. Sent to
                    119:         * control clients on connection.
                    120:         */
                    121:        struct evbuffer         *since_ground;
                    122: };
                    123:
1.28      nicm      124: /* Helper functions. */
1.52      nicm      125: struct input_transition;
1.104     nicm      126: static int     input_split(struct input_ctx *);
                    127: static int     input_get(struct input_ctx *, u_int, int, int);
                    128: static void printflike(2, 3) input_reply(struct input_ctx *, const char *, ...);
                    129: static void    input_set_state(struct window_pane *,
                    130:                    const struct input_transition *);
                    131: static void    input_reset_cell(struct input_ctx *);
1.28      nicm      132:
1.138     nicm      133: static void    input_osc_4(struct input_ctx *, const char *);
                    134: static void    input_osc_10(struct input_ctx *, const char *);
                    135: static void    input_osc_11(struct input_ctx *, const char *);
                    136: static void    input_osc_52(struct input_ctx *, const char *);
                    137: static void    input_osc_104(struct input_ctx *, const char *);
1.107     nicm      138:
1.28      nicm      139: /* Transition entry/exit handlers. */
1.104     nicm      140: static void    input_clear(struct input_ctx *);
                    141: static void    input_ground(struct input_ctx *);
1.125     nicm      142: static void    input_enter_dcs(struct input_ctx *);
1.104     nicm      143: static void    input_enter_osc(struct input_ctx *);
                    144: static void    input_exit_osc(struct input_ctx *);
                    145: static void    input_enter_apc(struct input_ctx *);
                    146: static void    input_exit_apc(struct input_ctx *);
                    147: static void    input_enter_rename(struct input_ctx *);
                    148: static void    input_exit_rename(struct input_ctx *);
1.28      nicm      149:
                    150: /* Input state handlers. */
1.104     nicm      151: static int     input_print(struct input_ctx *);
                    152: static int     input_intermediate(struct input_ctx *);
                    153: static int     input_parameter(struct input_ctx *);
                    154: static int     input_input(struct input_ctx *);
                    155: static int     input_c0_dispatch(struct input_ctx *);
                    156: static int     input_esc_dispatch(struct input_ctx *);
                    157: static int     input_csi_dispatch(struct input_ctx *);
                    158: static void    input_csi_dispatch_rm(struct input_ctx *);
                    159: static void    input_csi_dispatch_rm_private(struct input_ctx *);
                    160: static void    input_csi_dispatch_sm(struct input_ctx *);
                    161: static void    input_csi_dispatch_sm_private(struct input_ctx *);
                    162: static void    input_csi_dispatch_winops(struct input_ctx *);
                    163: static void    input_csi_dispatch_sgr_256(struct input_ctx *, int, u_int *);
                    164: static void    input_csi_dispatch_sgr_rgb(struct input_ctx *, int, u_int *);
                    165: static void    input_csi_dispatch_sgr(struct input_ctx *);
                    166: static int     input_dcs_dispatch(struct input_ctx *);
1.130     nicm      167: static int     input_top_bit_set(struct input_ctx *);
1.138     nicm      168: static int     input_end_bel(struct input_ctx *);
1.28      nicm      169:
                    170: /* Command table comparison function. */
1.104     nicm      171: static int     input_table_compare(const void *, const void *);
1.28      nicm      172:
                    173: /* Command table entry. */
                    174: struct input_table_entry {
                    175:        int             ch;
                    176:        const char     *interm;
                    177:        int             type;
1.1       nicm      178: };
                    179:
1.28      nicm      180: /* Escape commands. */
                    181: enum input_esc_type {
                    182:        INPUT_ESC_DECALN,
                    183:        INPUT_ESC_DECKPAM,
                    184:        INPUT_ESC_DECKPNM,
                    185:        INPUT_ESC_DECRC,
                    186:        INPUT_ESC_DECSC,
                    187:        INPUT_ESC_HTS,
                    188:        INPUT_ESC_IND,
                    189:        INPUT_ESC_NEL,
                    190:        INPUT_ESC_RI,
                    191:        INPUT_ESC_RIS,
1.69      nicm      192:        INPUT_ESC_SCSG0_OFF,
                    193:        INPUT_ESC_SCSG0_ON,
                    194:        INPUT_ESC_SCSG1_OFF,
                    195:        INPUT_ESC_SCSG1_ON,
1.107     nicm      196:        INPUT_ESC_ST,
1.28      nicm      197: };
1.1       nicm      198:
1.28      nicm      199: /* Escape command table. */
1.104     nicm      200: static const struct input_table_entry input_esc_table[] = {
1.69      nicm      201:        { '0', "(", INPUT_ESC_SCSG0_ON },
                    202:        { '0', ")", INPUT_ESC_SCSG1_ON },
1.28      nicm      203:        { '7', "",  INPUT_ESC_DECSC },
                    204:        { '8', "",  INPUT_ESC_DECRC },
                    205:        { '8', "#", INPUT_ESC_DECALN },
                    206:        { '=', "",  INPUT_ESC_DECKPAM },
                    207:        { '>', "",  INPUT_ESC_DECKPNM },
1.69      nicm      208:        { 'B', "(", INPUT_ESC_SCSG0_OFF },
                    209:        { 'B', ")", INPUT_ESC_SCSG1_OFF },
1.28      nicm      210:        { 'D', "",  INPUT_ESC_IND },
                    211:        { 'E', "",  INPUT_ESC_NEL },
                    212:        { 'H', "",  INPUT_ESC_HTS },
                    213:        { 'M', "",  INPUT_ESC_RI },
1.107     nicm      214:        { '\\', "", INPUT_ESC_ST },
1.28      nicm      215:        { 'c', "",  INPUT_ESC_RIS },
                    216: };
1.1       nicm      217:
1.28      nicm      218: /* Control (CSI) commands. */
                    219: enum input_csi_type {
                    220:        INPUT_CSI_CBT,
1.43      nicm      221:        INPUT_CSI_CNL,
                    222:        INPUT_CSI_CPL,
1.28      nicm      223:        INPUT_CSI_CUB,
                    224:        INPUT_CSI_CUD,
                    225:        INPUT_CSI_CUF,
                    226:        INPUT_CSI_CUP,
                    227:        INPUT_CSI_CUU,
                    228:        INPUT_CSI_DA,
1.50      nicm      229:        INPUT_CSI_DA_TWO,
1.28      nicm      230:        INPUT_CSI_DCH,
1.39      nicm      231:        INPUT_CSI_DECSCUSR,
1.28      nicm      232:        INPUT_CSI_DECSTBM,
                    233:        INPUT_CSI_DL,
                    234:        INPUT_CSI_DSR,
1.56      nicm      235:        INPUT_CSI_ECH,
1.28      nicm      236:        INPUT_CSI_ED,
                    237:        INPUT_CSI_EL,
                    238:        INPUT_CSI_HPA,
                    239:        INPUT_CSI_ICH,
                    240:        INPUT_CSI_IL,
1.42      nicm      241:        INPUT_CSI_RCP,
1.127     nicm      242:        INPUT_CSI_REP,
1.28      nicm      243:        INPUT_CSI_RM,
                    244:        INPUT_CSI_RM_PRIVATE,
1.42      nicm      245:        INPUT_CSI_SCP,
1.28      nicm      246:        INPUT_CSI_SGR,
                    247:        INPUT_CSI_SM,
                    248:        INPUT_CSI_SM_PRIVATE,
1.115     nicm      249:        INPUT_CSI_SU,
1.28      nicm      250:        INPUT_CSI_TBC,
                    251:        INPUT_CSI_VPA,
1.65      nicm      252:        INPUT_CSI_WINOPS,
1.28      nicm      253: };
1.1       nicm      254:
1.28      nicm      255: /* Control (CSI) command table. */
1.104     nicm      256: static const struct input_table_entry input_csi_table[] = {
1.28      nicm      257:        { '@', "",  INPUT_CSI_ICH },
                    258:        { 'A', "",  INPUT_CSI_CUU },
                    259:        { 'B', "",  INPUT_CSI_CUD },
                    260:        { 'C', "",  INPUT_CSI_CUF },
                    261:        { 'D', "",  INPUT_CSI_CUB },
1.43      nicm      262:        { 'E', "",  INPUT_CSI_CNL },
                    263:        { 'F', "",  INPUT_CSI_CPL },
1.28      nicm      264:        { 'G', "",  INPUT_CSI_HPA },
                    265:        { 'H', "",  INPUT_CSI_CUP },
                    266:        { 'J', "",  INPUT_CSI_ED },
                    267:        { 'K', "",  INPUT_CSI_EL },
                    268:        { 'L', "",  INPUT_CSI_IL },
                    269:        { 'M', "",  INPUT_CSI_DL },
                    270:        { 'P', "",  INPUT_CSI_DCH },
1.115     nicm      271:        { 'S', "",  INPUT_CSI_SU },
1.56      nicm      272:        { 'X', "",  INPUT_CSI_ECH },
1.28      nicm      273:        { 'Z', "",  INPUT_CSI_CBT },
1.127     nicm      274:        { 'b', "",  INPUT_CSI_REP },
1.28      nicm      275:        { 'c', "",  INPUT_CSI_DA },
1.50      nicm      276:        { 'c', ">", INPUT_CSI_DA_TWO },
1.28      nicm      277:        { 'd', "",  INPUT_CSI_VPA },
                    278:        { 'f', "",  INPUT_CSI_CUP },
                    279:        { 'g', "",  INPUT_CSI_TBC },
                    280:        { 'h', "",  INPUT_CSI_SM },
                    281:        { 'h', "?", INPUT_CSI_SM_PRIVATE },
                    282:        { 'l', "",  INPUT_CSI_RM },
                    283:        { 'l', "?", INPUT_CSI_RM_PRIVATE },
                    284:        { 'm', "",  INPUT_CSI_SGR },
                    285:        { 'n', "",  INPUT_CSI_DSR },
1.39      nicm      286:        { 'q', " ", INPUT_CSI_DECSCUSR },
1.28      nicm      287:        { 'r', "",  INPUT_CSI_DECSTBM },
1.42      nicm      288:        { 's', "",  INPUT_CSI_SCP },
1.65      nicm      289:        { 't', "",  INPUT_CSI_WINOPS },
1.42      nicm      290:        { 'u', "",  INPUT_CSI_RCP },
1.28      nicm      291: };
1.1       nicm      292:
1.28      nicm      293: /* Input transition. */
                    294: struct input_transition {
                    295:        int                             first;
                    296:        int                             last;
1.1       nicm      297:
1.28      nicm      298:        int                             (*handler)(struct input_ctx *);
                    299:        const struct input_state       *state;
                    300: };
1.1       nicm      301:
1.28      nicm      302: /* Input state. */
                    303: struct input_state {
                    304:        const char                      *name;
                    305:        void                            (*enter)(struct input_ctx *);
                    306:        void                            (*exit)(struct input_ctx *);
                    307:        const struct input_transition   *transitions;
                    308: };
1.1       nicm      309:
1.28      nicm      310: /* State transitions available from all states. */
                    311: #define INPUT_STATE_ANYWHERE \
                    312:        { 0x18, 0x18, input_c0_dispatch, &input_state_ground }, \
                    313:        { 0x1a, 0x1a, input_c0_dispatch, &input_state_ground }, \
                    314:        { 0x1b, 0x1b, NULL,              &input_state_esc_enter }
                    315:
                    316: /* Forward declarations of state tables. */
1.104     nicm      317: static const struct input_transition input_state_ground_table[];
                    318: static const struct input_transition input_state_esc_enter_table[];
                    319: static const struct input_transition input_state_esc_intermediate_table[];
                    320: static const struct input_transition input_state_csi_enter_table[];
                    321: static const struct input_transition input_state_csi_parameter_table[];
                    322: static const struct input_transition input_state_csi_intermediate_table[];
                    323: static const struct input_transition input_state_csi_ignore_table[];
                    324: static const struct input_transition input_state_dcs_enter_table[];
                    325: static const struct input_transition input_state_dcs_parameter_table[];
                    326: static const struct input_transition input_state_dcs_intermediate_table[];
                    327: static const struct input_transition input_state_dcs_handler_table[];
                    328: static const struct input_transition input_state_dcs_escape_table[];
                    329: static const struct input_transition input_state_dcs_ignore_table[];
                    330: static const struct input_transition input_state_osc_string_table[];
                    331: static const struct input_transition input_state_apc_string_table[];
                    332: static const struct input_transition input_state_rename_string_table[];
                    333: static const struct input_transition input_state_consume_st_table[];
1.28      nicm      334:
                    335: /* ground state definition. */
1.104     nicm      336: static const struct input_state input_state_ground = {
1.28      nicm      337:        "ground",
1.67      nicm      338:        input_ground, NULL,
1.28      nicm      339:        input_state_ground_table
                    340: };
1.1       nicm      341:
1.28      nicm      342: /* esc_enter state definition. */
1.104     nicm      343: static const struct input_state input_state_esc_enter = {
1.28      nicm      344:        "esc_enter",
                    345:        input_clear, NULL,
                    346:        input_state_esc_enter_table
                    347: };
1.1       nicm      348:
1.28      nicm      349: /* esc_intermediate state definition. */
1.104     nicm      350: static const struct input_state input_state_esc_intermediate = {
1.28      nicm      351:        "esc_intermediate",
                    352:        NULL, NULL,
                    353:        input_state_esc_intermediate_table
                    354: };
1.1       nicm      355:
1.28      nicm      356: /* csi_enter state definition. */
1.104     nicm      357: static const struct input_state input_state_csi_enter = {
1.28      nicm      358:        "csi_enter",
                    359:        input_clear, NULL,
                    360:        input_state_csi_enter_table
                    361: };
1.1       nicm      362:
1.28      nicm      363: /* csi_parameter state definition. */
1.104     nicm      364: static const struct input_state input_state_csi_parameter = {
1.28      nicm      365:        "csi_parameter",
                    366:        NULL, NULL,
                    367:        input_state_csi_parameter_table
                    368: };
1.1       nicm      369:
1.28      nicm      370: /* csi_intermediate state definition. */
1.104     nicm      371: static const struct input_state input_state_csi_intermediate = {
1.28      nicm      372:        "csi_intermediate",
                    373:        NULL, NULL,
                    374:        input_state_csi_intermediate_table
                    375: };
1.1       nicm      376:
1.28      nicm      377: /* csi_ignore state definition. */
1.104     nicm      378: static const struct input_state input_state_csi_ignore = {
1.28      nicm      379:        "csi_ignore",
                    380:        NULL, NULL,
                    381:        input_state_csi_ignore_table
                    382: };
1.1       nicm      383:
1.28      nicm      384: /* dcs_enter state definition. */
1.104     nicm      385: static const struct input_state input_state_dcs_enter = {
1.28      nicm      386:        "dcs_enter",
1.125     nicm      387:        input_enter_dcs, NULL,
1.28      nicm      388:        input_state_dcs_enter_table
                    389: };
1.1       nicm      390:
1.28      nicm      391: /* dcs_parameter state definition. */
1.104     nicm      392: static const struct input_state input_state_dcs_parameter = {
1.28      nicm      393:        "dcs_parameter",
                    394:        NULL, NULL,
                    395:        input_state_dcs_parameter_table
                    396: };
1.1       nicm      397:
1.28      nicm      398: /* dcs_intermediate state definition. */
1.104     nicm      399: static const struct input_state input_state_dcs_intermediate = {
1.28      nicm      400:        "dcs_intermediate",
                    401:        NULL, NULL,
                    402:        input_state_dcs_intermediate_table
                    403: };
1.1       nicm      404:
1.28      nicm      405: /* dcs_handler state definition. */
1.104     nicm      406: static const struct input_state input_state_dcs_handler = {
1.28      nicm      407:        "dcs_handler",
1.37      nicm      408:        NULL, NULL,
1.28      nicm      409:        input_state_dcs_handler_table
                    410: };
1.1       nicm      411:
1.37      nicm      412: /* dcs_escape state definition. */
1.104     nicm      413: static const struct input_state input_state_dcs_escape = {
1.37      nicm      414:        "dcs_escape",
                    415:        NULL, NULL,
                    416:        input_state_dcs_escape_table
                    417: };
                    418:
1.28      nicm      419: /* dcs_ignore state definition. */
1.104     nicm      420: static const struct input_state input_state_dcs_ignore = {
1.28      nicm      421:        "dcs_ignore",
                    422:        NULL, NULL,
                    423:        input_state_dcs_ignore_table
                    424: };
1.1       nicm      425:
1.28      nicm      426: /* osc_string state definition. */
1.104     nicm      427: static const struct input_state input_state_osc_string = {
1.28      nicm      428:        "osc_string",
                    429:        input_enter_osc, input_exit_osc,
                    430:        input_state_osc_string_table
                    431: };
1.1       nicm      432:
1.28      nicm      433: /* apc_string state definition. */
1.104     nicm      434: static const struct input_state input_state_apc_string = {
1.28      nicm      435:        "apc_string",
                    436:        input_enter_apc, input_exit_apc,
                    437:        input_state_apc_string_table
                    438: };
1.1       nicm      439:
1.28      nicm      440: /* rename_string state definition. */
1.104     nicm      441: static const struct input_state input_state_rename_string = {
1.28      nicm      442:        "rename_string",
                    443:        input_enter_rename, input_exit_rename,
                    444:        input_state_rename_string_table
                    445: };
1.1       nicm      446:
1.28      nicm      447: /* consume_st state definition. */
1.104     nicm      448: static const struct input_state input_state_consume_st = {
1.28      nicm      449:        "consume_st",
1.128     nicm      450:        input_enter_rename, NULL, /* rename also waits for ST */
1.28      nicm      451:        input_state_consume_st_table
                    452: };
1.1       nicm      453:
1.28      nicm      454: /* ground state table. */
1.104     nicm      455: static const struct input_transition input_state_ground_table[] = {
1.28      nicm      456:        INPUT_STATE_ANYWHERE,
                    457:
                    458:        { 0x00, 0x17, input_c0_dispatch, NULL },
                    459:        { 0x19, 0x19, input_c0_dispatch, NULL },
                    460:        { 0x1c, 0x1f, input_c0_dispatch, NULL },
                    461:        { 0x20, 0x7e, input_print,       NULL },
                    462:        { 0x7f, 0x7f, NULL,              NULL },
1.130     nicm      463:        { 0x80, 0xff, input_top_bit_set, NULL },
1.1       nicm      464:
1.28      nicm      465:        { -1, -1, NULL, NULL }
                    466: };
1.13      nicm      467:
1.28      nicm      468: /* esc_enter state table. */
1.104     nicm      469: static const struct input_transition input_state_esc_enter_table[] = {
1.28      nicm      470:        INPUT_STATE_ANYWHERE,
                    471:
                    472:        { 0x00, 0x17, input_c0_dispatch,  NULL },
                    473:        { 0x19, 0x19, input_c0_dispatch,  NULL },
                    474:        { 0x1c, 0x1f, input_c0_dispatch,  NULL },
                    475:        { 0x20, 0x2f, input_intermediate, &input_state_esc_intermediate },
                    476:        { 0x30, 0x4f, input_esc_dispatch, &input_state_ground },
                    477:        { 0x50, 0x50, NULL,               &input_state_dcs_enter },
                    478:        { 0x51, 0x57, input_esc_dispatch, &input_state_ground },
                    479:        { 0x58, 0x58, NULL,               &input_state_consume_st },
                    480:        { 0x59, 0x59, input_esc_dispatch, &input_state_ground },
                    481:        { 0x5a, 0x5a, input_esc_dispatch, &input_state_ground },
                    482:        { 0x5b, 0x5b, NULL,               &input_state_csi_enter },
                    483:        { 0x5c, 0x5c, input_esc_dispatch, &input_state_ground },
                    484:        { 0x5d, 0x5d, NULL,               &input_state_osc_string },
                    485:        { 0x5e, 0x5e, NULL,               &input_state_consume_st },
                    486:        { 0x5f, 0x5f, NULL,               &input_state_apc_string },
                    487:        { 0x60, 0x6a, input_esc_dispatch, &input_state_ground },
                    488:        { 0x6b, 0x6b, NULL,               &input_state_rename_string },
1.29      nicm      489:        { 0x6c, 0x7e, input_esc_dispatch, &input_state_ground },
1.28      nicm      490:        { 0x7f, 0xff, NULL,               NULL },
1.1       nicm      491:
1.28      nicm      492:        { -1, -1, NULL, NULL }
                    493: };
1.1       nicm      494:
1.138     nicm      495: /* esc_intermediate state table. */
1.104     nicm      496: static const struct input_transition input_state_esc_intermediate_table[] = {
1.28      nicm      497:        INPUT_STATE_ANYWHERE,
                    498:
                    499:        { 0x00, 0x17, input_c0_dispatch,  NULL },
                    500:        { 0x19, 0x19, input_c0_dispatch,  NULL },
                    501:        { 0x1c, 0x1f, input_c0_dispatch,  NULL },
                    502:        { 0x20, 0x2f, input_intermediate, NULL },
                    503:        { 0x30, 0x7e, input_esc_dispatch, &input_state_ground },
                    504:        { 0x7f, 0xff, NULL,               NULL },
1.1       nicm      505:
1.28      nicm      506:        { -1, -1, NULL, NULL }
                    507: };
1.1       nicm      508:
1.28      nicm      509: /* csi_enter state table. */
1.104     nicm      510: static const struct input_transition input_state_csi_enter_table[] = {
1.28      nicm      511:        INPUT_STATE_ANYWHERE,
                    512:
                    513:        { 0x00, 0x17, input_c0_dispatch,  NULL },
                    514:        { 0x19, 0x19, input_c0_dispatch,  NULL },
                    515:        { 0x1c, 0x1f, input_c0_dispatch,  NULL },
                    516:        { 0x20, 0x2f, input_intermediate, &input_state_csi_intermediate },
                    517:        { 0x30, 0x39, input_parameter,    &input_state_csi_parameter },
1.131     nicm      518:        { 0x3a, 0x3a, input_parameter,    &input_state_csi_parameter },
1.28      nicm      519:        { 0x3b, 0x3b, input_parameter,    &input_state_csi_parameter },
                    520:        { 0x3c, 0x3f, input_intermediate, &input_state_csi_parameter },
                    521:        { 0x40, 0x7e, input_csi_dispatch, &input_state_ground },
                    522:        { 0x7f, 0xff, NULL,               NULL },
1.1       nicm      523:
1.28      nicm      524:        { -1, -1, NULL, NULL }
                    525: };
1.1       nicm      526:
1.28      nicm      527: /* csi_parameter state table. */
1.104     nicm      528: static const struct input_transition input_state_csi_parameter_table[] = {
1.28      nicm      529:        INPUT_STATE_ANYWHERE,
                    530:
                    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,    NULL },
1.131     nicm      536:        { 0x3a, 0x3a, input_parameter,    NULL },
1.28      nicm      537:        { 0x3b, 0x3b, input_parameter,    NULL },
                    538:        { 0x3c, 0x3f, NULL,               &input_state_csi_ignore },
                    539:        { 0x40, 0x7e, input_csi_dispatch, &input_state_ground },
                    540:        { 0x7f, 0xff, NULL,               NULL },
1.1       nicm      541:
1.28      nicm      542:        { -1, -1, NULL, NULL }
                    543: };
1.1       nicm      544:
1.28      nicm      545: /* csi_intermediate state table. */
1.104     nicm      546: static const struct input_transition input_state_csi_intermediate_table[] = {
1.28      nicm      547:        INPUT_STATE_ANYWHERE,
                    548:
                    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, NULL },
                    553:        { 0x30, 0x3f, NULL,               &input_state_csi_ignore },
                    554:        { 0x40, 0x7e, input_csi_dispatch, &input_state_ground },
                    555:        { 0x7f, 0xff, NULL,               NULL },
1.1       nicm      556:
1.28      nicm      557:        { -1, -1, NULL, NULL }
                    558: };
1.1       nicm      559:
1.28      nicm      560: /* csi_ignore state table. */
1.104     nicm      561: static const struct input_transition input_state_csi_ignore_table[] = {
1.28      nicm      562:        INPUT_STATE_ANYWHERE,
                    563:
                    564:        { 0x00, 0x17, input_c0_dispatch, NULL },
                    565:        { 0x19, 0x19, input_c0_dispatch, NULL },
                    566:        { 0x1c, 0x1f, input_c0_dispatch, NULL },
                    567:        { 0x20, 0x3f, NULL,              NULL },
                    568:        { 0x40, 0x7e, NULL,              &input_state_ground },
                    569:        { 0x7f, 0xff, NULL,              NULL },
1.1       nicm      570:
1.28      nicm      571:        { -1, -1, NULL, NULL }
                    572: };
1.1       nicm      573:
1.28      nicm      574: /* dcs_enter state table. */
1.104     nicm      575: static const struct input_transition input_state_dcs_enter_table[] = {
1.28      nicm      576:        INPUT_STATE_ANYWHERE,
                    577:
                    578:        { 0x00, 0x17, NULL,               NULL },
                    579:        { 0x19, 0x19, NULL,               NULL },
                    580:        { 0x1c, 0x1f, NULL,               NULL },
                    581:        { 0x20, 0x2f, input_intermediate, &input_state_dcs_intermediate },
                    582:        { 0x30, 0x39, input_parameter,    &input_state_dcs_parameter },
                    583:        { 0x3a, 0x3a, NULL,               &input_state_dcs_ignore },
                    584:        { 0x3b, 0x3b, input_parameter,    &input_state_dcs_parameter },
                    585:        { 0x3c, 0x3f, input_intermediate, &input_state_dcs_parameter },
1.37      nicm      586:        { 0x40, 0x7e, input_input,        &input_state_dcs_handler },
1.28      nicm      587:        { 0x7f, 0xff, NULL,               NULL },
1.1       nicm      588:
1.28      nicm      589:        { -1, -1, NULL, NULL }
                    590: };
1.1       nicm      591:
1.28      nicm      592: /* dcs_parameter state table. */
1.104     nicm      593: static const struct input_transition input_state_dcs_parameter_table[] = {
1.28      nicm      594:        INPUT_STATE_ANYWHERE,
                    595:
                    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,    NULL },
                    601:        { 0x3a, 0x3a, NULL,               &input_state_dcs_ignore },
                    602:        { 0x3b, 0x3b, input_parameter,    NULL },
                    603:        { 0x3c, 0x3f, NULL,               &input_state_dcs_ignore },
1.37      nicm      604:        { 0x40, 0x7e, input_input,        &input_state_dcs_handler },
1.28      nicm      605:        { 0x7f, 0xff, NULL,               NULL },
1.1       nicm      606:
1.28      nicm      607:        { -1, -1, NULL, NULL }
                    608: };
1.1       nicm      609:
1.138     nicm      610: /* dcs_intermediate state table. */
1.104     nicm      611: static const struct input_transition input_state_dcs_intermediate_table[] = {
1.28      nicm      612:        INPUT_STATE_ANYWHERE,
                    613:
                    614:        { 0x00, 0x17, NULL,               NULL },
                    615:        { 0x19, 0x19, NULL,               NULL },
                    616:        { 0x1c, 0x1f, NULL,               NULL },
                    617:        { 0x20, 0x2f, input_intermediate, NULL },
                    618:        { 0x30, 0x3f, NULL,               &input_state_dcs_ignore },
1.37      nicm      619:        { 0x40, 0x7e, input_input,        &input_state_dcs_handler },
1.28      nicm      620:        { 0x7f, 0xff, NULL,               NULL },
1.1       nicm      621:
1.28      nicm      622:        { -1, -1, NULL, NULL }
                    623: };
1.1       nicm      624:
1.28      nicm      625: /* dcs_handler state table. */
1.104     nicm      626: static const struct input_transition input_state_dcs_handler_table[] = {
1.37      nicm      627:        /* No INPUT_STATE_ANYWHERE */
                    628:
                    629:        { 0x00, 0x1a, input_input,  NULL },
                    630:        { 0x1b, 0x1b, NULL,         &input_state_dcs_escape },
                    631:        { 0x1c, 0xff, input_input,  NULL },
                    632:
                    633:        { -1, -1, NULL, NULL }
                    634: };
                    635:
                    636: /* dcs_escape state table. */
1.104     nicm      637: static const struct input_transition input_state_dcs_escape_table[] = {
1.37      nicm      638:        /* No INPUT_STATE_ANYWHERE */
1.28      nicm      639:
1.37      nicm      640:        { 0x00, 0x5b, input_input,        &input_state_dcs_handler },
                    641:        { 0x5c, 0x5c, input_dcs_dispatch, &input_state_ground },
                    642:        { 0x5d, 0xff, input_input,        &input_state_dcs_handler },
1.1       nicm      643:
1.28      nicm      644:        { -1, -1, NULL, NULL }
                    645: };
1.1       nicm      646:
1.40      nicm      647: /* dcs_ignore state table. */
1.104     nicm      648: static const struct input_transition input_state_dcs_ignore_table[] = {
1.28      nicm      649:        INPUT_STATE_ANYWHERE,
                    650:
                    651:        { 0x00, 0x17, NULL,         NULL },
                    652:        { 0x19, 0x19, NULL,         NULL },
                    653:        { 0x1c, 0x1f, NULL,         NULL },
                    654:        { 0x20, 0xff, NULL,         NULL },
1.1       nicm      655:
1.28      nicm      656:        { -1, -1, NULL, NULL }
                    657: };
1.1       nicm      658:
1.28      nicm      659: /* osc_string state table. */
1.104     nicm      660: static const struct input_transition input_state_osc_string_table[] = {
1.28      nicm      661:        INPUT_STATE_ANYWHERE,
                    662:
1.138     nicm      663:        { 0x00, 0x06, NULL,          NULL },
                    664:        { 0x07, 0x07, input_end_bel, &input_state_ground },
                    665:        { 0x08, 0x17, NULL,          NULL },
                    666:        { 0x19, 0x19, NULL,          NULL },
                    667:        { 0x1c, 0x1f, NULL,          NULL },
                    668:        { 0x20, 0xff, input_input,   NULL },
1.1       nicm      669:
1.28      nicm      670:        { -1, -1, NULL, NULL }
                    671: };
1.1       nicm      672:
1.28      nicm      673: /* apc_string state table. */
1.104     nicm      674: static const struct input_transition input_state_apc_string_table[] = {
1.28      nicm      675:        INPUT_STATE_ANYWHERE,
                    676:
                    677:        { 0x00, 0x17, NULL,         NULL },
                    678:        { 0x19, 0x19, NULL,         NULL },
                    679:        { 0x1c, 0x1f, NULL,         NULL },
                    680:        { 0x20, 0xff, input_input,  NULL },
1.1       nicm      681:
1.28      nicm      682:        { -1, -1, NULL, NULL }
                    683: };
1.1       nicm      684:
1.28      nicm      685: /* rename_string state table. */
1.104     nicm      686: static const struct input_transition input_state_rename_string_table[] = {
1.28      nicm      687:        INPUT_STATE_ANYWHERE,
                    688:
                    689:        { 0x00, 0x17, NULL,         NULL },
                    690:        { 0x19, 0x19, NULL,         NULL },
                    691:        { 0x1c, 0x1f, NULL,         NULL },
                    692:        { 0x20, 0xff, input_input,  NULL },
1.1       nicm      693:
1.28      nicm      694:        { -1, -1, NULL, NULL }
                    695: };
1.1       nicm      696:
1.28      nicm      697: /* consume_st state table. */
1.104     nicm      698: static const struct input_transition input_state_consume_st_table[] = {
1.28      nicm      699:        INPUT_STATE_ANYWHERE,
                    700:
                    701:        { 0x00, 0x17, NULL,         NULL },
                    702:        { 0x19, 0x19, NULL,         NULL },
                    703:        { 0x1c, 0x1f, NULL,         NULL },
                    704:        { 0x20, 0xff, NULL,         NULL },
1.6       nicm      705:
1.28      nicm      706:        { -1, -1, NULL, NULL }
                    707: };
1.6       nicm      708:
1.28      nicm      709: /* Input table compare. */
1.104     nicm      710: static int
1.28      nicm      711: input_table_compare(const void *key, const void *value)
1.1       nicm      712: {
1.28      nicm      713:        const struct input_ctx          *ictx = key;
                    714:        const struct input_table_entry  *entry = value;
1.1       nicm      715:
1.28      nicm      716:        if (ictx->ch != entry->ch)
                    717:                return (ictx->ch - entry->ch);
                    718:        return (strcmp(ictx->interm_buf, entry->interm));
1.1       nicm      719: }
                    720:
1.125     nicm      721: /*
                    722:  * Timer - if this expires then have been waiting for a terminator for too
                    723:  * long, so reset to ground.
                    724:  */
                    725: static void
                    726: input_timer_callback(__unused int fd, __unused short events, void *arg)
                    727: {
                    728:        struct input_ctx        *ictx = arg;
                    729:        struct window_pane      *wp = ictx->wp;
                    730:
                    731:        log_debug("%s: %%%u %s expired" , __func__, wp->id, ictx->state->name);
                    732:        input_reset(wp, 0);
                    733: }
                    734:
                    735: /* Start the timer. */
                    736: static void
                    737: input_start_timer(struct input_ctx *ictx)
                    738: {
                    739:        struct timeval  tv = { .tv_usec = 100000 };
                    740:
                    741:        event_del(&ictx->timer);
                    742:        event_add(&ictx->timer, &tv);
                    743: }
                    744:
1.69      nicm      745: /* Reset cell state to default. */
1.104     nicm      746: static void
1.69      nicm      747: input_reset_cell(struct input_ctx *ictx)
                    748: {
                    749:        memcpy(&ictx->cell.cell, &grid_default_cell, sizeof ictx->cell.cell);
                    750:        ictx->cell.set = 0;
                    751:        ictx->cell.g0set = ictx->cell.g1set = 0;
                    752:
                    753:        memcpy(&ictx->old_cell, &ictx->cell, sizeof ictx->old_cell);
                    754:        ictx->old_cx = 0;
                    755:        ictx->old_cy = 0;
                    756: }
                    757:
1.28      nicm      758: /* Initialise input parser. */
1.1       nicm      759: void
1.28      nicm      760: input_init(struct window_pane *wp)
1.1       nicm      761: {
1.74      nicm      762:        struct input_ctx        *ictx;
                    763:
                    764:        ictx = wp->ictx = xcalloc(1, sizeof *ictx);
1.1       nicm      765:
1.67      nicm      766:        ictx->input_space = INPUT_BUF_START;
                    767:        ictx->input_buf = xmalloc(INPUT_BUF_START);
                    768:
1.97      nicm      769:        ictx->since_ground = evbuffer_new();
1.139     nicm      770:        if (ictx->since_ground == NULL)
                    771:                fatalx("out of memory");
1.52      nicm      772:
1.125     nicm      773:        evtimer_set(&ictx->timer, input_timer_callback, ictx);
                    774:
1.97      nicm      775:        input_reset(wp, 0);
1.1       nicm      776: }
                    777:
1.28      nicm      778: /* Destroy input parser. */
1.1       nicm      779: void
1.52      nicm      780: input_free(struct window_pane *wp)
1.1       nicm      781: {
1.74      nicm      782:        struct input_ctx        *ictx = wp->ictx;
1.131     nicm      783:        u_int                    i;
                    784:
                    785:        for (i = 0; i < ictx->param_list_len; i++) {
                    786:                if (ictx->param_list[i].type == INPUT_STRING)
                    787:                        free(ictx->param_list[i].str);
                    788:        }
1.74      nicm      789:
1.125     nicm      790:        event_del(&ictx->timer);
                    791:
1.74      nicm      792:        free(ictx->input_buf);
                    793:        evbuffer_free(ictx->since_ground);
                    794:
1.106     nicm      795:        free(ictx);
1.74      nicm      796:        wp->ictx = NULL;
                    797: }
                    798:
                    799: /* Reset input state and clear screen. */
                    800: void
1.97      nicm      801: input_reset(struct window_pane *wp, int clear)
1.74      nicm      802: {
                    803:        struct input_ctx        *ictx = wp->ictx;
1.67      nicm      804:
1.80      nicm      805:        input_reset_cell(ictx);
1.74      nicm      806:
1.97      nicm      807:        if (clear) {
                    808:                if (wp->mode == NULL)
                    809:                        screen_write_start(&ictx->ctx, wp, &wp->base);
                    810:                else
                    811:                        screen_write_start(&ictx->ctx, NULL, &wp->base);
                    812:                screen_write_reset(&ictx->ctx);
                    813:                screen_write_stop(&ictx->ctx);
                    814:        }
                    815:
1.125     nicm      816:        input_clear(ictx);
1.97      nicm      817:
1.127     nicm      818:        ictx->last = -1;
                    819:
1.97      nicm      820:        ictx->state = &input_state_ground;
                    821:        ictx->flags = 0;
1.74      nicm      822: }
                    823:
                    824: /* Return pending data. */
                    825: struct evbuffer *
                    826: input_pending(struct window_pane *wp)
                    827: {
                    828:        return (wp->ictx->since_ground);
1.52      nicm      829: }
                    830:
                    831: /* Change input state. */
1.104     nicm      832: static void
1.52      nicm      833: input_set_state(struct window_pane *wp, const struct input_transition *itr)
                    834: {
1.74      nicm      835:        struct input_ctx        *ictx = wp->ictx;
1.52      nicm      836:
                    837:        if (ictx->state->exit != NULL)
                    838:                ictx->state->exit(ictx);
                    839:        ictx->state = itr->state;
                    840:        if (ictx->state->enter != NULL)
                    841:                ictx->state->enter(ictx);
1.1       nicm      842: }
                    843:
1.28      nicm      844: /* Parse input. */
1.1       nicm      845: void
1.28      nicm      846: input_parse(struct window_pane *wp)
1.1       nicm      847: {
1.74      nicm      848:        struct input_ctx                *ictx = wp->ictx;
1.28      nicm      849:        const struct input_transition   *itr;
                    850:        struct evbuffer                 *evb = wp->event->input;
                    851:        u_char                          *buf;
                    852:        size_t                           len, off;
1.1       nicm      853:
1.28      nicm      854:        if (EVBUFFER_LENGTH(evb) == 0)
                    855:                return;
1.82      nicm      856:
1.83      nicm      857:        window_update_activity(wp->window);
1.82      nicm      858:        wp->flags |= PANE_CHANGED;
1.30      nicm      859:
1.28      nicm      860:        /*
                    861:         * Open the screen. Use NULL wp if there is a mode set as don't want to
                    862:         * update the tty.
                    863:         */
                    864:        if (wp->mode == NULL)
                    865:                screen_write_start(&ictx->ctx, wp, &wp->base);
                    866:        else
                    867:                screen_write_start(&ictx->ctx, NULL, &wp->base);
                    868:        ictx->wp = wp;
1.7       nicm      869:
1.28      nicm      870:        buf = EVBUFFER_DATA(evb);
                    871:        len = EVBUFFER_LENGTH(evb);
1.110     nicm      872:        off = 0;
                    873:
1.54      nicm      874:        notify_input(wp, evb);
1.28      nicm      875:
1.86      nicm      876:        log_debug("%s: %%%u %s, %zu bytes: %.*s", __func__, wp->id,
                    877:            ictx->state->name, len, (int)len, buf);
1.84      nicm      878:
1.28      nicm      879:        /* Parse the input. */
                    880:        while (off < len) {
                    881:                ictx->ch = buf[off++];
                    882:
                    883:                /* Find the transition. */
                    884:                itr = ictx->state->transitions;
                    885:                while (itr->first != -1 && itr->last != -1) {
                    886:                        if (ictx->ch >= itr->first && ictx->ch <= itr->last)
1.7       nicm      887:                                break;
1.28      nicm      888:                        itr++;
1.1       nicm      889:                }
1.28      nicm      890:                if (itr->first == -1 || itr->last == -1) {
                    891:                        /* No transition? Eh? */
1.85      nicm      892:                        fatalx("no transition from state");
1.3       nicm      893:                }
1.1       nicm      894:
                    895:                /*
1.114     nicm      896:                 * Any state except print stops the current collection. This is
                    897:                 * an optimization to avoid checking if the attributes have
                    898:                 * changed for every character. It will stop unnecessarily for
                    899:                 * sequences that don't make a terminal change, but they should
                    900:                 * be the minority.
                    901:                 */
                    902:                if (itr->handler != input_print)
                    903:                        screen_write_collect_end(&ictx->ctx);
                    904:
                    905:                /*
1.28      nicm      906:                 * Execute the handler, if any. Don't switch state if it
                    907:                 * returns non-zero.
1.1       nicm      908:                 */
1.31      nicm      909:                if (itr->handler != NULL && itr->handler(ictx) != 0)
1.28      nicm      910:                        continue;
                    911:
                    912:                /* And switch state, if necessary. */
1.52      nicm      913:                if (itr->state != NULL)
                    914:                        input_set_state(wp, itr);
                    915:
                    916:                /* If not in ground state, save input. */
                    917:                if (ictx->state != &input_state_ground)
                    918:                        evbuffer_add(ictx->since_ground, &ictx->ch, 1);
1.1       nicm      919:        }
                    920:
1.28      nicm      921:        /* Close the screen. */
                    922:        screen_write_stop(&ictx->ctx);
1.1       nicm      923:
1.28      nicm      924:        evbuffer_drain(evb, len);
1.1       nicm      925: }
                    926:
1.28      nicm      927: /* Split the parameter list (if any). */
1.104     nicm      928: static int
1.28      nicm      929: input_split(struct input_ctx *ictx)
1.1       nicm      930: {
1.131     nicm      931:        const char              *errstr;
                    932:        char                    *ptr, *out;
                    933:        struct input_param      *ip;
                    934:        u_int                    i;
1.1       nicm      935:
1.131     nicm      936:        for (i = 0; i < ictx->param_list_len; i++) {
                    937:                if (ictx->param_list[i].type == INPUT_STRING)
                    938:                        free(ictx->param_list[i].str);
                    939:        }
1.28      nicm      940:        ictx->param_list_len = 0;
1.131     nicm      941:
1.28      nicm      942:        if (ictx->param_len == 0)
                    943:                return (0);
1.131     nicm      944:        ip = &ictx->param_list[0];
1.1       nicm      945:
1.28      nicm      946:        ptr = ictx->param_buf;
                    947:        while ((out = strsep(&ptr, ";")) != NULL) {
                    948:                if (*out == '\0')
1.131     nicm      949:                        ip->type = INPUT_MISSING;
1.28      nicm      950:                else {
1.131     nicm      951:                        if (strchr(out, ':') != NULL) {
                    952:                                ip->type = INPUT_STRING;
                    953:                                ip->str = xstrdup(out);
                    954:                        } else {
                    955:                                ip->type = INPUT_NUMBER;
                    956:                                ip->num = strtonum(out, 0, INT_MAX, &errstr);
                    957:                                if (errstr != NULL)
                    958:                                        return (-1);
                    959:                        }
1.28      nicm      960:                }
1.131     nicm      961:                ip = &ictx->param_list[++ictx->param_list_len];
1.28      nicm      962:                if (ictx->param_list_len == nitems(ictx->param_list))
                    963:                        return (-1);
                    964:        }
1.1       nicm      965:
1.131     nicm      966:        for (i = 0; i < ictx->param_list_len; i++) {
                    967:                ip = &ictx->param_list[i];
                    968:                if (ip->type == INPUT_MISSING)
                    969:                        log_debug("parameter %u: missing", i);
                    970:                else if (ip->type == INPUT_STRING)
                    971:                        log_debug("parameter %u: string %s", i, ip->str);
                    972:                else if (ip->type == INPUT_NUMBER)
                    973:                        log_debug("parameter %u: number %d", i, ip->num);
                    974:        }
                    975:
1.28      nicm      976:        return (0);
1.1       nicm      977: }
                    978:
1.40      nicm      979: /* Get an argument or return default value. */
1.104     nicm      980: static int
1.28      nicm      981: input_get(struct input_ctx *ictx, u_int validx, int minval, int defval)
1.1       nicm      982: {
1.131     nicm      983:        struct input_param      *ip;
                    984:        int                      retval;
1.1       nicm      985:
1.28      nicm      986:        if (validx >= ictx->param_list_len)
                    987:            return (defval);
1.131     nicm      988:        ip = &ictx->param_list[validx];
                    989:        if (ip->type == INPUT_MISSING)
1.28      nicm      990:                return (defval);
1.131     nicm      991:        if (ip->type == INPUT_STRING)
                    992:                return (-1);
                    993:        retval = ip->num;
1.28      nicm      994:        if (retval < minval)
                    995:                return (minval);
                    996:        return (retval);
1.1       nicm      997: }
                    998:
1.28      nicm      999: /* Reply to terminal query. */
1.104     nicm     1000: static void
1.28      nicm     1001: input_reply(struct input_ctx *ictx, const char *fmt, ...)
1.1       nicm     1002: {
1.138     nicm     1003:        va_list  ap;
                   1004:        char    *reply;
1.1       nicm     1005:
1.28      nicm     1006:        va_start(ap, fmt);
1.103     nicm     1007:        xvasprintf(&reply, fmt, ap);
1.28      nicm     1008:        va_end(ap);
1.1       nicm     1009:
1.28      nicm     1010:        bufferevent_write(ictx->wp->event, reply, strlen(reply));
1.53      nicm     1011:        free(reply);
1.8       nicm     1012: }
                   1013:
1.28      nicm     1014: /* Clear saved state. */
1.104     nicm     1015: static void
1.28      nicm     1016: input_clear(struct input_ctx *ictx)
1.8       nicm     1017: {
1.125     nicm     1018:        event_del(&ictx->timer);
                   1019:
1.28      nicm     1020:        *ictx->interm_buf = '\0';
                   1021:        ictx->interm_len = 0;
1.8       nicm     1022:
1.28      nicm     1023:        *ictx->param_buf = '\0';
                   1024:        ictx->param_len = 0;
1.8       nicm     1025:
1.35      nicm     1026:        *ictx->input_buf = '\0';
                   1027:        ictx->input_len = 0;
                   1028:
1.138     nicm     1029:        ictx->input_end = INPUT_END_ST;
                   1030:
1.28      nicm     1031:        ictx->flags &= ~INPUT_DISCARD;
1.14      nicm     1032: }
                   1033:
1.67      nicm     1034: /* Reset for ground state. */
1.104     nicm     1035: static void
1.67      nicm     1036: input_ground(struct input_ctx *ictx)
                   1037: {
1.125     nicm     1038:        event_del(&ictx->timer);
1.67      nicm     1039:        evbuffer_drain(ictx->since_ground, EVBUFFER_LENGTH(ictx->since_ground));
                   1040:
                   1041:        if (ictx->input_space > INPUT_BUF_START) {
                   1042:                ictx->input_space = INPUT_BUF_START;
1.71      nicm     1043:                ictx->input_buf = xrealloc(ictx->input_buf, INPUT_BUF_START);
1.67      nicm     1044:        }
                   1045: }
                   1046:
1.28      nicm     1047: /* Output this character to the screen. */
1.104     nicm     1048: static int
1.28      nicm     1049: input_print(struct input_ctx *ictx)
1.14      nicm     1050: {
1.69      nicm     1051:        int     set;
                   1052:
1.130     nicm     1053:        ictx->utf8started = 0; /* can't be valid UTF-8 */
                   1054:
1.69      nicm     1055:        set = ictx->cell.set == 0 ? ictx->cell.g0set : ictx->cell.g1set;
                   1056:        if (set == 1)
                   1057:                ictx->cell.cell.attr |= GRID_ATTR_CHARSET;
                   1058:        else
                   1059:                ictx->cell.cell.attr &= ~GRID_ATTR_CHARSET;
                   1060:
1.89      nicm     1061:        utf8_set(&ictx->cell.cell.data, ictx->ch);
1.114     nicm     1062:        screen_write_collect_add(&ictx->ctx, &ictx->cell.cell);
1.127     nicm     1063:        ictx->last = ictx->ch;
1.69      nicm     1064:
                   1065:        ictx->cell.cell.attr &= ~GRID_ATTR_CHARSET;
1.14      nicm     1066:
1.28      nicm     1067:        return (0);
1.1       nicm     1068: }
                   1069:
1.28      nicm     1070: /* Collect intermediate string. */
1.104     nicm     1071: static int
1.28      nicm     1072: input_intermediate(struct input_ctx *ictx)
1.1       nicm     1073: {
1.28      nicm     1074:        if (ictx->interm_len == (sizeof ictx->interm_buf) - 1)
                   1075:                ictx->flags |= INPUT_DISCARD;
                   1076:        else {
                   1077:                ictx->interm_buf[ictx->interm_len++] = ictx->ch;
                   1078:                ictx->interm_buf[ictx->interm_len] = '\0';
                   1079:        }
1.1       nicm     1080:
1.28      nicm     1081:        return (0);
1.1       nicm     1082: }
                   1083:
1.28      nicm     1084: /* Collect parameter string. */
1.104     nicm     1085: static int
1.28      nicm     1086: input_parameter(struct input_ctx *ictx)
1.1       nicm     1087: {
1.28      nicm     1088:        if (ictx->param_len == (sizeof ictx->param_buf) - 1)
                   1089:                ictx->flags |= INPUT_DISCARD;
                   1090:        else {
                   1091:                ictx->param_buf[ictx->param_len++] = ictx->ch;
                   1092:                ictx->param_buf[ictx->param_len] = '\0';
                   1093:        }
1.1       nicm     1094:
1.28      nicm     1095:        return (0);
1.1       nicm     1096: }
                   1097:
1.28      nicm     1098: /* Collect input string. */
1.104     nicm     1099: static int
1.28      nicm     1100: input_input(struct input_ctx *ictx)
1.1       nicm     1101: {
1.67      nicm     1102:        size_t available;
                   1103:
                   1104:        available = ictx->input_space;
                   1105:        while (ictx->input_len + 1 >= available) {
                   1106:                available *= 2;
                   1107:                if (available > INPUT_BUF_LIMIT) {
                   1108:                        ictx->flags |= INPUT_DISCARD;
                   1109:                        return (0);
                   1110:                }
1.71      nicm     1111:                ictx->input_buf = xrealloc(ictx->input_buf, available);
1.67      nicm     1112:                ictx->input_space = available;
1.28      nicm     1113:        }
1.67      nicm     1114:        ictx->input_buf[ictx->input_len++] = ictx->ch;
                   1115:        ictx->input_buf[ictx->input_len] = '\0';
1.1       nicm     1116:
1.28      nicm     1117:        return (0);
1.1       nicm     1118: }
                   1119:
1.28      nicm     1120: /* Execute C0 control sequence. */
1.104     nicm     1121: static int
1.28      nicm     1122: input_c0_dispatch(struct input_ctx *ictx)
1.1       nicm     1123: {
1.28      nicm     1124:        struct screen_write_ctx *sctx = &ictx->ctx;
                   1125:        struct window_pane      *wp = ictx->wp;
                   1126:        struct screen           *s = sctx->s;
1.1       nicm     1127:
1.130     nicm     1128:        ictx->utf8started = 0; /* can't be valid UTF-8 */
                   1129:
1.84      nicm     1130:        log_debug("%s: '%c'", __func__, ictx->ch);
1.1       nicm     1131:
1.28      nicm     1132:        switch (ictx->ch) {
                   1133:        case '\000':    /* NUL */
                   1134:                break;
                   1135:        case '\007':    /* BEL */
1.83      nicm     1136:                alerts_queue(wp->window, WINDOW_BELL);
1.28      nicm     1137:                break;
                   1138:        case '\010':    /* BS */
                   1139:                screen_write_backspace(sctx);
1.75      nicm     1140:                break;
1.28      nicm     1141:        case '\011':    /* HT */
                   1142:                /* Don't tab beyond the end of the line. */
                   1143:                if (s->cx >= screen_size_x(s) - 1)
                   1144:                        break;
1.1       nicm     1145:
1.28      nicm     1146:                /* Find the next tab point, or use the last column if none. */
                   1147:                do {
                   1148:                        s->cx++;
                   1149:                        if (bit_test(s->tabs, s->cx))
                   1150:                                break;
                   1151:                } while (s->cx < screen_size_x(s) - 1);
                   1152:                break;
                   1153:        case '\012':    /* LF */
                   1154:        case '\013':    /* VT */
                   1155:        case '\014':    /* FF */
1.121     nicm     1156:                screen_write_linefeed(sctx, 0, ictx->cell.cell.bg);
1.75      nicm     1157:                break;
1.28      nicm     1158:        case '\015':    /* CR */
                   1159:                screen_write_carriagereturn(sctx);
1.75      nicm     1160:                break;
1.28      nicm     1161:        case '\016':    /* SO */
1.69      nicm     1162:                ictx->cell.set = 1;
1.28      nicm     1163:                break;
                   1164:        case '\017':    /* SI */
1.69      nicm     1165:                ictx->cell.set = 0;
1.28      nicm     1166:                break;
                   1167:        default:
                   1168:                log_debug("%s: unknown '%c'", __func__, ictx->ch);
                   1169:                break;
                   1170:        }
1.1       nicm     1171:
1.127     nicm     1172:        ictx->last = -1;
1.28      nicm     1173:        return (0);
1.7       nicm     1174: }
                   1175:
1.28      nicm     1176: /* Execute escape sequence. */
1.104     nicm     1177: static int
1.28      nicm     1178: input_esc_dispatch(struct input_ctx *ictx)
1.7       nicm     1179: {
1.31      nicm     1180:        struct screen_write_ctx         *sctx = &ictx->ctx;
                   1181:        struct screen                   *s = sctx->s;
                   1182:        struct input_table_entry        *entry;
1.7       nicm     1183:
1.28      nicm     1184:        if (ictx->flags & INPUT_DISCARD)
                   1185:                return (0);
                   1186:        log_debug("%s: '%c', %s", __func__, ictx->ch, ictx->interm_buf);
1.7       nicm     1187:
1.28      nicm     1188:        entry = bsearch(ictx, input_esc_table, nitems(input_esc_table),
                   1189:            sizeof input_esc_table[0], input_table_compare);
                   1190:        if (entry == NULL) {
                   1191:                log_debug("%s: unknown '%c'", __func__, ictx->ch);
                   1192:                return (0);
                   1193:        }
1.7       nicm     1194:
1.28      nicm     1195:        switch (entry->type) {
                   1196:        case INPUT_ESC_RIS:
1.107     nicm     1197:                window_pane_reset_palette(ictx->wp);
1.69      nicm     1198:                input_reset_cell(ictx);
1.46      nicm     1199:                screen_write_reset(sctx);
1.135     nicm     1200:                screen_write_clearhistory(sctx);
1.28      nicm     1201:                break;
                   1202:        case INPUT_ESC_IND:
1.121     nicm     1203:                screen_write_linefeed(sctx, 0, ictx->cell.cell.bg);
1.28      nicm     1204:                break;
                   1205:        case INPUT_ESC_NEL:
                   1206:                screen_write_carriagereturn(sctx);
1.121     nicm     1207:                screen_write_linefeed(sctx, 0, ictx->cell.cell.bg);
1.28      nicm     1208:                break;
                   1209:        case INPUT_ESC_HTS:
                   1210:                if (s->cx < screen_size_x(s))
                   1211:                        bit_set(s->tabs, s->cx);
                   1212:                break;
                   1213:        case INPUT_ESC_RI:
1.121     nicm     1214:                screen_write_reverseindex(sctx, ictx->cell.cell.bg);
1.28      nicm     1215:                break;
                   1216:        case INPUT_ESC_DECKPAM:
1.59      nicm     1217:                screen_write_mode_set(sctx, MODE_KKEYPAD);
1.28      nicm     1218:                break;
                   1219:        case INPUT_ESC_DECKPNM:
1.59      nicm     1220:                screen_write_mode_clear(sctx, MODE_KKEYPAD);
1.1       nicm     1221:                break;
1.28      nicm     1222:        case INPUT_ESC_DECSC:
                   1223:                memcpy(&ictx->old_cell, &ictx->cell, sizeof ictx->old_cell);
                   1224:                ictx->old_cx = s->cx;
                   1225:                ictx->old_cy = s->cy;
                   1226:                break;
                   1227:        case INPUT_ESC_DECRC:
                   1228:                memcpy(&ictx->cell, &ictx->old_cell, sizeof ictx->cell);
                   1229:                screen_write_cursormove(sctx, ictx->old_cx, ictx->old_cy);
                   1230:                break;
                   1231:        case INPUT_ESC_DECALN:
                   1232:                screen_write_alignmenttest(sctx);
                   1233:                break;
1.69      nicm     1234:        case INPUT_ESC_SCSG0_ON:
                   1235:                ictx->cell.g0set = 1;
                   1236:                break;
                   1237:        case INPUT_ESC_SCSG0_OFF:
                   1238:                ictx->cell.g0set = 0;
                   1239:                break;
                   1240:        case INPUT_ESC_SCSG1_ON:
                   1241:                ictx->cell.g1set = 1;
1.1       nicm     1242:                break;
1.69      nicm     1243:        case INPUT_ESC_SCSG1_OFF:
                   1244:                ictx->cell.g1set = 0;
1.1       nicm     1245:                break;
1.107     nicm     1246:        case INPUT_ESC_ST:
                   1247:                /* ST terminates OSC but the state transition already did it. */
                   1248:                break;
1.1       nicm     1249:        }
1.28      nicm     1250:
1.127     nicm     1251:        ictx->last = -1;
1.28      nicm     1252:        return (0);
1.1       nicm     1253: }
                   1254:
1.28      nicm     1255: /* Execute control sequence. */
1.104     nicm     1256: static int
1.28      nicm     1257: input_csi_dispatch(struct input_ctx *ictx)
1.1       nicm     1258: {
1.28      nicm     1259:        struct screen_write_ctx        *sctx = &ictx->ctx;
                   1260:        struct screen                  *s = sctx->s;
                   1261:        struct input_table_entry       *entry;
1.127     nicm     1262:        int                             i, n, m;
1.131     nicm     1263:        u_int                           cx, bg = ictx->cell.cell.bg;
1.1       nicm     1264:
1.28      nicm     1265:        if (ictx->flags & INPUT_DISCARD)
                   1266:                return (0);
1.110     nicm     1267:
                   1268:        log_debug("%s: '%c' \"%s\" \"%s\"",
                   1269:            __func__, ictx->ch, ictx->interm_buf, ictx->param_buf);
                   1270:
1.28      nicm     1271:        if (input_split(ictx) != 0)
                   1272:                return (0);
1.1       nicm     1273:
1.28      nicm     1274:        entry = bsearch(ictx, input_csi_table, nitems(input_csi_table),
                   1275:            sizeof input_csi_table[0], input_table_compare);
                   1276:        if (entry == NULL) {
                   1277:                log_debug("%s: unknown '%c'", __func__, ictx->ch);
                   1278:                return (0);
                   1279:        }
1.1       nicm     1280:
1.28      nicm     1281:        switch (entry->type) {
                   1282:        case INPUT_CSI_CBT:
                   1283:                /* Find the previous tab point, n times. */
1.81      nicm     1284:                cx = s->cx;
                   1285:                if (cx > screen_size_x(s) - 1)
                   1286:                        cx = screen_size_x(s) - 1;
1.28      nicm     1287:                n = input_get(ictx, 0, 1, 1);
1.131     nicm     1288:                if (n == -1)
                   1289:                        break;
1.81      nicm     1290:                while (cx > 0 && n-- > 0) {
1.28      nicm     1291:                        do
1.81      nicm     1292:                                cx--;
                   1293:                        while (cx > 0 && !bit_test(s->tabs, cx));
1.28      nicm     1294:                }
1.81      nicm     1295:                s->cx = cx;
1.28      nicm     1296:                break;
                   1297:        case INPUT_CSI_CUB:
1.131     nicm     1298:                n = input_get(ictx, 0, 1, 1);
                   1299:                if (n != -1)
                   1300:                        screen_write_cursorleft(sctx, n);
1.28      nicm     1301:                break;
                   1302:        case INPUT_CSI_CUD:
1.131     nicm     1303:                n = input_get(ictx, 0, 1, 1);
                   1304:                if (n != -1)
                   1305:                        screen_write_cursordown(sctx, n);
1.28      nicm     1306:                break;
                   1307:        case INPUT_CSI_CUF:
1.131     nicm     1308:                n = input_get(ictx, 0, 1, 1);
                   1309:                if (n != -1)
                   1310:                        screen_write_cursorright(sctx, n);
1.28      nicm     1311:                break;
                   1312:        case INPUT_CSI_CUP:
                   1313:                n = input_get(ictx, 0, 1, 1);
                   1314:                m = input_get(ictx, 1, 1, 1);
1.131     nicm     1315:                if (n != -1 && m != -1)
                   1316:                        screen_write_cursormove(sctx, m - 1, n - 1);
1.28      nicm     1317:                break;
1.65      nicm     1318:        case INPUT_CSI_WINOPS:
                   1319:                input_csi_dispatch_winops(ictx);
                   1320:                break;
1.28      nicm     1321:        case INPUT_CSI_CUU:
1.131     nicm     1322:                n = input_get(ictx, 0, 1, 1);
                   1323:                if (n != -1)
                   1324:                        screen_write_cursorup(sctx, n);
1.43      nicm     1325:                break;
                   1326:        case INPUT_CSI_CNL:
1.131     nicm     1327:                n = input_get(ictx, 0, 1, 1);
                   1328:                if (n != -1) {
                   1329:                        screen_write_carriagereturn(sctx);
                   1330:                        screen_write_cursordown(sctx, n);
                   1331:                }
1.43      nicm     1332:                break;
                   1333:        case INPUT_CSI_CPL:
1.131     nicm     1334:                n = input_get(ictx, 0, 1, 1);
                   1335:                if (n != -1) {
                   1336:                        screen_write_carriagereturn(sctx);
                   1337:                        screen_write_cursorup(sctx, n);
                   1338:                }
1.28      nicm     1339:                break;
                   1340:        case INPUT_CSI_DA:
                   1341:                switch (input_get(ictx, 0, 0, 0)) {
1.131     nicm     1342:                case -1:
                   1343:                        break;
1.28      nicm     1344:                case 0:
                   1345:                        input_reply(ictx, "\033[?1;2c");
1.50      nicm     1346:                        break;
                   1347:                default:
                   1348:                        log_debug("%s: unknown '%c'", __func__, ictx->ch);
                   1349:                        break;
                   1350:                }
                   1351:                break;
                   1352:        case INPUT_CSI_DA_TWO:
                   1353:                switch (input_get(ictx, 0, 0, 0)) {
1.131     nicm     1354:                case -1:
                   1355:                        break;
1.50      nicm     1356:                case 0:
1.66      nicm     1357:                        input_reply(ictx, "\033[>84;0;0c");
1.28      nicm     1358:                        break;
                   1359:                default:
                   1360:                        log_debug("%s: unknown '%c'", __func__, ictx->ch);
                   1361:                        break;
                   1362:                }
1.56      nicm     1363:                break;
                   1364:        case INPUT_CSI_ECH:
1.131     nicm     1365:                n = input_get(ictx, 0, 1, 1);
                   1366:                if (n != -1)
                   1367:                        screen_write_clearcharacter(sctx, n, bg);
1.28      nicm     1368:                break;
                   1369:        case INPUT_CSI_DCH:
1.131     nicm     1370:                n = input_get(ictx, 0, 1, 1);
                   1371:                if (n != -1)
                   1372:                        screen_write_deletecharacter(sctx, n, bg);
1.28      nicm     1373:                break;
                   1374:        case INPUT_CSI_DECSTBM:
                   1375:                n = input_get(ictx, 0, 1, 1);
                   1376:                m = input_get(ictx, 1, 1, screen_size_y(s));
1.131     nicm     1377:                if (n != -1 && m != -1)
                   1378:                        screen_write_scrollregion(sctx, n - 1, m - 1);
1.1       nicm     1379:                break;
1.28      nicm     1380:        case INPUT_CSI_DL:
1.131     nicm     1381:                n = input_get(ictx, 0, 1, 1);
                   1382:                if (n != -1)
                   1383:                        screen_write_deleteline(sctx, n, bg);
1.1       nicm     1384:                break;
1.28      nicm     1385:        case INPUT_CSI_DSR:
                   1386:                switch (input_get(ictx, 0, 0, 0)) {
1.131     nicm     1387:                case -1:
                   1388:                        break;
1.28      nicm     1389:                case 5:
                   1390:                        input_reply(ictx, "\033[0n");
                   1391:                        break;
                   1392:                case 6:
                   1393:                        input_reply(ictx, "\033[%u;%uR", s->cy + 1, s->cx + 1);
                   1394:                        break;
                   1395:                default:
                   1396:                        log_debug("%s: unknown '%c'", __func__, ictx->ch);
                   1397:                        break;
                   1398:                }
                   1399:                break;
                   1400:        case INPUT_CSI_ED:
                   1401:                switch (input_get(ictx, 0, 0, 0)) {
1.131     nicm     1402:                case -1:
                   1403:                        break;
1.28      nicm     1404:                case 0:
1.131     nicm     1405:                        screen_write_clearendofscreen(sctx, bg);
1.28      nicm     1406:                        break;
                   1407:                case 1:
1.131     nicm     1408:                        screen_write_clearstartofscreen(sctx, bg);
1.28      nicm     1409:                        break;
                   1410:                case 2:
1.131     nicm     1411:                        screen_write_clearscreen(sctx, bg);
1.41      nicm     1412:                        break;
                   1413:                case 3:
1.131     nicm     1414:                        if (input_get(ictx, 1, 0, 0) == 0) {
1.41      nicm     1415:                                /*
                   1416:                                 * Linux console extension to clear history
                   1417:                                 * (for example before locking the screen).
                   1418:                                 */
                   1419:                                screen_write_clearhistory(sctx);
                   1420:                        }
1.28      nicm     1421:                        break;
                   1422:                default:
                   1423:                        log_debug("%s: unknown '%c'", __func__, ictx->ch);
                   1424:                        break;
                   1425:                }
                   1426:                break;
                   1427:        case INPUT_CSI_EL:
                   1428:                switch (input_get(ictx, 0, 0, 0)) {
1.131     nicm     1429:                case -1:
                   1430:                        break;
1.28      nicm     1431:                case 0:
1.131     nicm     1432:                        screen_write_clearendofline(sctx, bg);
1.28      nicm     1433:                        break;
                   1434:                case 1:
1.131     nicm     1435:                        screen_write_clearstartofline(sctx, bg);
1.28      nicm     1436:                        break;
                   1437:                case 2:
1.131     nicm     1438:                        screen_write_clearline(sctx, bg);
1.28      nicm     1439:                        break;
                   1440:                default:
                   1441:                        log_debug("%s: unknown '%c'", __func__, ictx->ch);
                   1442:                        break;
                   1443:                }
                   1444:                break;
                   1445:        case INPUT_CSI_HPA:
                   1446:                n = input_get(ictx, 0, 1, 1);
1.131     nicm     1447:                if (n != -1)
                   1448:                        screen_write_cursormove(sctx, n - 1, s->cy);
1.28      nicm     1449:                break;
                   1450:        case INPUT_CSI_ICH:
1.131     nicm     1451:                n = input_get(ictx, 0, 1, 1);
                   1452:                if (n != -1)
                   1453:                        screen_write_insertcharacter(sctx, n, bg);
1.28      nicm     1454:                break;
                   1455:        case INPUT_CSI_IL:
1.131     nicm     1456:                n = input_get(ictx, 0, 1, 1);
                   1457:                if (n != -1)
                   1458:                        screen_write_insertline(sctx, n, bg);
1.28      nicm     1459:                break;
1.127     nicm     1460:        case INPUT_CSI_REP:
1.131     nicm     1461:                n = input_get(ictx, 0, 1, 1);
                   1462:                if (n == -1)
                   1463:                        break;
                   1464:
1.127     nicm     1465:                if (ictx->last == -1)
                   1466:                        break;
                   1467:                ictx->ch = ictx->last;
                   1468:
                   1469:                for (i = 0; i < n; i++)
                   1470:                        input_print(ictx);
                   1471:                break;
1.42      nicm     1472:        case INPUT_CSI_RCP:
                   1473:                memcpy(&ictx->cell, &ictx->old_cell, sizeof ictx->cell);
                   1474:                screen_write_cursormove(sctx, ictx->old_cx, ictx->old_cy);
                   1475:                break;
1.28      nicm     1476:        case INPUT_CSI_RM:
1.64      nicm     1477:                input_csi_dispatch_rm(ictx);
                   1478:                break;
                   1479:        case INPUT_CSI_RM_PRIVATE:
                   1480:                input_csi_dispatch_rm_private(ictx);
                   1481:                break;
                   1482:        case INPUT_CSI_SCP:
                   1483:                memcpy(&ictx->old_cell, &ictx->cell, sizeof ictx->old_cell);
                   1484:                ictx->old_cx = s->cx;
                   1485:                ictx->old_cy = s->cy;
                   1486:                break;
                   1487:        case INPUT_CSI_SGR:
                   1488:                input_csi_dispatch_sgr(ictx);
                   1489:                break;
                   1490:        case INPUT_CSI_SM:
                   1491:                input_csi_dispatch_sm(ictx);
                   1492:                break;
                   1493:        case INPUT_CSI_SM_PRIVATE:
                   1494:                input_csi_dispatch_sm_private(ictx);
1.115     nicm     1495:                break;
                   1496:        case INPUT_CSI_SU:
1.131     nicm     1497:                n = input_get(ictx, 0, 1, 1);
                   1498:                if (n != -1)
                   1499:                        screen_write_scrollup(sctx, n, bg);
1.64      nicm     1500:                break;
                   1501:        case INPUT_CSI_TBC:
                   1502:                switch (input_get(ictx, 0, 0, 0)) {
1.131     nicm     1503:                case -1:
                   1504:                        break;
1.64      nicm     1505:                case 0:
                   1506:                        if (s->cx < screen_size_x(s))
                   1507:                                bit_clear(s->tabs, s->cx);
                   1508:                        break;
                   1509:                case 3:
                   1510:                        bit_nclear(s->tabs, 0, screen_size_x(s) - 1);
                   1511:                        break;
                   1512:                default:
                   1513:                        log_debug("%s: unknown '%c'", __func__, ictx->ch);
                   1514:                        break;
                   1515:                }
                   1516:                break;
                   1517:        case INPUT_CSI_VPA:
                   1518:                n = input_get(ictx, 0, 1, 1);
1.131     nicm     1519:                if (n != -1)
                   1520:                        screen_write_cursormove(sctx, s->cx, n - 1);
1.64      nicm     1521:                break;
                   1522:        case INPUT_CSI_DECSCUSR:
                   1523:                n = input_get(ictx, 0, 0, 0);
1.131     nicm     1524:                if (n != -1)
                   1525:                        screen_set_cursor_style(s, n);
1.64      nicm     1526:                break;
                   1527:        }
                   1528:
1.127     nicm     1529:        ictx->last = -1;
1.64      nicm     1530:        return (0);
                   1531: }
                   1532:
                   1533: /* Handle CSI RM. */
1.104     nicm     1534: static void
1.64      nicm     1535: input_csi_dispatch_rm(struct input_ctx *ictx)
                   1536: {
                   1537:        u_int   i;
                   1538:
                   1539:        for (i = 0; i < ictx->param_list_len; i++) {
                   1540:                switch (input_get(ictx, i, 0, -1)) {
1.131     nicm     1541:                case -1:
                   1542:                        break;
1.28      nicm     1543:                case 4:         /* IRM */
1.59      nicm     1544:                        screen_write_mode_clear(&ictx->ctx, MODE_INSERT);
1.28      nicm     1545:                        break;
1.72      nicm     1546:                case 34:
                   1547:                        screen_write_mode_set(&ictx->ctx, MODE_BLINKING);
                   1548:                        break;
1.28      nicm     1549:                default:
                   1550:                        log_debug("%s: unknown '%c'", __func__, ictx->ch);
                   1551:                        break;
                   1552:                }
1.64      nicm     1553:        }
                   1554: }
                   1555:
                   1556: /* Handle CSI private RM. */
1.104     nicm     1557: static void
1.64      nicm     1558: input_csi_dispatch_rm_private(struct input_ctx *ictx)
                   1559: {
1.69      nicm     1560:        struct window_pane      *wp = ictx->wp;
                   1561:        u_int                    i;
1.64      nicm     1562:
                   1563:        for (i = 0; i < ictx->param_list_len; i++) {
                   1564:                switch (input_get(ictx, i, 0, -1)) {
1.131     nicm     1565:                case -1:
                   1566:                        break;
1.64      nicm     1567:                case 1:         /* DECCKM */
1.59      nicm     1568:                        screen_write_mode_clear(&ictx->ctx, MODE_KCURSOR);
1.1       nicm     1569:                        break;
1.17      nicm     1570:                case 3:         /* DECCOLM */
1.24      nicm     1571:                        screen_write_cursormove(&ictx->ctx, 0, 0);
1.105     nicm     1572:                        screen_write_clearscreen(&ictx->ctx,
                   1573:                            ictx->cell.cell.bg);
1.17      nicm     1574:                        break;
1.141   ! nicm     1575:                case 6:         /* DECOM */
        !          1576:                        screen_write_mode_clear(&ictx->ctx, MODE_ORIGIN);
        !          1577:                        screen_write_cursormove(&ictx->ctx, 0, 0);
        !          1578:                        break;
1.61      nicm     1579:                case 7:         /* DECAWM */
                   1580:                        screen_write_mode_clear(&ictx->ctx, MODE_WRAP);
                   1581:                        break;
1.72      nicm     1582:                case 12:
                   1583:                        screen_write_mode_clear(&ictx->ctx, MODE_BLINKING);
                   1584:                        break;
1.1       nicm     1585:                case 25:        /* TCEM */
1.59      nicm     1586:                        screen_write_mode_clear(&ictx->ctx, MODE_CURSOR);
1.1       nicm     1587:                        break;
                   1588:                case 1000:
1.32      nicm     1589:                case 1001:
                   1590:                case 1002:
1.109     nicm     1591:                case 1003:
1.59      nicm     1592:                        screen_write_mode_clear(&ictx->ctx, ALL_MOUSE_MODES);
1.1       nicm     1593:                        break;
1.62      nicm     1594:                case 1004:
                   1595:                        screen_write_mode_clear(&ictx->ctx, MODE_FOCUSON);
                   1596:                        break;
1.96      nicm     1597:                case 1005:
                   1598:                        screen_write_mode_clear(&ictx->ctx, MODE_MOUSE_UTF8);
                   1599:                        break;
1.60      nicm     1600:                case 1006:
                   1601:                        screen_write_mode_clear(&ictx->ctx, MODE_MOUSE_SGR);
                   1602:                        break;
1.55      nicm     1603:                case 47:
                   1604:                case 1047:
1.69      nicm     1605:                        window_pane_alternate_off(wp, &ictx->cell.cell, 0);
1.55      nicm     1606:                        break;
1.9       nicm     1607:                case 1049:
1.69      nicm     1608:                        window_pane_alternate_off(wp, &ictx->cell.cell, 1);
1.9       nicm     1609:                        break;
1.49      nicm     1610:                case 2004:
1.59      nicm     1611:                        screen_write_mode_clear(&ictx->ctx, MODE_BRACKETPASTE);
1.49      nicm     1612:                        break;
1.1       nicm     1613:                default:
1.28      nicm     1614:                        log_debug("%s: unknown '%c'", __func__, ictx->ch);
1.1       nicm     1615:                        break;
                   1616:                }
1.64      nicm     1617:        }
                   1618: }
                   1619:
                   1620: /* Handle CSI SM. */
1.104     nicm     1621: static void
1.64      nicm     1622: input_csi_dispatch_sm(struct input_ctx *ictx)
                   1623: {
                   1624:        u_int   i;
                   1625:
                   1626:        for (i = 0; i < ictx->param_list_len; i++) {
                   1627:                switch (input_get(ictx, i, 0, -1)) {
1.131     nicm     1628:                case -1:
                   1629:                        break;
1.1       nicm     1630:                case 4:         /* IRM */
1.59      nicm     1631:                        screen_write_mode_set(&ictx->ctx, MODE_INSERT);
1.1       nicm     1632:                        break;
1.72      nicm     1633:                case 34:
                   1634:                        screen_write_mode_clear(&ictx->ctx, MODE_BLINKING);
                   1635:                        break;
1.1       nicm     1636:                default:
1.28      nicm     1637:                        log_debug("%s: unknown '%c'", __func__, ictx->ch);
1.1       nicm     1638:                        break;
                   1639:                }
1.64      nicm     1640:        }
                   1641: }
                   1642:
                   1643: /* Handle CSI private SM. */
1.104     nicm     1644: static void
1.64      nicm     1645: input_csi_dispatch_sm_private(struct input_ctx *ictx)
                   1646: {
1.69      nicm     1647:        struct window_pane      *wp = ictx->wp;
                   1648:        u_int                    i;
1.64      nicm     1649:
                   1650:        for (i = 0; i < ictx->param_list_len; i++) {
                   1651:                switch (input_get(ictx, i, 0, -1)) {
1.131     nicm     1652:                case -1:
                   1653:                        break;
1.64      nicm     1654:                case 1:         /* DECCKM */
1.59      nicm     1655:                        screen_write_mode_set(&ictx->ctx, MODE_KCURSOR);
1.17      nicm     1656:                        break;
                   1657:                case 3:         /* DECCOLM */
1.24      nicm     1658:                        screen_write_cursormove(&ictx->ctx, 0, 0);
1.105     nicm     1659:                        screen_write_clearscreen(&ictx->ctx,
                   1660:                            ictx->cell.cell.bg);
1.141   ! nicm     1661:                        break;
        !          1662:                case 6:         /* DECOM */
        !          1663:                        screen_write_mode_set(&ictx->ctx, MODE_ORIGIN);
        !          1664:                        screen_write_cursormove(&ictx->ctx, 0, 0);
1.61      nicm     1665:                        break;
                   1666:                case 7:         /* DECAWM */
                   1667:                        screen_write_mode_set(&ictx->ctx, MODE_WRAP);
1.72      nicm     1668:                        break;
                   1669:                case 12:
                   1670:                        screen_write_mode_set(&ictx->ctx, MODE_BLINKING);
1.1       nicm     1671:                        break;
                   1672:                case 25:        /* TCEM */
1.59      nicm     1673:                        screen_write_mode_set(&ictx->ctx, MODE_CURSOR);
1.1       nicm     1674:                        break;
                   1675:                case 1000:
1.59      nicm     1676:                        screen_write_mode_clear(&ictx->ctx, ALL_MOUSE_MODES);
                   1677:                        screen_write_mode_set(&ictx->ctx, MODE_MOUSE_STANDARD);
1.32      nicm     1678:                        break;
                   1679:                case 1002:
1.59      nicm     1680:                        screen_write_mode_clear(&ictx->ctx, ALL_MOUSE_MODES);
                   1681:                        screen_write_mode_set(&ictx->ctx, MODE_MOUSE_BUTTON);
1.109     nicm     1682:                        break;
                   1683:                case 1003:
                   1684:                        screen_write_mode_clear(&ictx->ctx, ALL_MOUSE_MODES);
                   1685:                        screen_write_mode_set(&ictx->ctx, MODE_MOUSE_ALL);
1.62      nicm     1686:                        break;
                   1687:                case 1004:
1.64      nicm     1688:                        if (ictx->ctx.s->mode & MODE_FOCUSON)
1.62      nicm     1689:                                break;
                   1690:                        screen_write_mode_set(&ictx->ctx, MODE_FOCUSON);
1.69      nicm     1691:                        wp->flags |= PANE_FOCUSPUSH; /* force update */
1.96      nicm     1692:                        break;
                   1693:                case 1005:
                   1694:                        screen_write_mode_set(&ictx->ctx, MODE_MOUSE_UTF8);
1.60      nicm     1695:                        break;
                   1696:                case 1006:
                   1697:                        screen_write_mode_set(&ictx->ctx, MODE_MOUSE_SGR);
1.9       nicm     1698:                        break;
1.55      nicm     1699:                case 47:
                   1700:                case 1047:
1.69      nicm     1701:                        window_pane_alternate_on(wp, &ictx->cell.cell, 0);
1.55      nicm     1702:                        break;
1.9       nicm     1703:                case 1049:
1.69      nicm     1704:                        window_pane_alternate_on(wp, &ictx->cell.cell, 1);
1.49      nicm     1705:                        break;
                   1706:                case 2004:
1.59      nicm     1707:                        screen_write_mode_set(&ictx->ctx, MODE_BRACKETPASTE);
1.1       nicm     1708:                        break;
                   1709:                default:
1.28      nicm     1710:                        log_debug("%s: unknown '%c'", __func__, ictx->ch);
1.1       nicm     1711:                        break;
                   1712:                }
1.65      nicm     1713:        }
                   1714: }
                   1715:
                   1716: /* Handle CSI window operations. */
1.104     nicm     1717: static void
1.65      nicm     1718: input_csi_dispatch_winops(struct input_ctx *ictx)
                   1719: {
                   1720:        struct window_pane      *wp = ictx->wp;
                   1721:        int                      n, m;
                   1722:
                   1723:        m = 0;
                   1724:        while ((n = input_get(ictx, m, 0, -1)) != -1) {
                   1725:                switch (n) {
                   1726:                case 1:
                   1727:                case 2:
                   1728:                case 5:
                   1729:                case 6:
                   1730:                case 7:
                   1731:                case 11:
                   1732:                case 13:
                   1733:                case 14:
                   1734:                case 19:
                   1735:                case 20:
                   1736:                case 21:
                   1737:                case 24:
                   1738:                        break;
                   1739:                case 3:
                   1740:                case 4:
                   1741:                case 8:
                   1742:                        m++;
                   1743:                        if (input_get(ictx, m, 0, -1) == -1)
                   1744:                                return;
                   1745:                        /* FALLTHROUGH */
                   1746:                case 9:
                   1747:                case 10:
1.129     nicm     1748:                        m++;
                   1749:                        if (input_get(ictx, m, 0, -1) == -1)
                   1750:                                return;
                   1751:                        break;
1.65      nicm     1752:                case 22:
1.129     nicm     1753:                        m++;
                   1754:                        switch (input_get(ictx, m, 0, -1)) {
                   1755:                        case -1:
                   1756:                                return;
                   1757:                        case 0:
                   1758:                        case 2:
                   1759:                                screen_push_title(ictx->ctx.s);
                   1760:                                break;
                   1761:                        }
                   1762:                        break;
1.65      nicm     1763:                case 23:
                   1764:                        m++;
1.129     nicm     1765:                        switch (input_get(ictx, m, 0, -1)) {
                   1766:                        case -1:
1.65      nicm     1767:                                return;
1.129     nicm     1768:                        case 0:
                   1769:                        case 2:
                   1770:                                screen_pop_title(ictx->ctx.s);
                   1771:                                server_status_window(ictx->wp->window);
                   1772:                                break;
                   1773:                        }
1.65      nicm     1774:                        break;
                   1775:                case 18:
1.76      nicm     1776:                        input_reply(ictx, "\033[8;%u;%ut", wp->sy, wp->sx);
1.65      nicm     1777:                        break;
                   1778:                default:
                   1779:                        log_debug("%s: unknown '%c'", __func__, ictx->ch);
                   1780:                        break;
                   1781:                }
                   1782:                m++;
1.1       nicm     1783:        }
                   1784: }
                   1785:
1.131     nicm     1786: /* Helper for 256 colour SGR. */
                   1787: static int
                   1788: input_csi_dispatch_sgr_256_do(struct input_ctx *ictx, int fgbg, int c)
1.78      nicm     1789: {
                   1790:        struct grid_cell        *gc = &ictx->cell.cell;
                   1791:
1.131     nicm     1792:        if (c == -1 || c > 255) {
1.102     nicm     1793:                if (fgbg == 38)
1.78      nicm     1794:                        gc->fg = 8;
1.102     nicm     1795:                else if (fgbg == 48)
1.78      nicm     1796:                        gc->bg = 8;
                   1797:        } else {
1.102     nicm     1798:                if (fgbg == 38)
                   1799:                        gc->fg = c | COLOUR_FLAG_256;
                   1800:                else if (fgbg == 48)
                   1801:                        gc->bg = c | COLOUR_FLAG_256;
1.78      nicm     1802:        }
1.131     nicm     1803:        return (1);
1.78      nicm     1804: }
                   1805:
1.131     nicm     1806: /* Handle CSI SGR for 256 colours. */
1.104     nicm     1807: static void
1.131     nicm     1808: input_csi_dispatch_sgr_256(struct input_ctx *ictx, int fgbg, u_int *i)
                   1809: {
                   1810:        int     c;
                   1811:
                   1812:        c = input_get(ictx, (*i) + 1, 0, -1);
                   1813:        if (input_csi_dispatch_sgr_256_do(ictx, fgbg, c))
                   1814:                (*i)++;
                   1815: }
                   1816:
                   1817: /* Helper for RGB colour SGR. */
                   1818: static int
                   1819: input_csi_dispatch_sgr_rgb_do(struct input_ctx *ictx, int fgbg, int r, int g,
                   1820:     int b)
1.78      nicm     1821: {
                   1822:        struct grid_cell        *gc = &ictx->cell.cell;
                   1823:
                   1824:        if (r == -1 || r > 255)
1.131     nicm     1825:                return (0);
1.78      nicm     1826:        if (g == -1 || g > 255)
1.131     nicm     1827:                return (0);
1.78      nicm     1828:        if (b == -1 || b > 255)
1.131     nicm     1829:                return (0);
1.78      nicm     1830:
1.102     nicm     1831:        if (fgbg == 38)
                   1832:                gc->fg = colour_join_rgb(r, g, b);
                   1833:        else if (fgbg == 48)
                   1834:                gc->bg = colour_join_rgb(r, g, b);
1.131     nicm     1835:        return (1);
                   1836: }
                   1837:
                   1838: /* Handle CSI SGR for RGB colours. */
                   1839: static void
                   1840: input_csi_dispatch_sgr_rgb(struct input_ctx *ictx, int fgbg, u_int *i)
                   1841: {
                   1842:        int     r, g, b;
                   1843:
                   1844:        r = input_get(ictx, (*i) + 1, 0, -1);
                   1845:        g = input_get(ictx, (*i) + 2, 0, -1);
                   1846:        b = input_get(ictx, (*i) + 3, 0, -1);
                   1847:        if (input_csi_dispatch_sgr_rgb_do(ictx, fgbg, r, g, b))
                   1848:                (*i) += 3;
                   1849: }
                   1850:
                   1851: /* Handle CSI SGR with a ISO parameter. */
                   1852: static void
                   1853: input_csi_dispatch_sgr_colon(struct input_ctx *ictx, u_int i)
                   1854: {
1.137     nicm     1855:        struct grid_cell        *gc = &ictx->cell.cell;
                   1856:        char                    *s = ictx->param_list[i].str, *copy, *ptr, *out;
                   1857:        int                      p[8];
                   1858:        u_int                    n;
                   1859:        const char              *errstr;
1.131     nicm     1860:
                   1861:        for (n = 0; n < nitems(p); n++)
                   1862:                p[n] = -1;
                   1863:        n = 0;
                   1864:
                   1865:        ptr = copy = xstrdup(s);
                   1866:        while ((out = strsep(&ptr, ":")) != NULL) {
1.134     nicm     1867:                if (*out != '\0') {
                   1868:                        p[n++] = strtonum(out, 0, INT_MAX, &errstr);
                   1869:                        if (errstr != NULL || n == nitems(p)) {
                   1870:                                free(copy);
                   1871:                                return;
                   1872:                        }
1.140     nicm     1873:                } else
                   1874:                        n++;
1.131     nicm     1875:                log_debug("%s: %u = %d", __func__, n - 1, p[n - 1]);
                   1876:        }
                   1877:        free(copy);
                   1878:
1.137     nicm     1879:        if (n == 0)
                   1880:                return;
                   1881:        if (p[0] == 4) {
                   1882:                if (n != 2)
                   1883:                        return;
                   1884:                switch (p[1]) {
                   1885:                case 0:
                   1886:                        gc->attr &= ~GRID_ATTR_ALL_UNDERSCORE;
                   1887:                        break;
                   1888:                case 1:
                   1889:                        gc->attr &= ~GRID_ATTR_ALL_UNDERSCORE;
                   1890:                        gc->attr |= GRID_ATTR_UNDERSCORE;
                   1891:                        break;
                   1892:                case 2:
                   1893:                        gc->attr &= ~GRID_ATTR_ALL_UNDERSCORE;
                   1894:                        gc->attr |= GRID_ATTR_UNDERSCORE_2;
                   1895:                        break;
                   1896:                case 3:
                   1897:                        gc->attr &= ~GRID_ATTR_ALL_UNDERSCORE;
                   1898:                        gc->attr |= GRID_ATTR_UNDERSCORE_3;
                   1899:                        break;
                   1900:                case 4:
                   1901:                        gc->attr &= ~GRID_ATTR_ALL_UNDERSCORE;
                   1902:                        gc->attr |= GRID_ATTR_UNDERSCORE_4;
                   1903:                        break;
                   1904:                case 5:
                   1905:                        gc->attr &= ~GRID_ATTR_ALL_UNDERSCORE;
                   1906:                        gc->attr |= GRID_ATTR_UNDERSCORE_5;
                   1907:                        break;
                   1908:                }
                   1909:                return;
                   1910:        }
                   1911:        if (p[0] != 38 && p[0] != 48)
1.131     nicm     1912:                return;
1.134     nicm     1913:        if (p[1] == -1)
                   1914:                i = 2;
                   1915:        else
                   1916:                i = 1;
                   1917:        switch (p[i]) {
1.131     nicm     1918:        case 2:
1.134     nicm     1919:                if (n < i + 4)
1.131     nicm     1920:                        break;
1.134     nicm     1921:                input_csi_dispatch_sgr_rgb_do(ictx, p[0], p[i + 1], p[i + 2],
                   1922:                    p[i + 3]);
1.131     nicm     1923:                break;
                   1924:        case 5:
1.134     nicm     1925:                if (n < i + 2)
1.131     nicm     1926:                        break;
1.134     nicm     1927:                input_csi_dispatch_sgr_256_do(ictx, p[0], p[i + 1]);
1.131     nicm     1928:                break;
                   1929:        }
1.78      nicm     1930: }
                   1931:
1.28      nicm     1932: /* Handle CSI SGR. */
1.104     nicm     1933: static void
1.28      nicm     1934: input_csi_dispatch_sgr(struct input_ctx *ictx)
1.1       nicm     1935: {
1.69      nicm     1936:        struct grid_cell        *gc = &ictx->cell.cell;
1.28      nicm     1937:        u_int                    i;
1.78      nicm     1938:        int                      n;
1.1       nicm     1939:
1.28      nicm     1940:        if (ictx->param_list_len == 0) {
1.1       nicm     1941:                memcpy(gc, &grid_default_cell, sizeof *gc);
                   1942:                return;
                   1943:        }
                   1944:
1.28      nicm     1945:        for (i = 0; i < ictx->param_list_len; i++) {
1.131     nicm     1946:                if (ictx->param_list[i].type == INPUT_STRING) {
                   1947:                        input_csi_dispatch_sgr_colon(ictx, i);
                   1948:                        continue;
                   1949:                }
1.28      nicm     1950:                n = input_get(ictx, i, 0, 0);
1.131     nicm     1951:                if (n == -1)
                   1952:                        continue;
1.1       nicm     1953:
1.28      nicm     1954:                if (n == 38 || n == 48) {
1.1       nicm     1955:                        i++;
1.78      nicm     1956:                        switch (input_get(ictx, i, 0, -1)) {
                   1957:                        case 2:
                   1958:                                input_csi_dispatch_sgr_rgb(ictx, n, &i);
                   1959:                                break;
                   1960:                        case 5:
                   1961:                                input_csi_dispatch_sgr_256(ictx, n, &i);
                   1962:                                break;
1.1       nicm     1963:                        }
                   1964:                        continue;
                   1965:                }
                   1966:
1.28      nicm     1967:                switch (n) {
1.1       nicm     1968:                case 0:
                   1969:                        memcpy(gc, &grid_default_cell, sizeof *gc);
                   1970:                        break;
                   1971:                case 1:
                   1972:                        gc->attr |= GRID_ATTR_BRIGHT;
                   1973:                        break;
                   1974:                case 2:
                   1975:                        gc->attr |= GRID_ATTR_DIM;
                   1976:                        break;
                   1977:                case 3:
                   1978:                        gc->attr |= GRID_ATTR_ITALICS;
                   1979:                        break;
                   1980:                case 4:
1.137     nicm     1981:                        gc->attr &= ~GRID_ATTR_ALL_UNDERSCORE;
1.1       nicm     1982:                        gc->attr |= GRID_ATTR_UNDERSCORE;
                   1983:                        break;
                   1984:                case 5:
                   1985:                        gc->attr |= GRID_ATTR_BLINK;
                   1986:                        break;
                   1987:                case 7:
                   1988:                        gc->attr |= GRID_ATTR_REVERSE;
                   1989:                        break;
                   1990:                case 8:
                   1991:                        gc->attr |= GRID_ATTR_HIDDEN;
                   1992:                        break;
1.118     nicm     1993:                case 9:
                   1994:                        gc->attr |= GRID_ATTR_STRIKETHROUGH;
                   1995:                        break;
1.1       nicm     1996:                case 22:
                   1997:                        gc->attr &= ~(GRID_ATTR_BRIGHT|GRID_ATTR_DIM);
                   1998:                        break;
                   1999:                case 23:
                   2000:                        gc->attr &= ~GRID_ATTR_ITALICS;
                   2001:                        break;
                   2002:                case 24:
1.137     nicm     2003:                        gc->attr &= ~GRID_ATTR_ALL_UNDERSCORE;
1.1       nicm     2004:                        break;
                   2005:                case 25:
                   2006:                        gc->attr &= ~GRID_ATTR_BLINK;
                   2007:                        break;
                   2008:                case 27:
                   2009:                        gc->attr &= ~GRID_ATTR_REVERSE;
1.117     nicm     2010:                        break;
                   2011:                case 28:
                   2012:                        gc->attr &= ~GRID_ATTR_HIDDEN;
1.118     nicm     2013:                        break;
                   2014:                case 29:
                   2015:                        gc->attr &= ~GRID_ATTR_STRIKETHROUGH;
1.1       nicm     2016:                        break;
                   2017:                case 30:
                   2018:                case 31:
                   2019:                case 32:
                   2020:                case 33:
                   2021:                case 34:
                   2022:                case 35:
                   2023:                case 36:
                   2024:                case 37:
1.28      nicm     2025:                        gc->fg = n - 30;
1.1       nicm     2026:                        break;
                   2027:                case 39:
                   2028:                        gc->fg = 8;
                   2029:                        break;
                   2030:                case 40:
                   2031:                case 41:
                   2032:                case 42:
                   2033:                case 43:
                   2034:                case 44:
                   2035:                case 45:
                   2036:                case 46:
                   2037:                case 47:
1.28      nicm     2038:                        gc->bg = n - 40;
1.1       nicm     2039:                        break;
                   2040:                case 49:
                   2041:                        gc->bg = 8;
1.20      nicm     2042:                        break;
                   2043:                case 90:
                   2044:                case 91:
                   2045:                case 92:
                   2046:                case 93:
                   2047:                case 94:
                   2048:                case 95:
                   2049:                case 96:
                   2050:                case 97:
1.28      nicm     2051:                        gc->fg = n;
1.20      nicm     2052:                        break;
                   2053:                case 100:
                   2054:                case 101:
                   2055:                case 102:
                   2056:                case 103:
                   2057:                case 104:
                   2058:                case 105:
                   2059:                case 106:
                   2060:                case 107:
1.47      nicm     2061:                        gc->bg = n - 10;
1.1       nicm     2062:                        break;
                   2063:                }
                   2064:        }
1.28      nicm     2065: }
                   2066:
1.138     nicm     2067: /* End of input with BEL. */
                   2068: static int
                   2069: input_end_bel(struct input_ctx *ictx)
                   2070: {
                   2071:        log_debug("%s", __func__);
                   2072:
                   2073:        ictx->input_end = INPUT_END_BEL;
                   2074:
                   2075:        return (0);
                   2076: }
                   2077:
1.125     nicm     2078: /* DCS string started. */
                   2079: static void
                   2080: input_enter_dcs(struct input_ctx *ictx)
                   2081: {
                   2082:        log_debug("%s", __func__);
                   2083:
                   2084:        input_clear(ictx);
                   2085:        input_start_timer(ictx);
1.127     nicm     2086:        ictx->last = -1;
1.125     nicm     2087: }
                   2088:
1.37      nicm     2089: /* DCS terminator (ST) received. */
1.104     nicm     2090: static int
1.37      nicm     2091: input_dcs_dispatch(struct input_ctx *ictx)
1.28      nicm     2092: {
1.37      nicm     2093:        const char      prefix[] = "tmux;";
                   2094:        const u_int     prefix_len = (sizeof prefix) - 1;
                   2095:
                   2096:        if (ictx->flags & INPUT_DISCARD)
                   2097:                return (0);
                   2098:
                   2099:        log_debug("%s: \"%s\"", __func__, ictx->input_buf);
1.28      nicm     2100:
1.37      nicm     2101:        /* Check for tmux prefix. */
                   2102:        if (ictx->input_len >= prefix_len &&
                   2103:            strncmp(ictx->input_buf, prefix, prefix_len) == 0) {
                   2104:                screen_write_rawstring(&ictx->ctx,
                   2105:                    ictx->input_buf + prefix_len, ictx->input_len - prefix_len);
                   2106:        }
1.28      nicm     2107:
1.37      nicm     2108:        return (0);
1.28      nicm     2109: }
                   2110:
                   2111: /* OSC string started. */
1.104     nicm     2112: static void
1.28      nicm     2113: input_enter_osc(struct input_ctx *ictx)
                   2114: {
                   2115:        log_debug("%s", __func__);
                   2116:
1.35      nicm     2117:        input_clear(ictx);
1.125     nicm     2118:        input_start_timer(ictx);
1.127     nicm     2119:        ictx->last = -1;
1.28      nicm     2120: }
                   2121:
                   2122: /* OSC terminator (ST) received. */
1.104     nicm     2123: static void
1.28      nicm     2124: input_exit_osc(struct input_ctx *ictx)
                   2125: {
1.67      nicm     2126:        u_char  *p = ictx->input_buf;
1.73      nicm     2127:        u_int    option;
1.38      nicm     2128:
1.28      nicm     2129:        if (ictx->flags & INPUT_DISCARD)
                   2130:                return;
1.38      nicm     2131:        if (ictx->input_len < 1 || *p < '0' || *p > '9')
                   2132:                return;
1.28      nicm     2133:
1.138     nicm     2134:        log_debug("%s: \"%s\" (end %s)", __func__, p,
                   2135:            ictx->input_end == INPUT_END_ST ? "ST" : "BEL");
1.28      nicm     2136:
1.38      nicm     2137:        option = 0;
                   2138:        while (*p >= '0' && *p <= '9')
                   2139:                option = option * 10 + *p++ - '0';
                   2140:        if (*p == ';')
                   2141:                p++;
                   2142:
                   2143:        switch (option) {
                   2144:        case 0:
                   2145:        case 2:
1.124     nicm     2146:                if (utf8_isvalid(p)) {
                   2147:                        screen_set_title(ictx->ctx.s, p);
                   2148:                        server_status_window(ictx->wp->window);
                   2149:                }
1.38      nicm     2150:                break;
1.107     nicm     2151:        case 4:
1.138     nicm     2152:                input_osc_4(ictx, p);
1.107     nicm     2153:                break;
1.122     nicm     2154:        case 10:
1.138     nicm     2155:                input_osc_10(ictx, p);
1.122     nicm     2156:                break;
                   2157:        case 11:
1.138     nicm     2158:                input_osc_11(ictx, p);
1.108     nicm     2159:                break;
1.38      nicm     2160:        case 12:
1.124     nicm     2161:                if (utf8_isvalid(p) && *p != '?') /* ? is colour request */
1.57      nicm     2162:                        screen_set_cursor_colour(ictx->ctx.s, p);
1.38      nicm     2163:                break;
1.122     nicm     2164:        case 52:
1.138     nicm     2165:                input_osc_52(ictx, p);
1.122     nicm     2166:                break;
1.107     nicm     2167:        case 104:
1.138     nicm     2168:                input_osc_104(ictx, p);
1.107     nicm     2169:                break;
1.38      nicm     2170:        case 112:
1.57      nicm     2171:                if (*p == '\0') /* no arguments allowed */
1.38      nicm     2172:                        screen_set_cursor_colour(ictx->ctx.s, "");
                   2173:                break;
                   2174:        default:
                   2175:                log_debug("%s: unknown '%u'", __func__, option);
                   2176:                break;
                   2177:        }
1.28      nicm     2178: }
                   2179:
                   2180: /* APC string started. */
1.104     nicm     2181: static void
1.28      nicm     2182: input_enter_apc(struct input_ctx *ictx)
                   2183: {
                   2184:        log_debug("%s", __func__);
                   2185:
1.35      nicm     2186:        input_clear(ictx);
1.125     nicm     2187:        input_start_timer(ictx);
1.127     nicm     2188:        ictx->last = -1;
1.28      nicm     2189: }
                   2190:
                   2191: /* APC terminator (ST) received. */
1.104     nicm     2192: static void
1.28      nicm     2193: input_exit_apc(struct input_ctx *ictx)
                   2194: {
                   2195:        if (ictx->flags & INPUT_DISCARD)
                   2196:                return;
                   2197:        log_debug("%s: \"%s\"", __func__, ictx->input_buf);
                   2198:
1.124     nicm     2199:        if (!utf8_isvalid(ictx->input_buf))
                   2200:                return;
1.28      nicm     2201:        screen_set_title(ictx->ctx.s, ictx->input_buf);
                   2202:        server_status_window(ictx->wp->window);
                   2203: }
                   2204:
                   2205: /* Rename string started. */
1.104     nicm     2206: static void
1.28      nicm     2207: input_enter_rename(struct input_ctx *ictx)
                   2208: {
                   2209:        log_debug("%s", __func__);
                   2210:
1.35      nicm     2211:        input_clear(ictx);
1.125     nicm     2212:        input_start_timer(ictx);
1.127     nicm     2213:        ictx->last = -1;
1.28      nicm     2214: }
                   2215:
                   2216: /* Rename terminator (ST) received. */
1.104     nicm     2217: static void
1.28      nicm     2218: input_exit_rename(struct input_ctx *ictx)
                   2219: {
                   2220:        if (ictx->flags & INPUT_DISCARD)
1.44      nicm     2221:                return;
1.87      nicm     2222:        if (!options_get_number(ictx->wp->window->options, "allow-rename"))
1.28      nicm     2223:                return;
                   2224:        log_debug("%s: \"%s\"", __func__, ictx->input_buf);
                   2225:
1.124     nicm     2226:        if (!utf8_isvalid(ictx->input_buf))
                   2227:                return;
1.48      nicm     2228:        window_set_name(ictx->wp->window, ictx->input_buf);
1.87      nicm     2229:        options_set_number(ictx->wp->window->options, "automatic-rename", 0);
1.28      nicm     2230:        server_status_window(ictx->wp->window);
                   2231: }
                   2232:
                   2233: /* Open UTF-8 character. */
1.104     nicm     2234: static int
1.130     nicm     2235: input_top_bit_set(struct input_ctx *ictx)
1.28      nicm     2236: {
1.90      nicm     2237:        struct utf8_data        *ud = &ictx->utf8data;
                   2238:
1.127     nicm     2239:        ictx->last = -1;
1.28      nicm     2240:
1.130     nicm     2241:        if (!ictx->utf8started) {
                   2242:                if (utf8_open(ud, ictx->ch) != UTF8_MORE)
                   2243:                        return (0);
                   2244:                ictx->utf8started = 1;
                   2245:                return (0);
                   2246:        }
1.28      nicm     2247:
1.130     nicm     2248:        switch (utf8_append(ud, ictx->ch)) {
                   2249:        case UTF8_MORE:
                   2250:                return (0);
                   2251:        case UTF8_ERROR:
                   2252:                ictx->utf8started = 0;
1.101     nicm     2253:                return (0);
1.130     nicm     2254:        case UTF8_DONE:
                   2255:                break;
1.101     nicm     2256:        }
1.130     nicm     2257:        ictx->utf8started = 0;
1.28      nicm     2258:
1.90      nicm     2259:        log_debug("%s %hhu '%*s' (width %hhu)", __func__, ud->size,
                   2260:            (int)ud->size, ud->data, ud->width);
1.28      nicm     2261:
1.90      nicm     2262:        utf8_copy(&ictx->cell.cell.data, ud);
1.119     nicm     2263:        screen_write_collect_add(&ictx->ctx, &ictx->cell.cell);
1.28      nicm     2264:
                   2265:        return (0);
1.107     nicm     2266: }
                   2267:
                   2268: /* Handle the OSC 4 sequence for setting (multiple) palette entries. */
                   2269: static void
1.138     nicm     2270: input_osc_4(struct input_ctx *ictx, const char *p)
1.107     nicm     2271: {
1.138     nicm     2272:        struct window_pane      *wp = ictx->wp;
                   2273:        char                    *copy, *s, *next = NULL;
                   2274:        long                    idx;
                   2275:        u_int                    r, g, b;
1.107     nicm     2276:
                   2277:        copy = s = xstrdup(p);
                   2278:        while (s != NULL && *s != '\0') {
                   2279:                idx = strtol(s, &next, 10);
                   2280:                if (*next++ != ';')
                   2281:                        goto bad;
                   2282:                if (idx < 0 || idx >= 0x100)
                   2283:                        goto bad;
                   2284:
                   2285:                s = strsep(&next, ";");
                   2286:                if (sscanf(s, "rgb:%2x/%2x/%2x", &r, &g, &b) != 3) {
                   2287:                        s = next;
                   2288:                        continue;
                   2289:                }
                   2290:
                   2291:                window_pane_set_palette(wp, idx, colour_join_rgb(r, g, b));
                   2292:                s = next;
                   2293:        }
                   2294:
                   2295:        free(copy);
                   2296:        return;
                   2297:
                   2298: bad:
                   2299:        log_debug("bad OSC 4: %s", p);
                   2300:        free(copy);
1.122     nicm     2301: }
                   2302:
1.136     nicm     2303: /* Handle the OSC 10 sequence for setting foreground colour. */
1.122     nicm     2304: static void
1.138     nicm     2305: input_osc_10(struct input_ctx *ictx, const char *p)
1.122     nicm     2306: {
1.138     nicm     2307:        struct window_pane      *wp = ictx->wp;
                   2308:        u_int                    r, g, b;
1.122     nicm     2309:
                   2310:        if (sscanf(p, "rgb:%2x/%2x/%2x", &r, &g, &b) != 3)
                   2311:            goto bad;
                   2312:
                   2313:        wp->colgc.fg = colour_join_rgb(r, g, b);
                   2314:        wp->flags |= PANE_REDRAW;
                   2315:
                   2316:        return;
                   2317:
                   2318: bad:
                   2319:        log_debug("bad OSC 10: %s", p);
                   2320: }
                   2321:
                   2322: /* Handle the OSC 11 sequence for setting background colour. */
                   2323: static void
1.138     nicm     2324: input_osc_11(struct input_ctx *ictx, const char *p)
1.122     nicm     2325: {
1.138     nicm     2326:        struct window_pane      *wp = ictx->wp;
                   2327:        u_int                    r, g, b;
1.122     nicm     2328:
                   2329:        if (sscanf(p, "rgb:%2x/%2x/%2x", &r, &g, &b) != 3)
                   2330:            goto bad;
                   2331:
                   2332:        wp->colgc.bg = colour_join_rgb(r, g, b);
                   2333:        wp->flags |= PANE_REDRAW;
                   2334:
                   2335:        return;
                   2336:
                   2337: bad:
                   2338:        log_debug("bad OSC 11: %s", p);
1.108     nicm     2339: }
                   2340:
                   2341: /* Handle the OSC 52 sequence for setting the clipboard. */
                   2342: static void
1.138     nicm     2343: input_osc_52(struct input_ctx *ictx, const char *p)
1.108     nicm     2344: {
1.138     nicm     2345:        struct window_pane      *wp = ictx->wp;
1.108     nicm     2346:        char                    *end;
1.138     nicm     2347:        const char              *buf;
1.108     nicm     2348:        size_t                   len;
                   2349:        u_char                  *out;
1.123     nicm     2350:        int                      outlen, state;
1.108     nicm     2351:        struct screen_write_ctx  ctx;
1.138     nicm     2352:        struct paste_buffer     *pb;
1.108     nicm     2353:
1.123     nicm     2354:        state = options_get_number(global_options, "set-clipboard");
                   2355:        if (state != 2)
                   2356:                return;
                   2357:
1.108     nicm     2358:        if ((end = strchr(p, ';')) == NULL)
                   2359:                return;
                   2360:        end++;
                   2361:        if (*end == '\0')
                   2362:                return;
1.138     nicm     2363:        log_debug("%s: %s", __func__, end);
                   2364:
                   2365:        if (strcmp(end, "?") == 0) {
                   2366:                if ((pb = paste_get_top(NULL)) != NULL) {
                   2367:                        buf = paste_buffer_data(pb, &len);
                   2368:                        outlen = 4 * ((len + 2) / 3) + 1;
                   2369:                        out = xmalloc(outlen);
                   2370:                        if ((outlen = b64_ntop(buf, len, out, outlen)) == -1) {
                   2371:                                abort();
                   2372:                                free(out);
                   2373:                                return;
                   2374:                        }
                   2375:                } else {
                   2376:                        outlen = 0;
                   2377:                        out = NULL;
                   2378:                }
                   2379:                bufferevent_write(wp->event, "\033]52;;", 6);
                   2380:                if (outlen != 0)
                   2381:                        bufferevent_write(wp->event, out, outlen);
                   2382:                if (ictx->input_end == INPUT_END_BEL)
                   2383:                        bufferevent_write(wp->event, "\007", 1);
                   2384:                else
                   2385:                        bufferevent_write(wp->event, "\033\\", 2);
                   2386:                free(out);
                   2387:                return;
                   2388:        }
1.108     nicm     2389:
                   2390:        len = (strlen(end) / 4) * 3;
                   2391:        if (len == 0)
                   2392:                return;
                   2393:
                   2394:        out = xmalloc(len);
                   2395:        if ((outlen = b64_pton(end, out, len)) == -1) {
                   2396:                free(out);
                   2397:                return;
                   2398:        }
                   2399:
1.123     nicm     2400:        screen_write_start(&ctx, wp, NULL);
                   2401:        screen_write_setselection(&ctx, out, outlen);
                   2402:        screen_write_stop(&ctx);
1.126     nicm     2403:        notify_pane("pane-set-clipboard", wp);
1.123     nicm     2404:
1.108     nicm     2405:        paste_add(out, outlen);
1.107     nicm     2406: }
                   2407:
                   2408: /* Handle the OSC 104 sequence for unsetting (multiple) palette entries. */
                   2409: static void
1.138     nicm     2410: input_osc_104(struct input_ctx *ictx, const char *p)
1.107     nicm     2411: {
1.138     nicm     2412:        struct window_pane      *wp = ictx->wp;
                   2413:        char                    *copy, *s;
                   2414:        long                    idx;
1.107     nicm     2415:
                   2416:        if (*p == '\0') {
                   2417:                window_pane_reset_palette(wp);
                   2418:                return;
                   2419:        }
                   2420:
                   2421:        copy = s = xstrdup(p);
                   2422:        while (*s != '\0') {
                   2423:                idx = strtol(s, &s, 10);
                   2424:                if (*s != '\0' && *s != ';')
                   2425:                        goto bad;
                   2426:                if (idx < 0 || idx >= 0x100)
                   2427:                        goto bad;
                   2428:
                   2429:                window_pane_unset_palette(wp, idx);
                   2430:                if (*s == ';')
                   2431:                        s++;
                   2432:        }
                   2433:        free(copy);
                   2434:        return;
                   2435:
                   2436: bad:
                   2437:        log_debug("bad OSC 104: %s", p);
                   2438:        free(copy);
1.1       nicm     2439: }