Add a preference list for SSH-2 key exchange algorithms, on a new "Kex" panel
[u/mdw/putty] / putty.h
CommitLineData
374330e2 1#ifndef PUTTY_PUTTY_H
2#define PUTTY_PUTTY_H
3
54a2bffb 4#include <stddef.h> /* for wchar_t */
ca20bfcf 5
f7f27309 6/*
7 * Global variables. Most modules declare these `extern', but
8 * window.c will do `#define PUTTY_DO_GLOBALS' before including this
9 * module, and so will get them properly defined.
10 */
11#ifndef GLOBAL
12#ifdef PUTTY_DO_GLOBALS
13#define GLOBAL
14#else
15#define GLOBAL extern
16#endif
17#endif
18
a8327734 19#ifndef DONE_TYPEDEFS
20#define DONE_TYPEDEFS
f7f27309 21typedef struct config_tag Config;
1709795f 22typedef struct backend_tag Backend;
887035a5 23typedef struct terminal_tag Terminal;
a8327734 24#endif
8df7a775 25
f7f27309 26#include "puttyps.h"
27#include "network.h"
9a30e26b 28#include "misc.h"
374330e2 29
4eeb7d09 30/* Three attribute types:
50c1be3f 31 * The ATTRs (normal attributes) are stored with the characters in
32 * the main display arrays
4eeb7d09 33 *
50c1be3f 34 * The TATTRs (temporary attributes) are generated on the fly, they
35 * can overlap with characters but not with normal attributes.
4eeb7d09 36 *
50c1be3f 37 * The LATTRs (line attributes) are an entirely disjoint space of
38 * flags.
fd59420d 39 *
40 * The DATTRs (display attributes) are internal to terminal.c (but
41 * defined here because their values have to match the others
42 * here); they reuse the TATTR_* space but are always masked off
43 * before sending to the front end.
4eeb7d09 44 *
45 * ATTR_INVALID is an illegal colour combination.
46 */
47
36566009 48#define TATTR_ACTCURS 0x40000000UL /* active cursor (block) */
49#define TATTR_PASCURS 0x20000000UL /* passive cursor (box) */
50#define TATTR_RIGHTCURS 0x10000000UL /* cursor-on-RHS */
c6958dfe 51#define TATTR_COMBINING 0x80000000UL /* combining characters */
374330e2 52
fd59420d 53#define DATTR_STARTRUN 0x80000000UL /* start of redraw run */
54
55#define TDATTR_MASK 0xF0000000UL
56#define TATTR_MASK (TDATTR_MASK)
57#define DATTR_MASK (TDATTR_MASK)
58
c9def1b8 59#define LATTR_NORM 0x00000000UL
36566009 60#define LATTR_WIDE 0x00000001UL
61#define LATTR_TOP 0x00000002UL
62#define LATTR_BOT 0x00000003UL
63#define LATTR_MODE 0x00000003UL
64#define LATTR_WRAPPED 0x00000010UL
65#define LATTR_WRAPPED2 0x00000020UL
4eeb7d09 66
fd59420d 67#define ATTR_INVALID 0x03FFFFU
4eeb7d09 68
69/* Like Linux use the F000 page for direct to font. */
36566009 70#define CSET_OEMCP 0x0000F000UL /* OEM Codepage DTF */
71#define CSET_ACP 0x0000F100UL /* Ansi Codepage DTF */
4eeb7d09 72
73/* These are internal use overlapping with the UTF-16 surrogates */
36566009 74#define CSET_ASCII 0x0000D800UL /* normal ASCII charset ESC ( B */
75#define CSET_LINEDRW 0x0000D900UL /* line drawing charset ESC ( 0 */
76#define CSET_SCOACS 0x0000DA00UL /* SCO Alternate charset */
77#define CSET_GBCHR 0x0000DB00UL /* UK variant charset ESC ( A */
78#define CSET_MASK 0xFFFFFF00UL /* Character set mask */
4eeb7d09 79
36566009 80#define DIRECT_CHAR(c) ((c&0xFFFFFC00)==0xD800)
81#define DIRECT_FONT(c) ((c&0xFFFFFE00)==0xF000)
4eeb7d09 82
36566009 83#define UCSERR (CSET_LINEDRW|'a') /* UCS Format error character. */
3c7366f8 84/*
85 * UCSWIDE is a special value used in the terminal data to signify
86 * the character cell containing the right-hand half of a CJK wide
87 * character. We use 0xDFFF because it's part of the surrogate
88 * range and hence won't be used for anything else (it's impossible
89 * to input it via UTF-8 because our UTF-8 decoder correctly
90 * rejects surrogates).
91 */
92#define UCSWIDE 0xDFFF
4eeb7d09 93
cecb13f6 94#define ATTR_NARROW 0x800000U
95#define ATTR_WIDE 0x400000U
96#define ATTR_BOLD 0x040000U
97#define ATTR_UNDER 0x080000U
98#define ATTR_REVERSE 0x100000U
99#define ATTR_BLINK 0x200000U
100#define ATTR_FGMASK 0x0001FFU
101#define ATTR_BGMASK 0x03FE00U
102#define ATTR_COLOURS 0x03FFFFU
36566009 103#define ATTR_FGSHIFT 0
cecb13f6 104#define ATTR_BGSHIFT 9
36566009 105
cecb13f6 106/*
107 * The definitive list of colour numbers stored in terminal
108 * attribute words is kept here. It is:
109 *
110 * - 0-7 are ANSI colours (KRGYBMCW).
111 * - 8-15 are the bold versions of those colours.
112 * - 16-255 are the remains of the xterm 256-colour mode (a
113 * 216-colour cube with R at most significant and B at least,
114 * followed by a uniform series of grey shades running between
115 * black and white but not including either on grounds of
116 * redundancy).
117 * - 256 is default foreground
118 * - 257 is default bold foreground
119 * - 258 is default background
120 * - 259 is default bold background
121 * - 260 is cursor foreground
122 * - 261 is cursor background
123 */
4eeb7d09 124
cecb13f6 125#define ATTR_DEFFG (256 << ATTR_FGSHIFT)
126#define ATTR_DEFBG (258 << ATTR_BGSHIFT)
127#define ATTR_DEFAULT (ATTR_DEFFG | ATTR_DEFBG)
374330e2 128
0b4f0bc0 129struct sesslist {
130 int nsessions;
131 char **sessions;
132 char *buffer; /* so memory can be freed later */
133};
1709795f 134
21d2b241 135struct unicode_data {
136 char **uni_tbl;
137 int dbcs_screenfont;
138 int font_codepage;
139 int line_codepage;
140 wchar_t unitab_scoacs[256];
141 wchar_t unitab_line[256];
142 wchar_t unitab_font[256];
143 wchar_t unitab_xterm[256];
144 wchar_t unitab_oemcp[256];
145 unsigned char unitab_ctrl[256];
146};
4eeb7d09 147
32874aea 148#define LGXF_OVR 1 /* existing logfile overwrite */
149#define LGXF_APN 0 /* existing logfile append */
150#define LGXF_ASK -1 /* existing logfile ask */
151#define LGTYP_NONE 0 /* logmode: no logging */
152#define LGTYP_ASCII 1 /* logmode: pure ascii */
00db133f 153#define LGTYP_DEBUG 2 /* logmode: all chars of traffic */
154#define LGTYP_PACKETS 3 /* logmode: SSH data packets */
5fd04f07 155
374330e2 156typedef enum {
6f2d0cde 157 /* Actual special commands. Originally Telnet, but some codes have
158 * been re-used for similar specials in other protocols. */
374330e2 159 TS_AYT, TS_BRK, TS_SYNCH, TS_EC, TS_EL, TS_GA, TS_NOP, TS_ABORT,
a5f3e637 160 TS_AO, TS_IP, TS_SUSP, TS_EOR, TS_EOF, TS_LECHO, TS_RECHO, TS_PING,
6f2d0cde 161 TS_EOL,
4423d5c7 162 /* Special command for SSH. */
163 TS_REKEY,
6f2d0cde 164 /* POSIX-style signals. (not Telnet) */
165 TS_SIGABRT, TS_SIGALRM, TS_SIGFPE, TS_SIGHUP, TS_SIGILL,
166 TS_SIGINT, TS_SIGKILL, TS_SIGPIPE, TS_SIGQUIT, TS_SIGSEGV,
167 TS_SIGTERM, TS_SIGUSR1, TS_SIGUSR2,
168 /* Pseudo-specials used for constructing the specials menu. */
169 TS_SEP, /* Separator */
170 TS_SUBMENU, /* Start a new submenu with specified name */
171 TS_EXITMENU /* Exit current submenu or end of specials */
374330e2 172} Telnet_Special;
173
125105d1 174struct telnet_special {
6f2d0cde 175 const char *name;
125105d1 176 int code;
177};
178
374330e2 179typedef enum {
01c034ad 180 MBT_NOTHING,
181 MBT_LEFT, MBT_MIDDLE, MBT_RIGHT, /* `raw' button designations */
182 MBT_SELECT, MBT_EXTEND, MBT_PASTE, /* `cooked' button designations */
183 MBT_WHEEL_UP, MBT_WHEEL_DOWN /* mouse wheel */
374330e2 184} Mouse_Button;
185
186typedef enum {
187 MA_NOTHING, MA_CLICK, MA_2CLK, MA_3CLK, MA_DRAG, MA_RELEASE
188} Mouse_Action;
189
6c50d421 190/* Keyboard modifiers -- keys the user is actually holding down */
191
192#define PKM_SHIFT 0x01
193#define PKM_CONTROL 0x02
194#define PKM_META 0x04
195#define PKM_ALT 0x08
196
197/* Keyboard flags that aren't really modifiers */
198#define PKF_CAPSLOCK 0x10
199#define PKF_NUMLOCK 0x20
200#define PKF_REPEAT 0x40
201
202/* Stand-alone keysyms for function keys */
203
204typedef enum {
205 PK_NULL, /* No symbol for this key */
206 /* Main keypad keys */
207 PK_ESCAPE, PK_TAB, PK_BACKSPACE, PK_RETURN, PK_COMPOSE,
208 /* Editing keys */
209 PK_HOME, PK_INSERT, PK_DELETE, PK_END, PK_PAGEUP, PK_PAGEDOWN,
210 /* Cursor keys */
211 PK_UP, PK_DOWN, PK_RIGHT, PK_LEFT, PK_REST,
212 /* Numeric keypad */ /* Real one looks like: */
213 PK_PF1, PK_PF2, PK_PF3, PK_PF4, /* PF1 PF2 PF3 PF4 */
214 PK_KPCOMMA, PK_KPMINUS, PK_KPDECIMAL, /* 7 8 9 - */
215 PK_KP0, PK_KP1, PK_KP2, PK_KP3, PK_KP4, /* 4 5 6 , */
216 PK_KP5, PK_KP6, PK_KP7, PK_KP8, PK_KP9, /* 1 2 3 en- */
217 PK_KPBIGPLUS, PK_KPENTER, /* 0 . ter */
218 /* Top row */
219 PK_F1, PK_F2, PK_F3, PK_F4, PK_F5,
220 PK_F6, PK_F7, PK_F8, PK_F9, PK_F10,
221 PK_F11, PK_F12, PK_F13, PK_F14, PK_F15,
222 PK_F16, PK_F17, PK_F18, PK_F19, PK_F20,
223 PK_PAUSE
224} Key_Sym;
225
226#define PK_ISEDITING(k) ((k) >= PK_HOME && (k) <= PK_PAGEDOWN)
227#define PK_ISCURSOR(k) ((k) >= PK_UP && (k) <= PK_REST)
228#define PK_ISKEYPAD(k) ((k) >= PK_PF1 && (k) <= PK_KPENTER)
229#define PK_ISFKEY(k) ((k) >= PK_F1 && (k) <= PK_F20)
230
5ecd7ad0 231enum {
4eeb7d09 232 VT_XWINDOWS, VT_OEMANSI, VT_OEMONLY, VT_POORMAN, VT_UNICODE
5ecd7ad0 233};
374330e2 234
0965bee0 235enum {
236 /*
83e7d008 237 * SSH-2 key exchange algorithms
238 */
239 KEX_WARN,
240 KEX_DHGROUP1,
241 KEX_DHGROUP14,
242 KEX_DHGEX,
243 KEX_MAX
244};
245
246enum {
247 /*
ca20bfcf 248 * SSH ciphers (both SSH1 and SSH2)
249 */
250 CIPHER_WARN, /* pseudo 'cipher' */
251 CIPHER_3DES,
252 CIPHER_BLOWFISH,
253 CIPHER_AES, /* (SSH 2 only) */
7f1ae1d2 254 CIPHER_DES,
ca20bfcf 255 CIPHER_MAX /* no. ciphers (inc warn) */
256};
257
258enum {
259 /*
5ecd7ad0 260 * Several different bits of the PuTTY configuration seem to be
261 * three-way settings whose values are `always yes', `always
262 * no', and `decide by some more complex automated means'. This
263 * is true of line discipline options (local echo and line
264 * editing), proxy DNS, Close On Exit, and SSH server bug
265 * workarounds. Accordingly I supply a single enum here to deal
266 * with them all.
0965bee0 267 */
5ecd7ad0 268 FORCE_ON, FORCE_OFF, AUTO
269};
270
271enum {
272 /*
273 * Proxy types.
274 */
10068a0b 275 PROXY_NONE, PROXY_SOCKS4, PROXY_SOCKS5,
276 PROXY_HTTP, PROXY_TELNET, PROXY_CMD
0965bee0 277};
278
279enum {
280 /*
281 * Line discipline options which the backend might try to control.
282 */
32874aea 283 LD_EDIT, /* local line editing */
284 LD_ECHO /* local echo */
0965bee0 285};
286
b41069ff 287enum {
5ecd7ad0 288 /* Protocol back ends. (cfg.protocol) */
289 PROT_RAW, PROT_TELNET, PROT_RLOGIN, PROT_SSH
290};
291
292enum {
293 /* Bell settings (cfg.beep) */
85f6b361 294 BELL_DISABLED, BELL_DEFAULT, BELL_VISUAL, BELL_WAVEFILE, BELL_PCSPEAKER
5ecd7ad0 295};
296
297enum {
298 /* Taskbar flashing indication on bell (cfg.beep_ind) */
299 B_IND_DISABLED, B_IND_FLASH, B_IND_STEADY
300};
301
302enum {
303 /* Resize actions (cfg.resize_action) */
304 RESIZE_TERM, RESIZE_DISABLED, RESIZE_FONT, RESIZE_EITHER
b41069ff 305};
306
6c50d421 307enum {
308 /* Function key types (cfg.funky_type) */
309 FUNKY_TILDE,
310 FUNKY_LINUX,
311 FUNKY_XTERM,
312 FUNKY_VT400,
313 FUNKY_VT100P,
314 FUNKY_SCO
315};
316
1709795f 317struct backend_tag {
cbe2d68f 318 const char *(*init) (void *frontend_handle, void **backend_handle,
319 Config *cfg,
79bf227b 320 char *host, int port, char **realhost, int nodelay,
321 int keepalive);
fabd1805 322 void (*free) (void *handle);
86916870 323 /* back->reconfig() passes in a replacement configuration. */
324 void (*reconfig) (void *handle, Config *cfg);
5471d09a 325 /* back->send() returns the current amount of buffered data. */
51470298 326 int (*send) (void *handle, char *buf, int len);
5471d09a 327 /* back->sendbuffer() does the same thing but without attempting a send */
51470298 328 int (*sendbuffer) (void *handle);
329 void (*size) (void *handle, int width, int height);
330 void (*special) (void *handle, Telnet_Special code);
125105d1 331 const struct telnet_special *(*get_specials) (void *handle);
51470298 332 Socket(*socket) (void *handle);
333 int (*exitcode) (void *handle);
334 int (*sendok) (void *handle);
335 int (*ldisc) (void *handle, int);
b9d7bcad 336 void (*provide_ldisc) (void *handle, void *ldisc);
a8327734 337 void (*provide_logctx) (void *handle, void *logctx);
5471d09a 338 /*
339 * back->unthrottle() tells the back end that the front end
340 * buffer is clearing.
341 */
51470298 342 void (*unthrottle) (void *handle, int);
97db3be4 343 int default_port;
1709795f 344};
374330e2 345
297d398b 346extern struct backend_list {
89ee5268 347 int protocol;
348 char *name;
349 Backend *backend;
350} backends[];
351
ffa79828 352/*
353 * Suggested default protocol provided by the backend link module.
354 * The application is free to ignore this.
355 */
356extern const int be_default_protocol;
357
5ecd7ad0 358/*
47e4e735 359 * Name of this particular application, for use in the config box
360 * and other pieces of text.
361 */
362extern const char *const appname;
363
364/*
5ecd7ad0 365 * IMPORTANT POLICY POINT: everything in this structure which wants
366 * to be treated like an integer must be an actual, honest-to-
367 * goodness `int'. No enum-typed variables. This is because parts
368 * of the code will want to pass around `int *' pointers to them
369 * and we can't run the risk of porting to some system on which the
370 * enum comes out as a different size from int.
371 */
f7f27309 372struct config_tag {
374330e2 373 /* Basic options */
374 char host[512];
375 int port;
5ecd7ad0 376 int protocol;
374330e2 377 int close_on_exit;
9ef49106 378 int warn_on_close;
32874aea 379 int ping_interval; /* in seconds */
2184a5d9 380 int tcp_nodelay;
79bf227b 381 int tcp_keepalives;
8eebd221 382 /* Proxy options */
383 char proxy_exclude_list[512];
5ecd7ad0 384 int proxy_dns;
b804e1e5 385 int even_proxy_localhost;
5ecd7ad0 386 int proxy_type;
8eebd221 387 char proxy_host[512];
388 int proxy_port;
f33ba69e 389 char proxy_username[128];
390 char proxy_password[128];
8eebd221 391 char proxy_telnet_command[512];
fef97f43 392 /* SSH options */
6abbf9e3 393 char remote_cmd[512];
fd5e5847 394 char remote_cmd2[512]; /* fallback if the first fails
395 * (used internally for scp) */
32874aea 396 char *remote_cmd_ptr; /* might point to a larger command
397 * but never for loading/saving */
fd5e5847 398 char *remote_cmd_ptr2; /* might point to a larger command
399 * but never for loading/saving */
fef97f43 400 int nopty;
4ba9b64b 401 int compression;
83e7d008 402 int ssh_kexlist[KEX_MAX];
979310f1 403 int agentfwd;
5bb641e1 404 int change_username; /* allow username switching in SSH2 */
ca20bfcf 405 int ssh_cipherlist[CIPHER_MAX];
9a30e26b 406 Filename keyfile;
32874aea 407 int sshprot; /* use v1 or v2 when both available */
cb4d4768 408 int ssh2_des_cbc; /* "des-cbc" nonstandard SSH2 cipher */
ccbfb941 409 int try_tis_auth;
f091e308 410 int try_ki_auth;
4a8fc3c4 411 int ssh_subsys; /* run a subsystem rather than a command */
fd5e5847 412 int ssh_subsys2; /* fallback to go with remote_cmd2 */
0ed48730 413 int ssh_no_shell; /* avoid running a shell */
374330e2 414 /* Telnet options */
415 char termtype[32];
416 char termspeed[32];
32874aea 417 char environmt[1024]; /* VAR\tvalue\0VAR\tvalue\0\0 */
277fc55e 418 char username[100];
419 char localusername[100];
374330e2 420 int rfc_environ;
8faa456c 421 int passive_telnet;
374330e2 422 /* Keyboard options */
423 int bksp_is_delete;
424 int rxvt_homeend;
c9def1b8 425 int funky_type;
32874aea 426 int no_applic_c; /* totally disable app cursor keys */
427 int no_applic_k; /* totally disable app keypad */
c0d36a72 428 int no_mouse_rep; /* totally disable mouse reporting */
0d2086c5 429 int no_remote_resize; /* disable remote resizing */
430 int no_alt_screen; /* disable alternate screen */
431 int no_remote_wintitle; /* disable remote retitling */
432 int no_dbackspace; /* disable destructive backspace */
433 int no_remote_charset; /* disable remote charset config */
7fcdebd3 434 int no_remote_qtitle; /* disable remote win title query */
374330e2 435 int app_cursor;
436 int app_keypad;
c5e9c988 437 int nethack_keypad;
a5f3e637 438 int telnet_keyboard;
eee63b77 439 int telnet_newline;
c5e9c988 440 int alt_f4; /* is it special? */
441 int alt_space; /* is it special? */
a094ae43 442 int alt_only; /* is it special? */
0965bee0 443 int localecho;
444 int localedit;
e95edc00 445 int alwaysontop;
8f57d753 446 int fullscreenonaltenter;
c9def1b8 447 int scroll_on_key;
a094ae43 448 int scroll_on_disp;
876e5d5e 449 int erase_to_scrollback;
a094ae43 450 int compose_key;
95bbe1ae 451 int ctrlaltkeys;
32874aea 452 char wintitle[256]; /* initial window title */
374330e2 453 /* Terminal options */
454 int savelines;
455 int dec_om;
456 int wrap_mode;
fef97f43 457 int lfhascr;
4e30ff69 458 int cursor_type; /* 0=block 1=underline 2=vertical */
c9def1b8 459 int blink_cur;
5ecd7ad0 460 int beep;
461 int beep_ind;
156686ef 462 int bellovl; /* bell overload protection active? */
463 int bellovl_n; /* number of bells to cause overload */
464 int bellovl_t; /* time interval for overload (seconds) */
465 int bellovl_s; /* period of silence to re-enable bell (s) */
9a30e26b 466 Filename bell_wavefile;
c9def1b8 467 int scrollbar;
a401e5f3 468 int scrollbar_in_fullscreen;
5ecd7ad0 469 int resize_action;
c9def1b8 470 int bce;
471 int blinktext;
374330e2 472 int win_name_always;
473 int width, height;
9a30e26b 474 FontSpec font;
475 Filename logfilename;
e1c8e0ed 476 int logtype;
9f89f96e 477 int logxfovr;
6d60c791 478 int logflush;
9a10ecf4 479 int logomitpass;
480 int logomitdata;
554c540d 481 int hide_mouseptr;
57d08f2f 482 int sunken_edge;
5a73255e 483 int window_border;
e7fbcdd8 484 char answerback[256];
b44b307a 485 char printer[128];
f0fccd51 486 int arabicshaping;
487 int bidi;
374330e2 488 /* Colour options */
c6f1b8ed 489 int ansi_colour;
cecb13f6 490 int xterm_256_colour;
26d1da7b 491 int system_colour;
374330e2 492 int try_palette;
493 int bold_colour;
494 unsigned char colours[22][3];
495 /* Selection options */
496 int mouse_is_xterm;
6908fed7 497 int rect_select;
d3a22f79 498 int rawcnp;
a7419ea4 499 int rtf_paste;
b90840c3 500 int mouse_override;
374330e2 501 short wordness[256];
c9def1b8 502 /* translations */
5ecd7ad0 503 int vtmode;
8bb92a1c 504 char line_codepage[128];
6ac7f054 505 int utf8_override;
a9c02454 506 int xlat_capslockcyr;
9c964e85 507 /* X11 forwarding */
508 int x11_forward;
509 char x11_display[128];
b3ebaa28 510 int x11_auth;
d74d141c 511 /* port forwarding */
beefa433 512 int lport_acceptall; /* accept conns from hosts other than localhost */
513 int rport_acceptall; /* same for remote forwarded ports (SSH2 only) */
820ebe3b 514 /*
515 * The port forwarding string contains a number of
516 * NUL-terminated substrings, terminated in turn by an empty
517 * string (i.e. a second NUL immediately after the previous
518 * one). Each string can be of one of the following forms:
519 *
520 * [LR]localport\thost:port
521 * [LR]localaddr:localport\thost:port
522 * Dlocalport
523 * Dlocaladdr:localport
524 */
525 char portfwd[1024];
2c9c6388 526 /* SSH bug compatibility modes */
5ecd7ad0 527 int sshbug_ignore1, sshbug_plainpw1, sshbug_rsa1,
8e975795 528 sshbug_hmac2, sshbug_derivekey2, sshbug_rsapad2,
83e7d008 529 sshbug_pksessid2;
c8ee61b9 530 /* Options for pterm. Should split out into platform-dependent part. */
531 int stamp_utmp;
532 int login_shell;
239b3b36 533 int scrollbar_on_left;
bf133a73 534 int shadowbold;
9a30e26b 535 FontSpec boldfont;
536 FontSpec widefont;
537 FontSpec wideboldfont;
12994a99 538 int shadowboldoffset;
f7f27309 539};
374330e2 540
e277c42d 541/*
4017be6d 542 * Some global flags denoting the type of application.
67779be7 543 *
544 * FLAG_VERBOSE is set when the user requests verbose details.
545 *
546 * FLAG_STDERR is set in command-line applications (which have a
547 * functioning stderr that it makes sense to write to) and not in
548 * GUI applications (which don't).
549 *
550 * FLAG_INTERACTIVE is set when a full interactive shell session is
551 * being run, _either_ because no remote command has been provided
552 * _or_ because the application is GUI and can't run non-
553 * interactively.
0b4f0bc0 554 *
555 * These flags describe the type of _application_ - they wouldn't
556 * vary between individual sessions - and so it's OK to have this
557 * variable be GLOBAL.
c44bf5bd 558 *
559 * Note that additional flags may be defined in platform-specific
560 * headers. It's probably best if those ones start from 0x1000, to
561 * avoid collision.
4017be6d 562 */
67779be7 563#define FLAG_VERBOSE 0x0001
564#define FLAG_STDERR 0x0002
565#define FLAG_INTERACTIVE 0x0004
4017be6d 566GLOBAL int flags;
567
0b4f0bc0 568/*
569 * Likewise, these two variables are set up when the application
570 * initialises, and inform all default-settings accesses after
571 * that.
572 */
e277c42d 573GLOBAL int default_protocol;
574GLOBAL int default_port;
374330e2 575
18e62ad8 576/*
577 * This is set TRUE by cmdline.c iff a session is loaded with "-load".
578 */
579GLOBAL int loaded_session;
580
4e23b276 581struct RSAKey; /* be a little careful of scope */
582
374330e2 583/*
584 * Exports from window.c.
585 */
a8327734 586void request_resize(void *frontend, int, int);
36566009 587void do_text(Context, int, int, wchar_t *, int, unsigned long, int);
588void do_cursor(Context, int, int, wchar_t *, int, unsigned long, int);
2102eb8a 589int char_width(Context ctx, int uc);
37d2a505 590#ifdef OPTIMISE_SCROLL
341eb978 591void do_scroll(Context, int, int, int);
37d2a505 592#endif
a8327734 593void set_title(void *frontend, char *);
594void set_icon(void *frontend, char *);
595void set_sbar(void *frontend, int, int, int);
596Context get_ctx(void *frontend);
32874aea 597void free_ctx(Context);
a8327734 598void palette_set(void *frontend, int, int, int, int);
599void palette_reset(void *frontend);
600void write_aclip(void *frontend, char *, int, int);
601void write_clip(void *frontend, wchar_t *, int, int);
602void get_clip(void *frontend, wchar_t **, int *);
603void optimised_move(void *frontend, int, int, int);
604void set_raw_mouse_mode(void *frontend, int);
a8327734 605void connection_fatal(void *frontend, char *, ...);
32874aea 606void fatalbox(char *, ...);
1709795f 607void modalfatalbox(char *, ...);
4b599b6d 608#ifdef macintosh
609#pragma noreturn(fatalbox)
610#pragma noreturn(modalfatalbox)
611#endif
a8327734 612void beep(void *frontend, int);
613void begin_session(void *frontend);
614void sys_cursor(void *frontend, int x, int y);
615void request_paste(void *frontend);
b9d7bcad 616void frontend_keypress(void *frontend);
617void ldisc_update(void *frontend, int echo, int edit);
533b1743 618/* It's the backend's responsibility to invoke this at the start of a
619 * connection, if necessary; it can also invoke it later if the set of
620 * special commands changes. It does not need to invoke it at session
621 * shutdown. */
125105d1 622void update_specials_menu(void *frontend);
fbf6cb3b 623int from_backend(void *frontend, int is_stderr, const char *data, int len);
39934deb 624void notify_remote_exit(void *frontend);
374330e2 625#define OPTIMISE_IS_SCROLL 1
626
a8327734 627void set_iconic(void *frontend, int iconic);
628void move_window(void *frontend, int x, int y);
629void set_zorder(void *frontend, int top);
630void refresh_window(void *frontend);
631void set_zoomed(void *frontend, int zoomed);
632int is_iconic(void *frontend);
633void get_window_pos(void *frontend, int *x, int *y);
634void get_window_pixels(void *frontend, int *x, int *y);
635char *get_window_title(void *frontend, int icon);
68f9b3d9 636
93b581bd 637void cleanup_exit(int);
638
374330e2 639/*
640 * Exports from noise.c.
641 */
32874aea 642void noise_get_heavy(void (*func) (void *, int));
643void noise_get_light(void (*func) (void *, int));
7d6ee6ff 644void noise_regular(void);
f7f27309 645void noise_ultralight(unsigned long data);
374330e2 646void random_save_seed(void);
de3df031 647void random_destroy_seed(void);
374330e2 648
649/*
a9422f39 650 * Exports from settings.c.
651 */
3f935d5b 652char *save_settings(char *section, int do_host, Config * cfg);
b537dd42 653void save_open_settings(void *sesskey, int do_host, Config *cfg);
32874aea 654void load_settings(char *section, int do_host, Config * cfg);
ce283213 655void load_open_settings(void *sesskey, int do_host, Config *cfg);
0b4f0bc0 656void get_sesslist(struct sesslist *, int allocate);
1709795f 657void do_defaults(char *, Config *);
658void registry_cleanup(void);
a9422f39 659
660/*
5a9eb105 661 * Functions used by settings.c to provide platform-specific
662 * default settings.
663 *
664 * (The integer one is expected to return `def' if it has no clear
665 * opinion of its own. This is because there's no integer value
666 * which I can reliably set aside to indicate `nil'. The string
9a30e26b 667 * function is perfectly all right returning NULL, of course. The
668 * Filename and FontSpec functions are _not allowed_ to fail to
669 * return, since these defaults _must_ be per-platform.)
5a9eb105 670 */
c85623f9 671char *platform_default_s(const char *name);
672int platform_default_i(const char *name, int def);
9a30e26b 673Filename platform_default_filename(const char *name);
674FontSpec platform_default_fontspec(const char *name);
5a9eb105 675
676/*
374330e2 677 * Exports from terminal.c.
678 */
679
21d2b241 680Terminal *term_init(Config *, struct unicode_data *, void *);
fabd1805 681void term_free(Terminal *);
887035a5 682void term_size(Terminal *, int, int, int);
c1b55581 683void term_paint(Terminal *, Context, int, int, int, int, int);
887035a5 684void term_scroll(Terminal *, int, int);
685void term_pwron(Terminal *);
686void term_clrsb(Terminal *);
fc5b0934 687void term_mouse(Terminal *, Mouse_Button, Mouse_Button, Mouse_Action,
688 int,int,int,int,int);
6c50d421 689void term_key(Terminal *, Key_Sym, wchar_t *, size_t, unsigned int,
690 unsigned int);
887035a5 691void term_deselect(Terminal *);
692void term_update(Terminal *);
693void term_invalidate(Terminal *);
694void term_blink(Terminal *, int set_cursor);
695void term_do_paste(Terminal *);
696int term_paste_pending(Terminal *);
697void term_paste(Terminal *);
698void term_nopaste(Terminal *);
699int term_ldisc(Terminal *, int option);
700void term_copyall(Terminal *);
64734920 701void term_reconfig(Terminal *, Config *);
887035a5 702void term_seen_key_event(Terminal *);
fbf6cb3b 703int term_data(Terminal *, int is_stderr, const char *data, int len);
51470298 704void term_provide_resize_fn(Terminal *term,
705 void (*resize_fn)(void *, int, int),
706 void *resize_ctx);
a8327734 707void term_provide_logctx(Terminal *term, void *logctx);
1cff1320 708void term_set_focus(Terminal *term, int has_focus);
374330e2 709
710/*
00db133f 711 * Exports from logging.c.
712 */
c229ef97 713void *log_init(void *frontend, Config *cfg);
fabd1805 714void log_free(void *logctx);
c229ef97 715void log_reconfig(void *logctx, Config *cfg);
a8327734 716void logfopen(void *logctx);
717void logfclose(void *logctx);
718void logtraffic(void *logctx, unsigned char c, int logmode);
11cc5e30 719void logflush(void *logctx);
cbe2d68f 720void log_eventlog(void *logctx, const char *string);
00db133f 721enum { PKT_INCOMING, PKT_OUTGOING };
9a10ecf4 722enum { PKTLOG_EMIT, PKTLOG_BLANK, PKTLOG_OMIT };
723struct logblank_t {
724 int offset;
725 int len;
726 int type;
727};
a8327734 728void log_packet(void *logctx, int direction, int type,
9a10ecf4 729 char *texttype, void *data, int len,
730 int n_blanks, const struct logblank_t *blanks);
00db133f 731
732/*
d082ac49 733 * Exports from testback.c
734 */
735
736extern Backend null_backend;
737extern Backend loop_backend;
738
739/*
5e1a8e27 740 * Exports from raw.c.
741 */
742
3d9a14c9 743extern Backend raw_backend;
5e1a8e27 744
745/*
c91409da 746 * Exports from rlogin.c.
747 */
748
749extern Backend rlogin_backend;
750
751/*
374330e2 752 * Exports from telnet.c.
753 */
754
c14776e8 755extern Backend telnet_backend;
374330e2 756
757/*
c0a81592 758 * Exports from ssh.c. (NB the getline variables have to be GLOBAL
759 * so that PuTTYtel will still compile - otherwise it would depend
760 * on ssh.c.)
374330e2 761 */
762
c0a81592 763GLOBAL int (*ssh_get_line) (const char *prompt, char *str, int maxlen,
32874aea 764 int is_pw);
c0a81592 765GLOBAL int ssh_getline_pw_only;
c14776e8 766extern Backend ssh_backend;
374330e2 767
768/*
5bc238bb 769 * Exports from ldisc.c.
770 */
fe5634f6 771void *ldisc_create(Config *, Terminal *, Backend *, void *, void *);
fabd1805 772void ldisc_free(void *);
b9d7bcad 773void ldisc_send(void *handle, char *buf, int len, int interactive);
5bc238bb 774
775/*
5def7522 776 * Exports from ldiscucs.c.
777 */
778void lpage_send(void *, int codepage, char *buf, int len, int interactive);
779void luni_send(void *, wchar_t * widebuf, int len, int interactive);
780
781/*
374330e2 782 * Exports from sshrand.c.
783 */
784
785void random_add_noise(void *noise, int length);
374330e2 786int random_byte(void);
787void random_get_savedata(void **data, int *len);
93b581bd 788extern int random_active;
5d17ccfc 789/* The random number subsystem is activated if at least one other entity
790 * within the program expresses an interest in it. So each SSH session
791 * calls random_ref on startup and random_unref on shutdown. */
792void random_ref(void);
793void random_unref(void);
374330e2 794
795/*
39934deb 796 * Exports from pinger.c.
797 */
798typedef struct pinger_tag *Pinger;
799Pinger pinger_new(Config *cfg, Backend *back, void *backhandle);
800void pinger_reconfig(Pinger, Config *oldcfg, Config *newcfg);
801void pinger_free(Pinger);
802
803/*
374330e2 804 * Exports from misc.c.
805 */
806
db9c0f86 807#include "misc.h"
374330e2 808
809/*
067a15ea 810 * Exports from version.c.
811 */
812extern char ver[];
813
814/*
4eeb7d09 815 * Exports from unicode.c.
14963b8f 816 */
4eeb7d09 817#ifndef CP_UTF8
818#define CP_UTF8 65001
819#endif
facd762c 820/* void init_ucs(void); -- this is now in platform-specific headers */
5def7522 821int is_dbcs_leadbyte(int codepage, char byte);
822int mb_to_wc(int codepage, int flags, char *mbstr, int mblen,
823 wchar_t *wcstr, int wclen);
824int wc_to_mb(int codepage, int flags, wchar_t *wcstr, int wclen,
21d2b241 825 char *mbstr, int mblen, char *defchr, int *defused,
826 struct unicode_data *ucsdata);
a9c02454 827wchar_t xlat_uskbd2cyrllic(int ch);
4eeb7d09 828int check_compose(int first, int second);
829int decode_codepage(char *cp_name);
d4413bd2 830const char *cp_enumerate (int index);
831const char *cp_name(int codepage);
a7419ea4 832void get_unitab(int codepage, wchar_t * unitab, int ftype);
14963b8f 833
834/*
5f6fe27e 835 * Exports from wcwidth.c
836 */
837int wcwidth(wchar_t ucs);
838int wcswidth(const wchar_t *pwcs, size_t n);
839
840/*
8f203108 841 * Exports from mscrypto.c
842 */
843#ifdef MSCRYPTOAPI
844int crypto_startup();
845void crypto_wrapup();
846#endif
847
848/*
839f10db 849 * Exports from pageantc.c.
850 *
851 * agent_query returns 1 for here's-a-response, and 0 for query-in-
852 * progress. In the latter case there will be a call to `callback'
853 * at some future point, passing callback_ctx as the first
854 * parameter and the actual reply data as the second and third.
855 *
856 * The response may be a NULL pointer (in either of the synchronous
857 * or asynchronous cases), which indicates failure to receive a
858 * response.
5c58ad2d 859 */
839f10db 860int agent_query(void *in, int inlen, void **out, int *outlen,
861 void (*callback)(void *, void *, int), void *callback_ctx);
5c58ad2d 862int agent_exists(void);
863
4eb24e3a 864/*
865 * Exports from wildcard.c
866 */
867const char *wc_error(int value);
868int wc_match(const char *wildcard, const char *target);
869int wc_unescape(char *output, const char *wildcard);
374330e2 870
ff2ae367 871/*
1709795f 872 * Exports from windlg.c
873 */
cbe2d68f 874void logevent(void *frontend, const char *);
a8327734 875void verify_ssh_host_key(void *frontend, char *host, int port, char *keytype,
1709795f 876 char *keystr, char *fingerprint);
83e7d008 877void askalg(void *frontend, const char *algtype, const char *algname);
9a30e26b 878int askappend(void *frontend, Filename filename);
1709795f 879
880/*
ff2ae367 881 * Exports from console.c (that aren't equivalents to things in
882 * windlg.c).
883 */
884extern int console_batch_mode;
ff2ae367 885int console_get_line(const char *prompt, char *str, int maxlen, int is_pw);
d3fef4a5 886void console_provide_logctx(void *logctx);
47a6b94c 887int is_interactive(void);
ff2ae367 888
b44b307a 889/*
890 * Exports from printing.c.
891 */
892typedef struct printer_enum_tag printer_enum;
893typedef struct printer_job_tag printer_job;
894printer_enum *printer_start_enum(int *nprinters);
895char *printer_get_name(printer_enum *, int);
896void printer_finish_enum(printer_enum *);
897printer_job *printer_start_job(char *printer);
898void printer_job_data(printer_job *, void *, int);
899void printer_finish_job(printer_job *);
900
c0a81592 901/*
902 * Exports from cmdline.c (and also cmdline_error(), which is
903 * defined differently in various places and required _by_
904 * cmdline.c).
905 */
5555d393 906int cmdline_process_param(char *, char *, int, Config *);
907void cmdline_run_saved(Config *);
679539d7 908void cmdline_cleanup(void);
c0a81592 909extern char *cmdline_password;
910#define TOOLTYPE_FILETRANSFER 1
46a3419b 911#define TOOLTYPE_NONNETWORK 2
c0a81592 912extern int cmdline_tooltype;
913
914void cmdline_error(char *, ...);
915
e0e7dff8 916/*
d1582b2e 917 * Exports from config.c.
918 */
1a602f03 919struct controlbox;
d1582b2e 920void setup_config_box(struct controlbox *b, struct sesslist *sesslist,
921 int midsession, int protocol);
922
923/*
f0fccd51 924 * Exports from minibidi.c.
925 */
926typedef struct bidi_char {
927 wchar_t origwc, wc;
928 unsigned short index;
929} bidi_char;
930int do_bidi(bidi_char *line, int count);
931int do_shape(bidi_char *line, bidi_char *to, int count);
932
933/*
e0e7dff8 934 * X11 auth mechanisms we know about.
935 */
936enum {
937 X11_NO_AUTH,
938 X11_MIT, /* MIT-MAGIC-COOKIE-1 */
2f92b717 939 X11_XDM, /* XDM-AUTHORIZATION-1 */
e0e7dff8 940 X11_NAUTHS
941};
942extern const char *const x11_authnames[]; /* declared in x11fwd.c */
943
9a30e26b 944/*
945 * Miscellaneous exports from the platform-specific code.
946 */
9fab77dc 947Filename filename_from_str(const char *string);
948const char *filename_to_str(const Filename *fn);
9a30e26b 949int filename_equal(Filename f1, Filename f2);
950int filename_is_null(Filename fn);
799dfcfa 951char *get_username(void); /* return value needs freeing */
47a6b94c 952char *get_random_data(int bytes); /* used in cmdgen.c */
9a30e26b 953
39934deb 954/*
955 * Exports and imports from timing.c.
956 *
957 * schedule_timer() asks the front end to schedule a callback to a
958 * timer function in a given number of ticks. The returned value is
959 * the time (in ticks since an arbitrary offset) at which the
960 * callback can be expected. This value will also be passed as the
961 * `now' parameter to the callback function. Hence, you can (for
962 * example) schedule an event at a particular time by calling
963 * schedule_timer() and storing the return value in your context
964 * structure as the time when that event is due. The first time a
965 * callback function gives you that value or more as `now', you do
966 * the thing.
967 *
968 * expire_timer_context() drops all current timers associated with
969 * a given value of ctx (for when you're about to free ctx).
970 *
971 * run_timers() is called from the front end when it has reason to
972 * think some timers have reached their moment, or when it simply
973 * needs to know how long to wait next. We pass it the time we
974 * think it is. It returns TRUE and places the time when the next
975 * timer needs to go off in `next', or alternatively it returns
976 * FALSE if there are no timers at all pending.
977 *
978 * timer_change_notify() must be supplied by the front end; it
979 * notifies the front end that a new timer has been added to the
980 * list which is sooner than any existing ones. It provides the
981 * time when that timer needs to go off.
982 */
983typedef void (*timer_fn_t)(void *ctx, long now);
984long schedule_timer(int ticks, timer_fn_t fn, void *ctx);
985void expire_timer_context(void *ctx);
986int run_timers(long now, long *next);
987void timer_change_notify(long next);
988
374330e2 989#endif