]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - putty.h
first pass
[PuTTY.git] / putty.h
1 #ifndef PUTTY_PUTTY_H
2 #define PUTTY_PUTTY_H
3
4 #include <stddef.h>                    /* for wchar_t */
5
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
19 #ifndef DONE_TYPEDEFS
20 #define DONE_TYPEDEFS
21 typedef struct conf_tag Conf;
22 typedef struct backend_tag Backend;
23 typedef struct terminal_tag Terminal;
24 #endif
25
26 #include "puttyps.h"
27 #include "network.h"
28 #include "misc.h"
29
30 /*
31  * Fingerprints of the PGP master keys that can be used to establish a trust
32  * path between an executable and other files.
33  */
34 #define PGP_MASTER_KEY_FP \
35     "440D E3B5 B7A1 CA85 B3CC  1718 AB58 5DC6 0467 6F7C"
36 #define PGP_RSA_MASTER_KEY_FP \
37     "8F 15 97 DA 25 30 AB 0D  88 D1 92 54 11 CF 0C 4C"
38 #define PGP_DSA_MASTER_KEY_FP \
39     "313C 3E76 4B74 C2C5 F2AE  83A8 4F5E 6DF5 6A93 B34E"
40
41 /* Three attribute types: 
42  * The ATTRs (normal attributes) are stored with the characters in
43  * the main display arrays
44  *
45  * The TATTRs (temporary attributes) are generated on the fly, they
46  * can overlap with characters but not with normal attributes.
47  *
48  * The LATTRs (line attributes) are an entirely disjoint space of
49  * flags.
50  * 
51  * The DATTRs (display attributes) are internal to terminal.c (but
52  * defined here because their values have to match the others
53  * here); they reuse the TATTR_* space but are always masked off
54  * before sending to the front end.
55  *
56  * ATTR_INVALID is an illegal colour combination.
57  */
58
59 #define TATTR_ACTCURS       0x40000000UL      /* active cursor (block) */
60 #define TATTR_PASCURS       0x20000000UL      /* passive cursor (box) */
61 #define TATTR_RIGHTCURS     0x10000000UL      /* cursor-on-RHS */
62 #define TATTR_COMBINING     0x80000000UL      /* combining characters */
63
64 #define DATTR_STARTRUN      0x80000000UL   /* start of redraw run */
65
66 #define TDATTR_MASK         0xF0000000UL
67 #define TATTR_MASK (TDATTR_MASK)
68 #define DATTR_MASK (TDATTR_MASK)
69
70 #define LATTR_NORM   0x00000000UL
71 #define LATTR_WIDE   0x00000001UL
72 #define LATTR_TOP    0x00000002UL
73 #define LATTR_BOT    0x00000003UL
74 #define LATTR_MODE   0x00000003UL
75 #define LATTR_WRAPPED 0x00000010UL     /* this line wraps to next */
76 #define LATTR_WRAPPED2 0x00000020UL    /* with WRAPPED: CJK wide character
77                                           wrapped to next line, so last
78                                           single-width cell is empty */
79
80 #define ATTR_INVALID 0x03FFFFU
81
82 /* Like Linux use the F000 page for direct to font. */
83 #define CSET_OEMCP   0x0000F000UL      /* OEM Codepage DTF */
84 #define CSET_ACP     0x0000F100UL      /* Ansi Codepage DTF */
85
86 /* These are internal use overlapping with the UTF-16 surrogates */
87 #define CSET_ASCII   0x0000D800UL      /* normal ASCII charset ESC ( B */
88 #define CSET_LINEDRW 0x0000D900UL      /* line drawing charset ESC ( 0 */
89 #define CSET_SCOACS  0x0000DA00UL      /* SCO Alternate charset */
90 #define CSET_GBCHR   0x0000DB00UL      /* UK variant   charset ESC ( A */
91 #define CSET_MASK    0xFFFFFF00UL      /* Character set mask */
92
93 #define DIRECT_CHAR(c) ((c&0xFFFFFC00)==0xD800)
94 #define DIRECT_FONT(c) ((c&0xFFFFFE00)==0xF000)
95
96 #define UCSERR       (CSET_LINEDRW|'a') /* UCS Format error character. */
97 /*
98  * UCSWIDE is a special value used in the terminal data to signify
99  * the character cell containing the right-hand half of a CJK wide
100  * character. We use 0xDFFF because it's part of the surrogate
101  * range and hence won't be used for anything else (it's impossible
102  * to input it via UTF-8 because our UTF-8 decoder correctly
103  * rejects surrogates).
104  */
105 #define UCSWIDE      0xDFFF
106
107 #define ATTR_NARROW  0x800000U
108 #define ATTR_WIDE    0x400000U
109 #define ATTR_BOLD    0x040000U
110 #define ATTR_UNDER   0x080000U
111 #define ATTR_REVERSE 0x100000U
112 #define ATTR_BLINK   0x200000U
113 #define ATTR_FGMASK  0x0001FFU
114 #define ATTR_BGMASK  0x03FE00U
115 #define ATTR_COLOURS 0x03FFFFU
116 #define ATTR_FGSHIFT 0
117 #define ATTR_BGSHIFT 9
118
119 /*
120  * The definitive list of colour numbers stored in terminal
121  * attribute words is kept here. It is:
122  * 
123  *  - 0-7 are ANSI colours (KRGYBMCW).
124  *  - 8-15 are the bold versions of those colours.
125  *  - 16-255 are the remains of the xterm 256-colour mode (a
126  *    216-colour cube with R at most significant and B at least,
127  *    followed by a uniform series of grey shades running between
128  *    black and white but not including either on grounds of
129  *    redundancy).
130  *  - 256 is default foreground
131  *  - 257 is default bold foreground
132  *  - 258 is default background
133  *  - 259 is default bold background
134  *  - 260 is cursor foreground
135  *  - 261 is cursor background
136  */
137
138 #define ATTR_DEFFG   (256 << ATTR_FGSHIFT)
139 #define ATTR_DEFBG   (258 << ATTR_BGSHIFT)
140 #define ATTR_DEFAULT (ATTR_DEFFG | ATTR_DEFBG)
141
142 struct sesslist {
143     int nsessions;
144     const char **sessions;
145     char *buffer;                      /* so memory can be freed later */
146 };
147
148 struct unicode_data {
149     char **uni_tbl;
150     int dbcs_screenfont;
151     int font_codepage;
152     int line_codepage;
153     wchar_t unitab_scoacs[256];
154     wchar_t unitab_line[256];
155     wchar_t unitab_font[256];
156     wchar_t unitab_xterm[256];
157     wchar_t unitab_oemcp[256];
158     unsigned char unitab_ctrl[256];
159 };
160
161 #define LGXF_OVR  1                    /* existing logfile overwrite */
162 #define LGXF_APN  0                    /* existing logfile append */
163 #define LGXF_ASK -1                    /* existing logfile ask */
164 #define LGTYP_NONE  0                  /* logmode: no logging */
165 #define LGTYP_ASCII 1                  /* logmode: pure ascii */
166 #define LGTYP_DEBUG 2                  /* logmode: all chars of traffic */
167 #define LGTYP_PACKETS 3                /* logmode: SSH data packets */
168 #define LGTYP_SSHRAW 4                 /* logmode: SSH raw data */
169
170 typedef enum {
171     /* Actual special commands. Originally Telnet, but some codes have
172      * been re-used for similar specials in other protocols. */
173     TS_AYT, TS_BRK, TS_SYNCH, TS_EC, TS_EL, TS_GA, TS_NOP, TS_ABORT,
174     TS_AO, TS_IP, TS_SUSP, TS_EOR, TS_EOF, TS_LECHO, TS_RECHO, TS_PING,
175     TS_EOL,
176     /* Special command for SSH. */
177     TS_REKEY,
178     /* POSIX-style signals. (not Telnet) */
179     TS_SIGABRT, TS_SIGALRM, TS_SIGFPE,  TS_SIGHUP,  TS_SIGILL,
180     TS_SIGINT,  TS_SIGKILL, TS_SIGPIPE, TS_SIGQUIT, TS_SIGSEGV,
181     TS_SIGTERM, TS_SIGUSR1, TS_SIGUSR2,
182     /* Pseudo-specials used for constructing the specials menu. */
183     TS_SEP,         /* Separator */
184     TS_SUBMENU,     /* Start a new submenu with specified name */
185     TS_EXITMENU,    /* Exit current submenu or end of specials */
186     /* Starting point for protocols to invent special-action codes
187      * that can't live in this enum at all, e.g. because they change
188      * with every session.
189      *
190      * Of course, this must remain the last value in this
191      * enumeration. */
192     TS_LOCALSTART
193 } Telnet_Special;
194
195 struct telnet_special {
196     const char *name;
197     int code;
198 };
199
200 typedef enum {
201     MBT_NOTHING,
202     MBT_LEFT, MBT_MIDDLE, MBT_RIGHT,   /* `raw' button designations */
203     MBT_SELECT, MBT_EXTEND, MBT_PASTE, /* `cooked' button designations */
204     MBT_WHEEL_UP, MBT_WHEEL_DOWN       /* mouse wheel */
205 } Mouse_Button;
206
207 typedef enum {
208     MA_NOTHING, MA_CLICK, MA_2CLK, MA_3CLK, MA_DRAG, MA_RELEASE
209 } Mouse_Action;
210
211 /* Keyboard modifiers -- keys the user is actually holding down */
212
213 #define PKM_SHIFT       0x01
214 #define PKM_CONTROL     0x02
215 #define PKM_META        0x04
216 #define PKM_ALT         0x08
217
218 /* Keyboard flags that aren't really modifiers */
219 #define PKF_CAPSLOCK    0x10
220 #define PKF_NUMLOCK     0x20
221 #define PKF_REPEAT      0x40
222
223 /* Stand-alone keysyms for function keys */
224
225 typedef enum {
226     PK_NULL,            /* No symbol for this key */
227     /* Main keypad keys */
228     PK_ESCAPE, PK_TAB, PK_BACKSPACE, PK_RETURN, PK_COMPOSE,
229     /* Editing keys */
230     PK_HOME, PK_INSERT, PK_DELETE, PK_END, PK_PAGEUP, PK_PAGEDOWN,
231     /* Cursor keys */
232     PK_UP, PK_DOWN, PK_RIGHT, PK_LEFT, PK_REST,
233     /* Numeric keypad */                        /* Real one looks like: */
234     PK_PF1, PK_PF2, PK_PF3, PK_PF4,             /* PF1 PF2 PF3 PF4 */
235     PK_KPCOMMA, PK_KPMINUS, PK_KPDECIMAL,       /*  7   8   9   -  */
236     PK_KP0, PK_KP1, PK_KP2, PK_KP3, PK_KP4,     /*  4   5   6   ,  */
237     PK_KP5, PK_KP6, PK_KP7, PK_KP8, PK_KP9,     /*  1   2   3  en- */
238     PK_KPBIGPLUS, PK_KPENTER,                   /*    0     .  ter */
239     /* Top row */
240     PK_F1,  PK_F2,  PK_F3,  PK_F4,  PK_F5,
241     PK_F6,  PK_F7,  PK_F8,  PK_F9,  PK_F10,
242     PK_F11, PK_F12, PK_F13, PK_F14, PK_F15,
243     PK_F16, PK_F17, PK_F18, PK_F19, PK_F20,
244     PK_PAUSE
245 } Key_Sym;
246
247 #define PK_ISEDITING(k) ((k) >= PK_HOME && (k) <= PK_PAGEDOWN)
248 #define PK_ISCURSOR(k)  ((k) >= PK_UP && (k) <= PK_REST)
249 #define PK_ISKEYPAD(k)  ((k) >= PK_PF1 && (k) <= PK_KPENTER)
250 #define PK_ISFKEY(k)    ((k) >= PK_F1 && (k) <= PK_F20)
251
252 enum {
253     VT_XWINDOWS, VT_OEMANSI, VT_OEMONLY, VT_POORMAN, VT_UNICODE
254 };
255
256 enum {
257     /*
258      * SSH-2 key exchange algorithms
259      */
260     KEX_WARN,
261     KEX_DHGROUP1,
262     KEX_DHGROUP14,
263     KEX_DHGEX,
264     KEX_RSA,
265     KEX_ECDH,
266     KEX_MAX
267 };
268
269 enum {
270     /*
271      * SSH-2 host key algorithms
272      */
273     HK_WARN,
274     HK_RSA,
275     HK_DSA,
276     HK_ECDSA,
277     HK_ED25519,
278     HK_MAX
279 };
280
281 enum {
282     /*
283      * SSH ciphers (both SSH-1 and SSH-2)
284      */
285     CIPHER_WARN,                       /* pseudo 'cipher' */
286     CIPHER_3DES,
287     CIPHER_BLOWFISH,
288     CIPHER_AES,                        /* (SSH-2 only) */
289     CIPHER_DES,
290     CIPHER_ARCFOUR,
291     CIPHER_CHACHA20,
292     CIPHER_MAX                         /* no. ciphers (inc warn) */
293 };
294
295 enum {
296     /*
297      * Several different bits of the PuTTY configuration seem to be
298      * three-way settings whose values are `always yes', `always
299      * no', and `decide by some more complex automated means'. This
300      * is true of line discipline options (local echo and line
301      * editing), proxy DNS, proxy terminal logging, Close On Exit, and
302      * SSH server bug workarounds. Accordingly I supply a single enum
303      * here to deal with them all.
304      */
305     FORCE_ON, FORCE_OFF, AUTO
306 };
307
308 enum {
309     /*
310      * Proxy types.
311      */
312     PROXY_NONE, PROXY_SOCKS4, PROXY_SOCKS5,
313     PROXY_HTTP, PROXY_TELNET, PROXY_CMD, PROXY_FUZZ
314 };
315
316 enum {
317     /*
318      * Line discipline options which the backend might try to control.
319      */
320     LD_EDIT,                           /* local line editing */
321     LD_ECHO                            /* local echo */
322 };
323
324 enum {
325     /* Actions on remote window title query */
326     TITLE_NONE, TITLE_EMPTY, TITLE_REAL
327 };
328
329 enum {
330     /* Protocol back ends. (CONF_protocol) */
331     PROT_RAW, PROT_TELNET, PROT_RLOGIN, PROT_SSH,
332     /* PROT_SERIAL is supported on a subset of platforms, but it doesn't
333      * hurt to define it globally. */
334     PROT_SERIAL
335 };
336
337 enum {
338     /* Bell settings (CONF_beep) */
339     BELL_DISABLED, BELL_DEFAULT, BELL_VISUAL, BELL_WAVEFILE, BELL_PCSPEAKER
340 };
341
342 enum {
343     /* Taskbar flashing indication on bell (CONF_beep_ind) */
344     B_IND_DISABLED, B_IND_FLASH, B_IND_STEADY
345 };
346
347 enum {
348     /* Resize actions (CONF_resize_action) */
349     RESIZE_TERM, RESIZE_DISABLED, RESIZE_FONT, RESIZE_EITHER
350 };
351
352 enum {
353     /* Function key types (CONF_funky_type) */
354     FUNKY_TILDE,
355     FUNKY_LINUX,
356     FUNKY_XTERM,
357     FUNKY_VT400,
358     FUNKY_VT100P,
359     FUNKY_SCO
360 };
361
362 enum {
363     FQ_DEFAULT, FQ_ANTIALIASED, FQ_NONANTIALIASED, FQ_CLEARTYPE
364 };
365
366 enum {
367     SER_PAR_NONE, SER_PAR_ODD, SER_PAR_EVEN, SER_PAR_MARK, SER_PAR_SPACE
368 };
369
370 enum {
371     SER_FLOW_NONE, SER_FLOW_XONXOFF, SER_FLOW_RTSCTS, SER_FLOW_DSRDTR
372 };
373
374 /*
375  * Tables of string <-> enum value mappings used in settings.c.
376  * Defined here so that backends can export their GSS library tables
377  * to the cross-platform settings code.
378  */
379 struct keyvalwhere {
380     /*
381      * Two fields which define a string and enum value to be
382      * equivalent to each other.
383      */
384     const char *s;
385     int v;
386
387     /*
388      * The next pair of fields are used by gprefs() in settings.c to
389      * arrange that when it reads a list of strings representing a
390      * preference list and translates it into the corresponding list
391      * of integers, strings not appearing in the list are entered in a
392      * configurable position rather than uniformly at the end.
393      */
394
395     /*
396      * 'vrel' indicates which other value in the list to place this
397      * element relative to. It should be a value that has occurred in
398      * a 'v' field of some other element of the array, or -1 to
399      * indicate that we simply place relative to one or other end of
400      * the list.
401      *
402      * gprefs will try to process the elements in an order which makes
403      * this field work (i.e. so that the element referenced has been
404      * added before processing this one).
405      */
406     int vrel;
407
408     /*
409      * 'where' indicates whether to place the new value before or
410      * after the one referred to by vrel. -1 means before; +1 means
411      * after.
412      *
413      * When vrel is -1, this also implicitly indicates which end of
414      * the array to use. So vrel=-1, where=-1 means to place _before_
415      * some end of the list (hence, at the last element); vrel=-1,
416      * where=+1 means to place _after_ an end (hence, at the first).
417      */
418     int where;
419 };
420
421 #ifndef NO_GSSAPI
422 extern const int ngsslibs;
423 extern const char *const gsslibnames[]; /* for displaying in configuration */
424 extern const struct keyvalwhere gsslibkeywords[]; /* for settings.c */
425 #endif
426
427 extern const char *const ttymodes[];
428
429 enum {
430     /*
431      * Network address types. Used for specifying choice of IPv4/v6
432      * in config; also used in proxy.c to indicate whether a given
433      * host name has already been resolved or will be resolved at
434      * the proxy end.
435      */
436     ADDRTYPE_UNSPEC, ADDRTYPE_IPV4, ADDRTYPE_IPV6, ADDRTYPE_NAME
437 };
438
439 struct backend_tag {
440     const char *(*init) (void *frontend_handle, void **backend_handle,
441                          Conf *conf, const char *host, int port,
442                          char **realhost, int nodelay, int keepalive);
443     void (*free) (void *handle);
444     /* back->reconfig() passes in a replacement configuration. */
445     void (*reconfig) (void *handle, Conf *conf);
446     /* back->send() returns the current amount of buffered data. */
447     int (*send) (void *handle, const char *buf, int len);
448     /* back->sendbuffer() does the same thing but without attempting a send */
449     int (*sendbuffer) (void *handle);
450     void (*size) (void *handle, int width, int height);
451     void (*special) (void *handle, Telnet_Special code);
452     const struct telnet_special *(*get_specials) (void *handle);
453     int (*connected) (void *handle);
454     int (*exitcode) (void *handle);
455     /* If back->sendok() returns FALSE, data sent to it from the frontend
456      * may be lost. */
457     int (*sendok) (void *handle);
458     int (*ldisc) (void *handle, int);
459     void (*provide_ldisc) (void *handle, void *ldisc);
460     void (*provide_logctx) (void *handle, void *logctx);
461     /*
462      * back->unthrottle() tells the back end that the front end
463      * buffer is clearing.
464      */
465     void (*unthrottle) (void *handle, int);
466     int (*cfg_info) (void *handle);
467     /* Only implemented in the SSH protocol: check whether a
468      * connection-sharing upstream exists for a given configuration. */
469     int (*test_for_upstream)(const char *host, int port, Conf *conf);
470     const char *name;
471     int protocol;
472     int default_port;
473 };
474
475 extern Backend *backends[];
476
477 /*
478  * Suggested default protocol provided by the backend link module.
479  * The application is free to ignore this.
480  */
481 extern const int be_default_protocol;
482
483 /*
484  * Name of this particular application, for use in the config box
485  * and other pieces of text.
486  */
487 extern const char *const appname;
488
489 /*
490  * Some global flags denoting the type of application.
491  * 
492  * FLAG_VERBOSE is set when the user requests verbose details.
493  * 
494  * FLAG_STDERR is set in command-line applications (which have a
495  * functioning stderr that it makes sense to write to) and not in
496  * GUI applications (which don't).
497  * 
498  * FLAG_INTERACTIVE is set when a full interactive shell session is
499  * being run, _either_ because no remote command has been provided
500  * _or_ because the application is GUI and can't run non-
501  * interactively.
502  * 
503  * These flags describe the type of _application_ - they wouldn't
504  * vary between individual sessions - and so it's OK to have this
505  * variable be GLOBAL.
506  * 
507  * Note that additional flags may be defined in platform-specific
508  * headers. It's probably best if those ones start from 0x1000, to
509  * avoid collision.
510  */
511 #define FLAG_VERBOSE     0x0001
512 #define FLAG_STDERR      0x0002
513 #define FLAG_INTERACTIVE 0x0004
514 GLOBAL int flags;
515
516 /*
517  * Likewise, these two variables are set up when the application
518  * initialises, and inform all default-settings accesses after
519  * that.
520  */
521 GLOBAL int default_protocol;
522 GLOBAL int default_port;
523
524 /*
525  * This is set TRUE by cmdline.c iff a session is loaded with "-load".
526  */
527 GLOBAL int loaded_session;
528 /*
529  * This is set to the name of the loaded session.
530  */
531 GLOBAL char *cmdline_session_name;
532
533 struct RSAKey;                         /* be a little careful of scope */
534
535 /*
536  * Mechanism for getting text strings such as usernames and passwords
537  * from the front-end.
538  * The fields are mostly modelled after SSH's keyboard-interactive auth.
539  * FIXME We should probably mandate a character set/encoding (probably UTF-8).
540  *
541  * Since many of the pieces of text involved may be chosen by the server,
542  * the caller must take care to ensure that the server can't spoof locally-
543  * generated prompts such as key passphrase prompts. Some ground rules:
544  *  - If the front-end needs to truncate a string, it should lop off the
545  *    end.
546  *  - The front-end should filter out any dangerous characters and
547  *    generally not trust the strings. (But \n is required to behave
548  *    vaguely sensibly, at least in `instruction', and ideally in
549  *    `prompt[]' too.)
550  */
551 typedef struct {
552     char *prompt;
553     int echo;
554     /*
555      * 'result' must be a dynamically allocated array of exactly
556      * 'resultsize' chars. The code for actually reading input may
557      * realloc it bigger (and adjust resultsize accordingly) if it has
558      * to. The caller should free it again when finished with it.
559      *
560      * If resultsize==0, then result may be NULL. When setting up a
561      * prompt_t, it's therefore easiest to initialise them this way,
562      * which means all actual allocation is done by the callee. This
563      * is what add_prompt does.
564      */
565     char *result;
566     size_t resultsize;
567 } prompt_t;
568 typedef struct {
569     /*
570      * Indicates whether the information entered is to be used locally
571      * (for instance a key passphrase prompt), or is destined for the wire.
572      * This is a hint only; the front-end is at liberty not to use this
573      * information (so the caller should ensure that the supplied text is
574      * sufficient).
575      */
576     int to_server;
577     char *name;         /* Short description, perhaps for dialog box title */
578     int name_reqd;      /* Display of `name' required or optional? */
579     char *instruction;  /* Long description, maybe with embedded newlines */
580     int instr_reqd;     /* Display of `instruction' required or optional? */
581     size_t n_prompts;   /* May be zero (in which case display the foregoing,
582                          * if any, and return success) */
583     prompt_t **prompts;
584     void *frontend;
585     void *data;         /* slot for housekeeping data, managed by
586                          * get_userpass_input(); initially NULL */
587 } prompts_t;
588 prompts_t *new_prompts(void *frontend);
589 void add_prompt(prompts_t *p, char *promptstr, int echo);
590 void prompt_set_result(prompt_t *pr, const char *newstr);
591 void prompt_ensure_result_size(prompt_t *pr, int len);
592 /* Burn the evidence. (Assumes _all_ strings want free()ing.) */
593 void free_prompts(prompts_t *p);
594
595 /*
596  * Exports from the front end.
597  */
598 void request_resize(void *frontend, int, int);
599 void do_text(Context, int, int, wchar_t *, int, unsigned long, int);
600 void do_cursor(Context, int, int, wchar_t *, int, unsigned long, int);
601 int char_width(Context ctx, int uc);
602 #ifdef OPTIMISE_SCROLL
603 void do_scroll(Context, int, int, int);
604 #endif
605 void set_title(void *frontend, char *);
606 void set_icon(void *frontend, char *);
607 void set_sbar(void *frontend, int, int, int);
608 Context get_ctx(void *frontend);
609 void free_ctx(Context);
610 void palette_set(void *frontend, int, int, int, int);
611 void palette_reset(void *frontend);
612 void write_aclip(void *frontend, char *, int, int);
613 void write_clip(void *frontend, wchar_t *, int *, int, int);
614 void get_clip(void *frontend, wchar_t **, int *);
615 void optimised_move(void *frontend, int, int, int);
616 void set_raw_mouse_mode(void *frontend, int);
617 void connection_fatal(void *frontend, const char *, ...);
618 void nonfatal(const char *, ...);
619 void fatalbox(const char *, ...);
620 void modalfatalbox(const char *, ...);
621 #ifdef macintosh
622 #pragma noreturn(fatalbox)
623 #pragma noreturn(modalfatalbox)
624 #endif
625 void do_beep(void *frontend, int);
626 void begin_session(void *frontend);
627 void sys_cursor(void *frontend, int x, int y);
628 void request_paste(void *frontend);
629 void frontend_keypress(void *frontend);
630 void frontend_echoedit_update(void *frontend, int echo, int edit);
631 /* It's the backend's responsibility to invoke this at the start of a
632  * connection, if necessary; it can also invoke it later if the set of
633  * special commands changes. It does not need to invoke it at session
634  * shutdown. */
635 void update_specials_menu(void *frontend);
636 int from_backend(void *frontend, int is_stderr, const char *data, int len);
637 int from_backend_untrusted(void *frontend, const char *data, int len);
638 /* Called when the back end wants to indicate that EOF has arrived on
639  * the server-to-client stream. Returns FALSE to indicate that we
640  * intend to keep the session open in the other direction, or TRUE to
641  * indicate that if they're closing so are we. */
642 int from_backend_eof(void *frontend);
643 void notify_remote_exit(void *frontend);
644 /* Get a sensible value for a tty mode. NULL return = don't set.
645  * Otherwise, returned value should be freed by caller. */
646 char *get_ttymode(void *frontend, const char *mode);
647 /*
648  * >0 = `got all results, carry on'
649  * 0  = `user cancelled' (FIXME distinguish "give up entirely" and "next auth"?)
650  * <0 = `please call back later with more in/inlen'
651  */
652 int get_userpass_input(prompts_t *p, const unsigned char *in, int inlen);
653 #define OPTIMISE_IS_SCROLL 1
654
655 void set_iconic(void *frontend, int iconic);
656 void move_window(void *frontend, int x, int y);
657 void set_zorder(void *frontend, int top);
658 void refresh_window(void *frontend);
659 void set_zoomed(void *frontend, int zoomed);
660 int is_iconic(void *frontend);
661 void get_window_pos(void *frontend, int *x, int *y);
662 void get_window_pixels(void *frontend, int *x, int *y);
663 char *get_window_title(void *frontend, int icon);
664 /* Hint from backend to frontend about time-consuming operations.
665  * Initial state is assumed to be BUSY_NOT. */
666 enum {
667     BUSY_NOT,       /* Not busy, all user interaction OK */
668     BUSY_WAITING,   /* Waiting for something; local event loops still running
669                        so some local interaction (e.g. menus) OK, but network
670                        stuff is suspended */
671     BUSY_CPU        /* Locally busy (e.g. crypto); user interaction suspended */
672 };
673 void set_busy_status(void *frontend, int status);
674 int frontend_is_utf8(void *frontend);
675
676 void cleanup_exit(int);
677
678 /*
679  * Exports from conf.c, and a big enum (via parametric macro) of
680  * configuration option keys.
681  */
682 #define CONFIG_OPTIONS(X) \
683     /* X(value-type, subkey-type, keyword) */ \
684     X(STR, NONE, host) \
685     X(INT, NONE, port) \
686     X(INT, NONE, protocol) \
687     X(INT, NONE, addressfamily) \
688     X(INT, NONE, close_on_exit) \
689     X(INT, NONE, warn_on_close) \
690     X(INT, NONE, ping_interval) /* in seconds */ \
691     X(INT, NONE, tcp_nodelay) \
692     X(INT, NONE, tcp_keepalives) \
693     X(STR, NONE, loghost) /* logical host being contacted, for host key check */ \
694     /* Proxy options */ \
695     X(STR, NONE, proxy_exclude_list) \
696     X(INT, NONE, proxy_dns) \
697     X(INT, NONE, even_proxy_localhost) \
698     X(INT, NONE, proxy_type) \
699     X(STR, NONE, proxy_host) \
700     X(INT, NONE, proxy_port) \
701     X(STR, NONE, proxy_username) \
702     X(STR, NONE, proxy_password) \
703     X(STR, NONE, proxy_telnet_command) \
704     X(INT, NONE, proxy_log_to_term) \
705     /* SSH options */ \
706     X(STR, NONE, remote_cmd) \
707     X(STR, NONE, remote_cmd2) /* fallback if remote_cmd fails; never loaded or saved */ \
708     X(INT, NONE, nopty) \
709     X(INT, NONE, compression) \
710     X(INT, INT, ssh_kexlist) \
711     X(INT, INT, ssh_hklist) \
712     X(INT, NONE, ssh_rekey_time) /* in minutes */ \
713     X(STR, NONE, ssh_rekey_data) /* string encoding e.g. "100K", "2M", "1G" */ \
714     X(INT, NONE, tryagent) \
715     X(INT, NONE, agentfwd) \
716     X(INT, NONE, change_username) /* allow username switching in SSH-2 */ \
717     X(INT, INT, ssh_cipherlist) \
718     X(FILENAME, NONE, keyfile) \
719     /* \
720      * Which SSH protocol to use. \
721      * For historical reasons, the current legal values for CONF_sshprot \
722      * are: \
723      *  0 = SSH-1 only \
724      *  3 = SSH-2 only \
725      * We used to also support \
726      *  1 = SSH-1 with fallback to SSH-2 \
727      *  2 = SSH-2 with fallback to SSH-1 \
728      * and we continue to use 0/3 in storage formats rather than the more \
729      * obvious 1/2 to avoid surprises if someone saves a session and later \
730      * downgrades PuTTY. So it's easier to use these numbers internally too. \
731      */ \
732     X(INT, NONE, sshprot) \
733     X(INT, NONE, ssh2_des_cbc) /* "des-cbc" unrecommended SSH-2 cipher */ \
734     X(INT, NONE, ssh_no_userauth) /* bypass "ssh-userauth" (SSH-2 only) */ \
735     X(INT, NONE, ssh_show_banner) /* show USERAUTH_BANNERs (SSH-2 only) */ \
736     X(INT, NONE, try_tis_auth) \
737     X(INT, NONE, try_ki_auth) \
738     X(INT, NONE, try_gssapi_auth) /* attempt gssapi auth */ \
739     X(INT, NONE, gssapifwd) /* forward tgt via gss */ \
740     X(INT, INT, ssh_gsslist) /* preference order for local GSS libs */ \
741     X(FILENAME, NONE, ssh_gss_custom) \
742     X(INT, NONE, ssh_subsys) /* run a subsystem rather than a command */ \
743     X(INT, NONE, ssh_subsys2) /* fallback to go with remote_cmd_ptr2 */ \
744     X(INT, NONE, ssh_no_shell) /* avoid running a shell */ \
745     X(STR, NONE, ssh_nc_host) /* host to connect to in `nc' mode */ \
746     X(INT, NONE, ssh_nc_port) /* port to connect to in `nc' mode */ \
747     /* Telnet options */ \
748     X(STR, NONE, termtype) \
749     X(STR, NONE, termspeed) \
750     X(STR, STR, ttymodes) /* values are "Vvalue" or "A" */ \
751     X(STR, STR, environmt) \
752     X(STR, NONE, username) \
753     X(INT, NONE, username_from_env) \
754     X(STR, NONE, localusername) \
755     X(INT, NONE, rfc_environ) \
756     X(INT, NONE, passive_telnet) \
757     /* Serial port options */ \
758     X(STR, NONE, serline) \
759     X(INT, NONE, serspeed) \
760     X(INT, NONE, serdatabits) \
761     X(INT, NONE, serstopbits) \
762     X(INT, NONE, serparity) \
763     X(INT, NONE, serflow) \
764     /* Keyboard options */ \
765     X(INT, NONE, bksp_is_delete) \
766     X(INT, NONE, rxvt_homeend) \
767     X(INT, NONE, funky_type) \
768     X(INT, NONE, no_applic_c) /* totally disable app cursor keys */ \
769     X(INT, NONE, no_applic_k) /* totally disable app keypad */ \
770     X(INT, NONE, no_mouse_rep) /* totally disable mouse reporting */ \
771     X(INT, NONE, no_remote_resize) /* disable remote resizing */ \
772     X(INT, NONE, no_alt_screen) /* disable alternate screen */ \
773     X(INT, NONE, no_remote_wintitle) /* disable remote retitling */ \
774     X(INT, NONE, no_remote_clearscroll) /* disable ESC[3J */ \
775     X(INT, NONE, no_dbackspace) /* disable destructive backspace */ \
776     X(INT, NONE, no_remote_charset) /* disable remote charset config */ \
777     X(INT, NONE, remote_qtitle_action) /* remote win title query action */ \
778     X(INT, NONE, app_cursor) \
779     X(INT, NONE, app_keypad) \
780     X(INT, NONE, nethack_keypad) \
781     X(INT, NONE, telnet_keyboard) \
782     X(INT, NONE, telnet_newline) \
783     X(INT, NONE, alt_f4) /* is it special? */ \
784     X(INT, NONE, alt_space) /* is it special? */ \
785     X(INT, NONE, alt_only) /* is it special? */ \
786     X(INT, NONE, localecho) \
787     X(INT, NONE, localedit) \
788     X(INT, NONE, alwaysontop) \
789     X(INT, NONE, fullscreenonaltenter) \
790     X(INT, NONE, scroll_on_key) \
791     X(INT, NONE, scroll_on_disp) \
792     X(INT, NONE, erase_to_scrollback) \
793     X(INT, NONE, compose_key) \
794     X(INT, NONE, ctrlaltkeys) \
795     X(INT, NONE, osx_option_meta) \
796     X(INT, NONE, osx_command_meta) \
797     X(STR, NONE, wintitle) /* initial window title */ \
798     /* Terminal options */ \
799     X(INT, NONE, savelines) \
800     X(INT, NONE, dec_om) \
801     X(INT, NONE, wrap_mode) \
802     X(INT, NONE, lfhascr) \
803     X(INT, NONE, cursor_type) /* 0=block 1=underline 2=vertical */ \
804     X(INT, NONE, blink_cur) \
805     X(INT, NONE, beep) \
806     X(INT, NONE, beep_ind) \
807     X(INT, NONE, bellovl) /* bell overload protection active? */ \
808     X(INT, NONE, bellovl_n) /* number of bells to cause overload */ \
809     X(INT, NONE, bellovl_t) /* time interval for overload (seconds) */ \
810     X(INT, NONE, bellovl_s) /* period of silence to re-enable bell (s) */ \
811     X(FILENAME, NONE, bell_wavefile) \
812     X(INT, NONE, scrollbar) \
813     X(INT, NONE, scrollbar_in_fullscreen) \
814     X(INT, NONE, resize_action) \
815     X(INT, NONE, bce) \
816     X(INT, NONE, blinktext) \
817     X(INT, NONE, win_name_always) \
818     X(INT, NONE, width) \
819     X(INT, NONE, height) \
820     X(FONT, NONE, font) \
821     X(INT, NONE, font_quality) \
822     X(FILENAME, NONE, logfilename) \
823     X(INT, NONE, logtype) \
824     X(INT, NONE, logxfovr) \
825     X(INT, NONE, logflush) \
826     X(INT, NONE, logomitpass) \
827     X(INT, NONE, logomitdata) \
828     X(INT, NONE, hide_mouseptr) \
829     X(INT, NONE, sunken_edge) \
830     X(INT, NONE, window_border) \
831     X(STR, NONE, answerback) \
832     X(STR, NONE, printer) \
833     X(INT, NONE, arabicshaping) \
834     X(INT, NONE, bidi) \
835     /* Colour options */ \
836     X(INT, NONE, ansi_colour) \
837     X(INT, NONE, xterm_256_colour) \
838     X(INT, NONE, system_colour) \
839     X(INT, NONE, try_palette) \
840     X(INT, NONE, bold_style) \
841     X(INT, INT, colours) \
842     /* Selection options */ \
843     X(INT, NONE, mouse_is_xterm) \
844     X(INT, NONE, rect_select) \
845     X(INT, NONE, rawcnp) \
846     X(INT, NONE, rtf_paste) \
847     X(INT, NONE, mouse_override) \
848     X(INT, INT, wordness) \
849     /* translations */ \
850     X(INT, NONE, vtmode) \
851     X(STR, NONE, line_codepage) \
852     X(INT, NONE, cjk_ambig_wide) \
853     X(INT, NONE, utf8_override) \
854     X(INT, NONE, xlat_capslockcyr) \
855     /* X11 forwarding */ \
856     X(INT, NONE, x11_forward) \
857     X(STR, NONE, x11_display) \
858     X(INT, NONE, x11_auth) \
859     X(FILENAME, NONE, xauthfile) \
860     /* port forwarding */ \
861     X(INT, NONE, lport_acceptall) /* accept conns from hosts other than localhost */ \
862     X(INT, NONE, rport_acceptall) /* same for remote forwarded ports (SSH-2 only) */ \
863     /*                                                                \
864      * Subkeys for 'portfwd' can have the following forms:            \
865      *                                                                \
866      *   [LR]localport                                                \
867      *   [LR]localaddr:localport                                      \
868      *                                                                \
869      * Dynamic forwardings are indicated by an 'L' key, and the       \
870      * special value "D". For all other forwardings, the value        \
871      * should be of the form 'host:port'.                             \
872      */ \
873     X(STR, STR, portfwd) \
874     /* SSH bug compatibility modes */ \
875     X(INT, NONE, sshbug_ignore1) \
876     X(INT, NONE, sshbug_plainpw1) \
877     X(INT, NONE, sshbug_rsa1) \
878     X(INT, NONE, sshbug_hmac2) \
879     X(INT, NONE, sshbug_derivekey2) \
880     X(INT, NONE, sshbug_rsapad2) \
881     X(INT, NONE, sshbug_pksessid2) \
882     X(INT, NONE, sshbug_rekey2) \
883     X(INT, NONE, sshbug_maxpkt2) \
884     X(INT, NONE, sshbug_ignore2) \
885     X(INT, NONE, sshbug_oldgex2) \
886     X(INT, NONE, sshbug_winadj) \
887     X(INT, NONE, sshbug_chanreq) \
888     /*                                                                \
889      * ssh_simple means that we promise never to open any channel     \
890      * other than the main one, which means it can safely use a very  \
891      * large window in SSH-2.                                         \
892      */ \
893     X(INT, NONE, ssh_simple) \
894     X(INT, NONE, ssh_connection_sharing) \
895     X(INT, NONE, ssh_connection_sharing_upstream) \
896     X(INT, NONE, ssh_connection_sharing_downstream) \
897     /*
898      * ssh_manual_hostkeys is conceptually a set rather than a
899      * dictionary: the string subkeys are the important thing, and the
900      * actual values to which those subkeys map are all "".
901      */ \
902     X(STR, STR, ssh_manual_hostkeys) \
903     /* Options for pterm. Should split out into platform-dependent part. */ \
904     X(INT, NONE, stamp_utmp) \
905     X(INT, NONE, login_shell) \
906     X(INT, NONE, scrollbar_on_left) \
907     X(INT, NONE, shadowbold) \
908     X(FONT, NONE, boldfont) \
909     X(FONT, NONE, widefont) \
910     X(FONT, NONE, wideboldfont) \
911     X(INT, NONE, shadowboldoffset) \
912     X(INT, NONE, crhaslf) \
913     X(STR, NONE, winclass) \
914
915 /* Now define the actual enum of option keywords using that macro. */
916 #define CONF_ENUM_DEF(valtype, keytype, keyword) CONF_ ## keyword,
917 enum config_primary_key { CONFIG_OPTIONS(CONF_ENUM_DEF) N_CONFIG_OPTIONS };
918 #undef CONF_ENUM_DEF
919
920 #define NCFGCOLOURS 22 /* number of colours in CONF_colours above */
921
922 /* Functions handling configuration structures. */
923 Conf *conf_new(void);                  /* create an empty configuration */
924 void conf_free(Conf *conf);
925 Conf *conf_copy(Conf *oldconf);
926 void conf_copy_into(Conf *dest, Conf *src);
927 /* Mandatory accessor functions: enforce by assertion that keys exist. */
928 int conf_get_int(Conf *conf, int key);
929 int conf_get_int_int(Conf *conf, int key, int subkey);
930 char *conf_get_str(Conf *conf, int key);   /* result still owned by conf */
931 char *conf_get_str_str(Conf *conf, int key, const char *subkey);
932 Filename *conf_get_filename(Conf *conf, int key);
933 FontSpec *conf_get_fontspec(Conf *conf, int key); /* still owned by conf */
934 /* Optional accessor function: return NULL if key does not exist. */
935 char *conf_get_str_str_opt(Conf *conf, int key, const char *subkey);
936 /* Accessor function to step through a string-subkeyed list.
937  * Returns the next subkey after the provided one, or the first if NULL.
938  * Returns NULL if there are none left.
939  * Both the return value and *subkeyout are still owned by conf. */
940 char *conf_get_str_strs(Conf *conf, int key, char *subkeyin, char **subkeyout);
941 /* Return the nth string subkey in a list. Owned by conf. NULL if beyond end */
942 char *conf_get_str_nthstrkey(Conf *conf, int key, int n);
943 /* Functions to set entries in configuration. Always copy their inputs. */
944 void conf_set_int(Conf *conf, int key, int value);
945 void conf_set_int_int(Conf *conf, int key, int subkey, int value);
946 void conf_set_str(Conf *conf, int key, const char *value);
947 void conf_set_str_str(Conf *conf, int key,
948                       const char *subkey, const char *val);
949 void conf_del_str_str(Conf *conf, int key, const char *subkey);
950 void conf_set_filename(Conf *conf, int key, const Filename *val);
951 void conf_set_fontspec(Conf *conf, int key, const FontSpec *val);
952 /* Serialisation functions for Duplicate Session */
953 int conf_serialised_size(Conf *conf);
954 void conf_serialise(Conf *conf, void *data);
955 int conf_deserialise(Conf *conf, void *data, int maxsize);/*returns size used*/
956
957 /*
958  * Functions to copy, free, serialise and deserialise FontSpecs.
959  * Provided per-platform, to go with the platform's idea of a
960  * FontSpec's contents.
961  *
962  * fontspec_serialise returns the number of bytes written, and can
963  * handle data==NULL without crashing. So you can call it once to find
964  * out a size, then again once you've allocated a buffer.
965  */
966 FontSpec *fontspec_copy(const FontSpec *f);
967 void fontspec_free(FontSpec *f);
968 int fontspec_serialise(FontSpec *f, void *data);
969 FontSpec *fontspec_deserialise(void *data, int maxsize, int *used);
970
971 /*
972  * Exports from noise.c.
973  */
974 void noise_get_heavy(void (*func) (void *, int));
975 void noise_get_light(void (*func) (void *, int));
976 void noise_regular(void);
977 void noise_ultralight(unsigned long data);
978 void random_save_seed(void);
979 void random_destroy_seed(void);
980
981 /*
982  * Exports from settings.c.
983  */
984 Backend *backend_from_name(const char *name);
985 Backend *backend_from_proto(int proto);
986 char *get_remote_username(Conf *conf); /* dynamically allocated */
987 char *save_settings(const char *section, Conf *conf);
988 void save_open_settings(void *sesskey, Conf *conf);
989 void load_settings(const char *section, Conf *conf);
990 void load_open_settings(void *sesskey, Conf *conf);
991 void get_sesslist(struct sesslist *, int allocate);
992 void do_defaults(const char *, Conf *);
993 void registry_cleanup(void);
994
995 /*
996  * Functions used by settings.c to provide platform-specific
997  * default settings.
998  * 
999  * (The integer one is expected to return `def' if it has no clear
1000  * opinion of its own. This is because there's no integer value
1001  * which I can reliably set aside to indicate `nil'. The string
1002  * function is perfectly all right returning NULL, of course. The
1003  * Filename and FontSpec functions are _not allowed_ to fail to
1004  * return, since these defaults _must_ be per-platform.)
1005  *
1006  * The 'Filename *' returned by platform_default_filename, and the
1007  * 'FontSpec *' returned by platform_default_fontspec, have ownership
1008  * transferred to the caller, and must be freed.
1009  */
1010 char *platform_default_s(const char *name);
1011 int platform_default_i(const char *name, int def);
1012 Filename *platform_default_filename(const char *name);
1013 FontSpec *platform_default_fontspec(const char *name);
1014
1015 /*
1016  * Exports from terminal.c.
1017  */
1018
1019 Terminal *term_init(Conf *, struct unicode_data *, void *);
1020 void term_free(Terminal *);
1021 void term_size(Terminal *, int, int, int);
1022 void term_paint(Terminal *, Context, int, int, int, int, int);
1023 void term_scroll(Terminal *, int, int);
1024 void term_scroll_to_selection(Terminal *, int);
1025 void term_pwron(Terminal *, int);
1026 void term_clrsb(Terminal *);
1027 void term_mouse(Terminal *, Mouse_Button, Mouse_Button, Mouse_Action,
1028                 int,int,int,int,int);
1029 void term_key(Terminal *, Key_Sym, wchar_t *, size_t, unsigned int,
1030               unsigned int);
1031 void term_deselect(Terminal *);
1032 void term_update(Terminal *);
1033 void term_invalidate(Terminal *);
1034 void term_blink(Terminal *, int set_cursor);
1035 void term_do_paste(Terminal *);
1036 void term_nopaste(Terminal *);
1037 int term_ldisc(Terminal *, int option);
1038 void term_copyall(Terminal *);
1039 void term_reconfig(Terminal *, Conf *);
1040 void term_seen_key_event(Terminal *); 
1041 int term_data(Terminal *, int is_stderr, const char *data, int len);
1042 int term_data_untrusted(Terminal *, const char *data, int len);
1043 void term_provide_resize_fn(Terminal *term,
1044                             void (*resize_fn)(void *, int, int),
1045                             void *resize_ctx);
1046 void term_provide_logctx(Terminal *term, void *logctx);
1047 void term_set_focus(Terminal *term, int has_focus);
1048 char *term_get_ttymode(Terminal *term, const char *mode);
1049 int term_get_userpass_input(Terminal *term, prompts_t *p,
1050                             const unsigned char *in, int inlen);
1051
1052 int format_arrow_key(char *buf, Terminal *term, int xkey, int ctrl);
1053
1054 /*
1055  * Exports from logging.c.
1056  */
1057 void *log_init(void *frontend, Conf *conf);
1058 void log_free(void *logctx);
1059 void log_reconfig(void *logctx, Conf *conf);
1060 void logfopen(void *logctx);
1061 void logfclose(void *logctx);
1062 void logtraffic(void *logctx, unsigned char c, int logmode);
1063 void logflush(void *logctx);
1064 void log_eventlog(void *logctx, const char *string);
1065 enum { PKT_INCOMING, PKT_OUTGOING };
1066 enum { PKTLOG_EMIT, PKTLOG_BLANK, PKTLOG_OMIT };
1067 struct logblank_t {
1068     int offset;
1069     int len;
1070     int type;
1071 };
1072 void log_packet(void *logctx, int direction, int type,
1073                 const char *texttype, const void *data, int len,
1074                 int n_blanks, const struct logblank_t *blanks,
1075                 const unsigned long *sequence,
1076                 unsigned downstream_id, const char *additional_log_text);
1077
1078 /*
1079  * Exports from testback.c
1080  */
1081
1082 extern Backend null_backend;
1083 extern Backend loop_backend;
1084
1085 /*
1086  * Exports from raw.c.
1087  */
1088
1089 extern Backend raw_backend;
1090
1091 /*
1092  * Exports from rlogin.c.
1093  */
1094
1095 extern Backend rlogin_backend;
1096
1097 /*
1098  * Exports from telnet.c.
1099  */
1100
1101 extern Backend telnet_backend;
1102
1103 /*
1104  * Exports from ssh.c.
1105  */
1106 extern Backend ssh_backend;
1107
1108 /*
1109  * Exports from ldisc.c.
1110  */
1111 void *ldisc_create(Conf *, Terminal *, Backend *, void *, void *);
1112 void ldisc_configure(void *, Conf *);
1113 void ldisc_free(void *);
1114 void ldisc_send(void *handle, const char *buf, int len, int interactive);
1115 void ldisc_echoedit_update(void *handle);
1116
1117 /*
1118  * Exports from ldiscucs.c.
1119  */
1120 void lpage_send(void *, int codepage, const char *buf, int len,
1121                 int interactive);
1122 void luni_send(void *, const wchar_t * widebuf, int len, int interactive);
1123
1124 /*
1125  * Exports from sshrand.c.
1126  */
1127
1128 void random_add_noise(void *noise, int length);
1129 int random_byte(void);
1130 void random_get_savedata(void **data, int *len);
1131 extern int random_active;
1132 /* The random number subsystem is activated if at least one other entity
1133  * within the program expresses an interest in it. So each SSH session
1134  * calls random_ref on startup and random_unref on shutdown. */
1135 void random_ref(void);
1136 void random_unref(void);
1137
1138 /*
1139  * Exports from pinger.c.
1140  */
1141 typedef struct pinger_tag *Pinger;
1142 Pinger pinger_new(Conf *conf, Backend *back, void *backhandle);
1143 void pinger_reconfig(Pinger, Conf *oldconf, Conf *newconf);
1144 void pinger_free(Pinger);
1145
1146 /*
1147  * Exports from misc.c.
1148  */
1149
1150 #include "misc.h"
1151 int conf_launchable(Conf *conf);
1152 char const *conf_dest(Conf *conf);
1153
1154 /*
1155  * Exports from sercfg.c.
1156  */
1157 void ser_setup_config_box(struct controlbox *b, int midsession,
1158                           int parity_mask, int flow_mask);
1159
1160 /*
1161  * Exports from version.c.
1162  */
1163 extern const char ver[];
1164
1165 /*
1166  * Exports from unicode.c.
1167  */
1168 #ifndef CP_UTF8
1169 #define CP_UTF8 65001
1170 #endif
1171 /* void init_ucs(void); -- this is now in platform-specific headers */
1172 int is_dbcs_leadbyte(int codepage, char byte);
1173 int mb_to_wc(int codepage, int flags, const char *mbstr, int mblen,
1174              wchar_t *wcstr, int wclen);
1175 int wc_to_mb(int codepage, int flags, const wchar_t *wcstr, int wclen,
1176              char *mbstr, int mblen, const char *defchr, int *defused,
1177              struct unicode_data *ucsdata);
1178 wchar_t xlat_uskbd2cyrllic(int ch);
1179 int check_compose(int first, int second);
1180 int decode_codepage(char *cp_name);
1181 const char *cp_enumerate (int index);
1182 const char *cp_name(int codepage);
1183 void get_unitab(int codepage, wchar_t * unitab, int ftype);
1184
1185 /*
1186  * Exports from wcwidth.c
1187  */
1188 int mk_wcwidth(unsigned int ucs);
1189 int mk_wcswidth(const unsigned int *pwcs, size_t n);
1190 int mk_wcwidth_cjk(unsigned int ucs);
1191 int mk_wcswidth_cjk(const unsigned int *pwcs, size_t n);
1192
1193 /*
1194  * Exports from mscrypto.c
1195  */
1196 #ifdef MSCRYPTOAPI
1197 int crypto_startup();
1198 void crypto_wrapup();
1199 #endif
1200
1201 /*
1202  * Exports from pageantc.c.
1203  * 
1204  * agent_query returns NULL for here's-a-response, and non-NULL for
1205  * query-in- progress. In the latter case there will be a call to
1206  * `callback' at some future point, passing callback_ctx as the first
1207  * parameter and the actual reply data as the second and third.
1208  * 
1209  * The response may be a NULL pointer (in either of the synchronous
1210  * or asynchronous cases), which indicates failure to receive a
1211  * response.
1212  *
1213  * When the return from agent_query is not NULL, it identifies the
1214  * in-progress query in case it needs to be cancelled. If
1215  * agent_cancel_query is called, then the pending query is destroyed
1216  * and the callback will not be called. (E.g. if you're going to throw
1217  * away the thing you were using as callback_ctx.)
1218  *
1219  * Passing a null pointer as callback forces agent_query to behave
1220  * synchronously, i.e. it will block if necessary, and guarantee to
1221  * return NULL. The wrapper function agent_query_synchronous() makes
1222  * this easier.
1223  */
1224 typedef struct agent_pending_query agent_pending_query;
1225 agent_pending_query *agent_query(
1226     void *in, int inlen, void **out, int *outlen,
1227     void (*callback)(void *, void *, int), void *callback_ctx);
1228 void agent_cancel_query(agent_pending_query *);
1229 void agent_query_synchronous(void *in, int inlen, void **out, int *outlen);
1230 int agent_exists(void);
1231
1232 /*
1233  * Exports from wildcard.c
1234  */
1235 const char *wc_error(int value);
1236 int wc_match(const char *wildcard, const char *target);
1237 int wc_unescape(char *output, const char *wildcard);
1238
1239 /*
1240  * Exports from frontend (windlg.c etc)
1241  */
1242 void logevent(void *frontend, const char *);
1243 void pgp_fingerprints(void);
1244 /*
1245  * verify_ssh_host_key() can return one of three values:
1246  * 
1247  *  - +1 means `key was OK' (either already known or the user just
1248  *    approved it) `so continue with the connection'
1249  * 
1250  *  - 0 means `key was not OK, abandon the connection'
1251  * 
1252  *  - -1 means `I've initiated enquiries, please wait to be called
1253  *    back via the provided function with a result that's either 0
1254  *    or +1'.
1255  */
1256 int verify_ssh_host_key(void *frontend, char *host, int port,
1257                         const char *keytype, char *keystr, char *fingerprint,
1258                         void (*callback)(void *ctx, int result), void *ctx);
1259 /*
1260  * have_ssh_host_key() just returns true if a key of that type is
1261  * already cached and false otherwise.
1262  */
1263 int have_ssh_host_key(const char *host, int port, const char *keytype);
1264 /*
1265  * askalg and askhk have the same set of return values as
1266  * verify_ssh_host_key.
1267  *
1268  * (askhk is used in the case where we're using a host key below the
1269  * warning threshold because that's all we have cached, but at least
1270  * one acceptable algorithm is available that we don't have cached.)
1271  */
1272 int askalg(void *frontend, const char *algtype, const char *algname,
1273            void (*callback)(void *ctx, int result), void *ctx);
1274 int askhk(void *frontend, const char *algname, const char *betteralgs,
1275           void (*callback)(void *ctx, int result), void *ctx);
1276 /*
1277  * askappend can return four values:
1278  * 
1279  *  - 2 means overwrite the log file
1280  *  - 1 means append to the log file
1281  *  - 0 means cancel logging for this session
1282  *  - -1 means please wait.
1283  */
1284 int askappend(void *frontend, Filename *filename,
1285               void (*callback)(void *ctx, int result), void *ctx);
1286
1287 /*
1288  * Exports from console frontends (wincons.c, uxcons.c)
1289  * that aren't equivalents to things in windlg.c et al.
1290  */
1291 extern int console_batch_mode;
1292 int console_get_userpass_input(prompts_t *p, const unsigned char *in,
1293                                int inlen);
1294 void console_provide_logctx(void *logctx);
1295 int is_interactive(void);
1296
1297 /*
1298  * Exports from printing.c.
1299  */
1300 typedef struct printer_enum_tag printer_enum;
1301 typedef struct printer_job_tag printer_job;
1302 printer_enum *printer_start_enum(int *nprinters);
1303 char *printer_get_name(printer_enum *, int);
1304 void printer_finish_enum(printer_enum *);
1305 printer_job *printer_start_job(char *printer);
1306 void printer_job_data(printer_job *, void *, int);
1307 void printer_finish_job(printer_job *);
1308
1309 /*
1310  * Exports from cmdline.c (and also cmdline_error(), which is
1311  * defined differently in various places and required _by_
1312  * cmdline.c).
1313  *
1314  * Note that cmdline_process_param takes a const option string, but a
1315  * writable argument string. That's not a mistake - that's so it can
1316  * zero out password arguments in the hope of not having them show up
1317  * avoidably in Unix 'ps'.
1318  */
1319 int cmdline_process_param(const char *, char *, int, Conf *);
1320 void cmdline_run_saved(Conf *);
1321 void cmdline_cleanup(void);
1322 int cmdline_get_passwd_input(prompts_t *p, const unsigned char *in, int inlen);
1323 #define TOOLTYPE_FILETRANSFER 1
1324 #define TOOLTYPE_NONNETWORK 2
1325 extern int cmdline_tooltype;
1326
1327 void cmdline_error(const char *, ...);
1328
1329 /*
1330  * Exports from config.c.
1331  */
1332 struct controlbox;
1333 union control;
1334 void conf_radiobutton_handler(union control *ctrl, void *dlg,
1335                               void *data, int event);
1336 #define CHECKBOX_INVERT (1<<30)
1337 void conf_checkbox_handler(union control *ctrl, void *dlg,
1338                            void *data, int event);
1339 void conf_editbox_handler(union control *ctrl, void *dlg,
1340                           void *data, int event);
1341 void conf_filesel_handler(union control *ctrl, void *dlg,
1342                           void *data, int event);
1343 void conf_fontsel_handler(union control *ctrl, void *dlg,
1344                           void *data, int event);
1345 void setup_config_box(struct controlbox *b, int midsession,
1346                       int protocol, int protcfginfo);
1347
1348 /*
1349  * Exports from minibidi.c.
1350  */
1351 typedef struct bidi_char {
1352     unsigned int origwc, wc;
1353     unsigned short index;
1354 } bidi_char;
1355 int do_bidi(bidi_char *line, int count);
1356 int do_shape(bidi_char *line, bidi_char *to, int count);
1357 int is_rtl(int c);
1358
1359 /*
1360  * X11 auth mechanisms we know about.
1361  */
1362 enum {
1363     X11_NO_AUTH,
1364     X11_MIT,                           /* MIT-MAGIC-COOKIE-1 */
1365     X11_XDM,                           /* XDM-AUTHORIZATION-1 */
1366     X11_NAUTHS
1367 };
1368 extern const char *const x11_authnames[];  /* declared in x11fwd.c */
1369
1370 /*
1371  * Miscellaneous exports from the platform-specific code.
1372  *
1373  * filename_serialise and filename_deserialise have the same semantics
1374  * as fontspec_serialise and fontspec_deserialise above.
1375  */
1376 Filename *filename_from_str(const char *string);
1377 const char *filename_to_str(const Filename *fn);
1378 int filename_equal(const Filename *f1, const Filename *f2);
1379 int filename_is_null(const Filename *fn);
1380 Filename *filename_copy(const Filename *fn);
1381 void filename_free(Filename *fn);
1382 int filename_serialise(const Filename *f, void *data);
1383 Filename *filename_deserialise(void *data, int maxsize, int *used);
1384 char *get_username(void);              /* return value needs freeing */
1385 char *get_random_data(int bytes, const char *device); /* used in cmdgen.c */
1386 char filename_char_sanitise(char c);   /* rewrite special pathname chars */
1387
1388 /*
1389  * Exports and imports from timing.c.
1390  *
1391  * schedule_timer() asks the front end to schedule a callback to a
1392  * timer function in a given number of ticks. The returned value is
1393  * the time (in ticks since an arbitrary offset) at which the
1394  * callback can be expected. This value will also be passed as the
1395  * `now' parameter to the callback function. Hence, you can (for
1396  * example) schedule an event at a particular time by calling
1397  * schedule_timer() and storing the return value in your context
1398  * structure as the time when that event is due. The first time a
1399  * callback function gives you that value or more as `now', you do
1400  * the thing.
1401  * 
1402  * expire_timer_context() drops all current timers associated with
1403  * a given value of ctx (for when you're about to free ctx).
1404  * 
1405  * run_timers() is called from the front end when it has reason to
1406  * think some timers have reached their moment, or when it simply
1407  * needs to know how long to wait next. We pass it the time we
1408  * think it is. It returns TRUE and places the time when the next
1409  * timer needs to go off in `next', or alternatively it returns
1410  * FALSE if there are no timers at all pending.
1411  * 
1412  * timer_change_notify() must be supplied by the front end; it
1413  * notifies the front end that a new timer has been added to the
1414  * list which is sooner than any existing ones. It provides the
1415  * time when that timer needs to go off.
1416  * 
1417  * *** FRONT END IMPLEMENTORS NOTE:
1418  * 
1419  * There's an important subtlety in the front-end implementation of
1420  * the timer interface. When a front end is given a `next' value,
1421  * either returned from run_timers() or via timer_change_notify(),
1422  * it should ensure that it really passes _that value_ as the `now'
1423  * parameter to its next run_timers call. It should _not_ simply
1424  * call GETTICKCOUNT() to get the `now' parameter when invoking
1425  * run_timers().
1426  * 
1427  * The reason for this is that an OS's system clock might not agree
1428  * exactly with the timing mechanisms it supplies to wait for a
1429  * given interval. I'll illustrate this by the simple example of
1430  * Unix Plink, which uses timeouts to select() in a way which for
1431  * these purposes can simply be considered to be a wait() function.
1432  * Suppose, for the sake of argument, that this wait() function
1433  * tends to return early by 1%. Then a possible sequence of actions
1434  * is:
1435  * 
1436  *  - run_timers() tells the front end that the next timer firing
1437  *    is 10000ms from now.
1438  *  - Front end calls wait(10000ms), but according to
1439  *    GETTICKCOUNT() it has only waited for 9900ms.
1440  *  - Front end calls run_timers() again, passing time T-100ms as
1441  *    `now'.
1442  *  - run_timers() does nothing, and says the next timer firing is
1443  *    still 100ms from now.
1444  *  - Front end calls wait(100ms), which only waits for 99ms.
1445  *  - Front end calls run_timers() yet again, passing time T-1ms.
1446  *  - run_timers() says there's still 1ms to wait.
1447  *  - Front end calls wait(1ms).
1448  * 
1449  * If you're _lucky_ at this point, wait(1ms) will actually wait
1450  * for 1ms and you'll only have woken the program up three times.
1451  * If you're unlucky, wait(1ms) might do nothing at all due to
1452  * being below some minimum threshold, and you might find your
1453  * program spends the whole of the last millisecond tight-looping
1454  * between wait() and run_timers().
1455  * 
1456  * Instead, what you should do is to _save_ the precise `next'
1457  * value provided by run_timers() or via timer_change_notify(), and
1458  * use that precise value as the input to the next run_timers()
1459  * call. So:
1460  * 
1461  *  - run_timers() tells the front end that the next timer firing
1462  *    is at time T, 10000ms from now.
1463  *  - Front end calls wait(10000ms).
1464  *  - Front end then immediately calls run_timers() and passes it
1465  *    time T, without stopping to check GETTICKCOUNT() at all.
1466  * 
1467  * This guarantees that the program wakes up only as many times as
1468  * there are actual timer actions to be taken, and that the timing
1469  * mechanism will never send it into a tight loop.
1470  * 
1471  * (It does also mean that the timer action in the above example
1472  * will occur 100ms early, but this is not generally critical. And
1473  * the hypothetical 1% error in wait() will be partially corrected
1474  * for anyway when, _after_ run_timers() returns, you call
1475  * GETTICKCOUNT() and compare the result with the returned `next'
1476  * value to find out how long you have to make your next wait().)
1477  */
1478 typedef void (*timer_fn_t)(void *ctx, unsigned long now);
1479 unsigned long schedule_timer(int ticks, timer_fn_t fn, void *ctx);
1480 void expire_timer_context(void *ctx);
1481 int run_timers(unsigned long now, unsigned long *next);
1482 void timer_change_notify(unsigned long next);
1483 unsigned long timing_last_clock(void);
1484
1485 /*
1486  * Exports from callback.c.
1487  *
1488  * This provides a method of queuing function calls to be run at the
1489  * earliest convenience from the top-level event loop. Use it if
1490  * you're deep in a nested chain of calls and want to trigger an
1491  * action which will probably lead to your function being re-entered
1492  * recursively if you just call the initiating function the normal
1493  * way.
1494  *
1495  * Most front ends run the queued callbacks by simply calling
1496  * run_toplevel_callbacks() after handling each event in their
1497  * top-level event loop. However, if a front end doesn't have control
1498  * over its own event loop (e.g. because it's using GTK) then it can
1499  * instead request notifications when a callback is available, so that
1500  * it knows to ask its delegate event loop to do the same thing. Also,
1501  * if a front end needs to know whether a callback is pending without
1502  * actually running it (e.g. so as to put a zero timeout on a select()
1503  * call) then it can call toplevel_callback_pending(), which will
1504  * return true if at least one callback is in the queue.
1505  */
1506 typedef void (*toplevel_callback_fn_t)(void *ctx);
1507 void queue_toplevel_callback(toplevel_callback_fn_t fn, void *ctx);
1508 void run_toplevel_callbacks(void);
1509 int toplevel_callback_pending(void);
1510
1511 typedef void (*toplevel_callback_notify_fn_t)(void *frontend);
1512 void request_callback_notifications(toplevel_callback_notify_fn_t notify,
1513                                     void *frontend);
1514
1515 /*
1516  * Define no-op macros for the jump list functions, on platforms that
1517  * don't support them. (This is a bit of a hack, and it'd be nicer to
1518  * localise even the calls to those functions into the Windows front
1519  * end, but it'll do for the moment.)
1520  */
1521 #ifndef JUMPLIST_SUPPORTED
1522 #define add_session_to_jumplist(x) ((void)0)
1523 #define remove_session_from_jumplist(x) ((void)0)
1524 #endif
1525
1526 /* SURROGATE PAIR */
1527 #define HIGH_SURROGATE_START 0xd800
1528 #define HIGH_SURROGATE_END 0xdbff
1529 #define LOW_SURROGATE_START 0xdc00
1530 #define LOW_SURROGATE_END 0xdfff
1531
1532 /* These macros exist in the Windows API, so the environment may
1533  * provide them. If not, define them in terms of the above. */
1534 #ifndef IS_HIGH_SURROGATE
1535 #define IS_HIGH_SURROGATE(wch) (((wch) >= HIGH_SURROGATE_START) && \
1536                                 ((wch) <= HIGH_SURROGATE_END))
1537 #define IS_LOW_SURROGATE(wch) (((wch) >= LOW_SURROGATE_START) && \
1538                                ((wch) <= LOW_SURROGATE_END))
1539 #define IS_SURROGATE_PAIR(hs, ls) (IS_HIGH_SURROGATE(hs) && \
1540                                    IS_LOW_SURROGATE(ls))
1541 #endif
1542
1543
1544 #define IS_SURROGATE(wch) (((wch) >= HIGH_SURROGATE_START) &&   \
1545                            ((wch) <= LOW_SURROGATE_END))
1546 #define HIGH_SURROGATE_OF(codept) \
1547     (HIGH_SURROGATE_START + (((codept) - 0x10000) >> 10))
1548 #define LOW_SURROGATE_OF(codept) \
1549     (LOW_SURROGATE_START + (((codept) - 0x10000) & 0x3FF))
1550 #define FROM_SURROGATES(wch1, wch2) \
1551     (0x10000 + (((wch1) & 0x3FF) << 10) + ((wch2) & 0x3FF))
1552
1553 #endif