Move omission of SSH protocol setting in PuTTYtel into windlg.c and
[u/mdw/putty] / putty.h
CommitLineData
374330e2 1#ifndef PUTTY_PUTTY_H
2#define PUTTY_PUTTY_H
3
4#define PUTTY_REG_POS "Software\\SimonTatham\\PuTTY"
de3df031 5#define PUTTY_REG_PARENT "Software\\SimonTatham"
6#define PUTTY_REG_PARENT_CHILD "PuTTY"
7#define PUTTY_REG_GPARENT "Software"
8#define PUTTY_REG_GPARENT_CHILD "SimonTatham"
374330e2 9
10/*
11 * Global variables. Most modules declare these `extern', but
12 * window.c will do `#define PUTTY_DO_GLOBALS' before including this
13 * module, and so will get them properly defined.
14 */
15#ifdef PUTTY_DO_GLOBALS
16#define GLOBAL
17#else
18#define GLOBAL extern
19#endif
20
73251d5d 21GLOBAL HINSTANCE putty_inst;
22
374330e2 23#define ATTR_ACTCURS 0x80000000UL /* active cursor (block) */
24#define ATTR_PASCURS 0x40000000UL /* passive cursor (box) */
25#define ATTR_INVALID 0x20000000UL
26#define ATTR_WRAPPED 0x10000000UL
27
c9def1b8 28#define LATTR_NORM 0x00000000UL
29#define LATTR_WIDE 0x01000000UL
30#define LATTR_TOP 0x02000000UL
31#define LATTR_BOT 0x03000000UL
32#define LATTR_MODE 0x03000000UL
33
374330e2 34#define ATTR_ASCII 0x00000000UL /* normal ASCII charset ESC ( B */
35#define ATTR_GBCHR 0x00100000UL /* UK variant charset ESC ( A */
36#define ATTR_LINEDRW 0x00200000UL /* line drawing charset ESC ( 0 */
37
38#define ATTR_BOLD 0x00000100UL
39#define ATTR_UNDER 0x00000200UL
40#define ATTR_REVERSE 0x00000400UL
e14a5a13 41#define ATTR_BLINK 0x00000800UL
374330e2 42#define ATTR_FGMASK 0x0000F000UL
43#define ATTR_BGMASK 0x000F0000UL
44#define ATTR_FGSHIFT 12
45#define ATTR_BGSHIFT 16
46
47#define ATTR_DEFAULT 0x00098000UL
48#define ATTR_DEFFG 0x00008000UL
49#define ATTR_DEFBG 0x00090000UL
50#define ATTR_CUR_XOR 0x000BA000UL
51#define ERASE_CHAR (ATTR_DEFAULT | ' ')
52#define ATTR_MASK 0xFFFFFF00UL
53#define CHAR_MASK 0x000000FFUL
54
55typedef HDC Context;
56#define SEL_NL { 13, 10 }
57
58GLOBAL int rows, cols, savelines;
59
60GLOBAL int font_width, font_height;
61
c9def1b8 62#define c_write1(_C) do { if (inbuf_head >= INBUF_SIZE) term_out(); \
63 inbuf[inbuf_head++] = (_C) ; } while(0)
374330e2 64#define INBUF_SIZE 2048
374330e2 65GLOBAL unsigned char inbuf[INBUF_SIZE];
c9def1b8 66GLOBAL int inbuf_head;
374330e2 67
68#define OUTBUF_SIZE 2048
69#define OUTBUF_MASK (OUTBUF_SIZE-1)
70GLOBAL unsigned char outbuf[OUTBUF_SIZE];
71GLOBAL int outbuf_head, outbuf_reap;
72
73GLOBAL int has_focus;
74
c9def1b8 75GLOBAL int app_cursor_keys, app_keypad_keys, vt52_mode;
76GLOBAL int repeat_off, cr_lf_return;
374330e2 77
cabfd08c 78GLOBAL int seen_key_event;
79GLOBAL int seen_disp_event;
80
d85548fe 81GLOBAL int session_closed;
82
5fd04f07 83GLOBAL char *logfile;
84
e14a5a13 85/*
86 * I've just looked in the windows standard headr files for WM_USER, there
87 * are hundreds of flags defined using the form WM_USER+123 so I've
88 * renumbered this NETEVENT value and the two in window.c
89 */
90#define WM_XUSER (WM_USER + 0x2000)
91#define WM_NETEVENT (WM_XUSER + 5)
374330e2 92
93typedef enum {
94 TS_AYT, TS_BRK, TS_SYNCH, TS_EC, TS_EL, TS_GA, TS_NOP, TS_ABORT,
684d367c 95 TS_AO, TS_IP, TS_SUSP, TS_EOR, TS_EOF, TS_LECHO, TS_RECHO
374330e2 96} Telnet_Special;
97
98typedef enum {
99 MB_NOTHING, MB_SELECT, MB_EXTEND, MB_PASTE
100} Mouse_Button;
101
102typedef enum {
103 MA_NOTHING, MA_CLICK, MA_2CLK, MA_3CLK, MA_DRAG, MA_RELEASE
104} Mouse_Action;
105
106typedef enum {
107 VT_XWINDOWS, VT_OEMANSI, VT_OEMONLY, VT_POORMAN
108} VT_Mode;
109
110typedef struct {
111 char *(*init) (HWND hwnd, char *host, int port, char **realhost);
112 int (*msg) (WPARAM wParam, LPARAM lParam);
113 void (*send) (char *buf, int len);
114 void (*size) (void);
115 void (*special) (Telnet_Special code);
4017be6d 116 SOCKET (*socket) (void);
8ccc75b0 117 int (*sendok) (void);
97db3be4 118 int default_port;
374330e2 119} Backend;
120
121GLOBAL Backend *back;
122
297d398b 123extern struct backend_list {
89ee5268 124 int protocol;
125 char *name;
126 Backend *backend;
127} backends[];
128
374330e2 129typedef struct {
5bc238bb 130 void (*send) (char *buf, int len);
131} Ldisc;
132
133GLOBAL Ldisc *ldisc;
134
135typedef struct {
374330e2 136 /* Basic options */
137 char host[512];
138 int port;
5e1a8e27 139 enum { PROT_RAW, PROT_TELNET, PROT_SSH } protocol;
374330e2 140 int close_on_exit;
9ef49106 141 int warn_on_close;
fef97f43 142 /* SSH options */
6abbf9e3 143 char remote_cmd[512];
fef97f43 144 int nopty;
979310f1 145 int agentfwd;
9697bfd2 146 enum { CIPHER_3DES, CIPHER_BLOWFISH, CIPHER_DES } cipher;
7cca0d81 147 char keyfile[FILENAME_MAX];
adf799dd 148 int sshprot; /* use v1 or v2 when both available */
ccbfb941 149 int try_tis_auth;
374330e2 150 /* Telnet options */
151 char termtype[32];
152 char termspeed[32];
37508af4 153 char environmt[1024]; /* VAR\tvalue\0VAR\tvalue\0\0 */
374330e2 154 char username[32];
155 int rfc_environ;
156 /* Keyboard options */
157 int bksp_is_delete;
158 int rxvt_homeend;
c9def1b8 159 int funky_type;
374330e2 160 int app_cursor;
161 int app_keypad;
c5e9c988 162 int nethack_keypad;
163 int alt_f4; /* is it special? */
164 int alt_space; /* is it special? */
5bc238bb 165 int ldisc_term;
c9def1b8 166 int scroll_on_key;
9ca5da42 167 char wintitle[256]; /* initial window title */
374330e2 168 /* Terminal options */
169 int savelines;
170 int dec_om;
171 int wrap_mode;
fef97f43 172 int lfhascr;
c9def1b8 173 int blink_cur;
174 int beep;
175 int scrollbar;
176 int locksize;
177 int bce;
178 int blinktext;
374330e2 179 int win_name_always;
180 int width, height;
181 char font[64];
182 int fontisbold;
183 int fontheight;
14963b8f 184 int fontcharset;
374330e2 185 /* Colour options */
186 int try_palette;
187 int bold_colour;
188 unsigned char colours[22][3];
189 /* Selection options */
190 int mouse_is_xterm;
191 short wordness[256];
c9def1b8 192 /* translations */
193 VT_Mode vtmode;
14963b8f 194 int xlat_enablekoiwin;
d3d16feb 195 int xlat_88592w1250;
14963b8f 196 int xlat_capslockcyr;
374330e2 197} Config;
198
e277c42d 199/*
200 * You can compile with -DSSH_DEFAULT to have ssh by default.
201 */
202#ifndef SSH_DEFAULT
203#define DEFAULT_PROTOCOL PROT_TELNET
204#define DEFAULT_PORT 23
205#else
206#define DEFAULT_PROTOCOL PROT_SSH
207#define DEFAULT_PORT 22
208#endif
209
4017be6d 210/*
211 * Some global flags denoting the type of application.
67779be7 212 *
213 * FLAG_VERBOSE is set when the user requests verbose details.
214 *
215 * FLAG_STDERR is set in command-line applications (which have a
216 * functioning stderr that it makes sense to write to) and not in
217 * GUI applications (which don't).
218 *
219 * FLAG_INTERACTIVE is set when a full interactive shell session is
220 * being run, _either_ because no remote command has been provided
221 * _or_ because the application is GUI and can't run non-
222 * interactively.
4017be6d 223 */
67779be7 224#define FLAG_VERBOSE 0x0001
225#define FLAG_STDERR 0x0002
226#define FLAG_INTERACTIVE 0x0004
4017be6d 227GLOBAL int flags;
228
374330e2 229GLOBAL Config cfg;
e277c42d 230GLOBAL int default_protocol;
231GLOBAL int default_port;
374330e2 232
4e23b276 233struct RSAKey; /* be a little careful of scope */
234
374330e2 235/*
236 * Exports from window.c.
237 */
e14a5a13 238void request_resize (int, int, int);
c9def1b8 239void do_text (Context, int, int, char *, int, unsigned long, int);
374330e2 240void set_title (char *);
241void set_icon (char *);
242void set_sbar (int, int, int);
f67b4e85 243Context get_ctx(void);
374330e2 244void free_ctx (Context);
245void palette_set (int, int, int, int);
246void palette_reset (void);
f0df44da 247void write_clip (void *, int, int);
374330e2 248void get_clip (void **, int *);
249void optimised_move (int, int, int);
8d5de777 250void connection_fatal(char *, ...);
374330e2 251void fatalbox (char *, ...);
c9def1b8 252void beep (int);
6f34e365 253void begin_session(void);
ec8679e9 254void sys_cursor(int x, int y);
374330e2 255#define OPTIMISE_IS_SCROLL 1
256
257/*
258 * Exports from noise.c.
259 */
260void noise_get_heavy(void (*func) (void *, int));
261void noise_get_light(void (*func) (void *, int));
262void noise_ultralight(DWORD data);
263void random_save_seed(void);
de3df031 264void random_destroy_seed(void);
374330e2 265
266/*
267 * Exports from windlg.c.
268 */
269int do_config (void);
270int do_reconfig (HWND);
271void do_defaults (char *);
c5e9c988 272void logevent (char *);
273void showeventlog (HWND);
374330e2 274void showabout (HWND);
d4857987 275void verify_ssh_host_key(char *host, int port, char *keytype,
d5859615 276 char *keystr, char *fingerprint);
0a4aa984 277void get_sesslist(int allocate);
de3df031 278void registry_cleanup(void);
0a4aa984 279
7393a137 280GLOBAL int nsessions;
281GLOBAL char **sessions;
374330e2 282
283/*
284 * Exports from terminal.c.
285 */
286
287void term_init (void);
288void term_size (int, int, int);
289void term_out (void);
290void term_paint (Context, int, int, int, int);
291void term_scroll (int, int);
292void term_pwron (void);
293void term_clrsb (void);
294void term_mouse (Mouse_Button, Mouse_Action, int, int);
295void term_deselect (void);
296void term_update (void);
297void term_invalidate(void);
e14a5a13 298void term_blink(int set_cursor);
c9def1b8 299void term_paste(void);
300void term_nopaste(void);
374330e2 301
302/*
5e1a8e27 303 * Exports from raw.c.
304 */
305
3d9a14c9 306extern Backend raw_backend;
5e1a8e27 307
308/*
374330e2 309 * Exports from telnet.c.
310 */
311
c14776e8 312extern Backend telnet_backend;
374330e2 313
314/*
315 * Exports from ssh.c.
316 */
317
67779be7 318extern int (*ssh_get_password)(const char *prompt, char *str, int maxlen);
c14776e8 319extern Backend ssh_backend;
374330e2 320
321/*
5bc238bb 322 * Exports from ldisc.c.
323 */
324
325extern Ldisc ldisc_term, ldisc_simple;
326
327/*
374330e2 328 * Exports from sshrand.c.
329 */
330
331void random_add_noise(void *noise, int length);
332void random_init(void);
333int random_byte(void);
334void random_get_savedata(void **data, int *len);
335
336/*
337 * Exports from misc.c.
338 */
339
340/* #define MALLOC_LOG do this if you suspect putty of leaking memory */
341#ifdef MALLOC_LOG
342#define smalloc(z) (mlog(__FILE__,__LINE__), safemalloc(z))
343#define srealloc(y,z) (mlog(__FILE__,__LINE__), saferealloc(y,z))
344#define sfree(z) (mlog(__FILE__,__LINE__), safefree(z))
345void mlog(char *, int);
346#else
347#define smalloc safemalloc
348#define srealloc saferealloc
349#define sfree safefree
350#endif
351
352void *safemalloc(size_t);
353void *saferealloc(void *, size_t);
354void safefree(void *);
355
356/*
067a15ea 357 * Exports from version.c.
358 */
359extern char ver[];
360
361/*
b73fd1b1 362 * Exports from sizetip.c.
363 */
364void UpdateSizeTip(HWND src, int cx, int cy);
365void EnableSizeTip(int bEnable);
366
367/*
14963b8f 368 * Exports from xlat.c.
369 */
370unsigned char xlat_kbd2tty(unsigned char c);
371unsigned char xlat_tty2scr(unsigned char c);
372unsigned char xlat_latkbd2win(unsigned char c);
373
374/*
8f203108 375 * Exports from mscrypto.c
376 */
377#ifdef MSCRYPTOAPI
378int crypto_startup();
379void crypto_wrapup();
380#endif
381
382/*
5c58ad2d 383 * Exports from pageantc.c
384 */
385void agent_query(void *in, int inlen, void **out, int *outlen);
386int agent_exists(void);
387
388/*
374330e2 389 * A debug system.
390 */
391#ifdef DEBUG
392#include <stdarg.h>
393#define debug(x) (dprintf x)
394static void dprintf(char *fmt, ...) {
395 char buf[2048];
396 DWORD dw;
397 va_list ap;
398 static int gotconsole = 0;
399
400 if (!gotconsole) {
401 AllocConsole();
402 gotconsole = 1;
403 }
404
405 va_start(ap, fmt);
406 vsprintf(buf, fmt, ap);
407 WriteFile (GetStdHandle(STD_OUTPUT_HANDLE), buf, strlen(buf), &dw, NULL);
408 va_end(ap);
409}
410#else
411#define debug(x)
412#endif
413
414#endif