]> asedeno.scripts.mit.edu Git - PuTTY_svn.git/blob - putty.h
From RDB: telnet can now start up in passive mode, in which it
[PuTTY_svn.git] / putty.h
1 #ifndef PUTTY_PUTTY_H
2 #define PUTTY_PUTTY_H
3
4 #include "network.h"
5
6 #define PUTTY_REG_POS "Software\\SimonTatham\\PuTTY"
7 #define PUTTY_REG_PARENT "Software\\SimonTatham"
8 #define PUTTY_REG_PARENT_CHILD "PuTTY"
9 #define PUTTY_REG_GPARENT "Software"
10 #define PUTTY_REG_GPARENT_CHILD "SimonTatham"
11
12 /*
13  * Global variables. Most modules declare these `extern', but
14  * window.c will do `#define PUTTY_DO_GLOBALS' before including this
15  * module, and so will get them properly defined.
16  */
17 #ifdef PUTTY_DO_GLOBALS
18 #define GLOBAL
19 #else
20 #define GLOBAL extern
21 #endif
22
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 #define ATTR_RIGHTCURS 0x10000000UL    /* doubles as cursor-on-RHS indicator */
28
29 #define LATTR_NORM   0x00000000UL
30 #define LATTR_WIDE   0x01000000UL
31 #define LATTR_TOP    0x02000000UL
32 #define LATTR_BOT    0x03000000UL
33 #define LATTR_MODE   0x03000000UL
34
35 #define ATTR_ASCII   0x00000000UL      /* normal ASCII charset ESC ( B */
36 #define ATTR_GBCHR   0x00100000UL      /* UK variant   charset ESC ( A */
37 #define ATTR_LINEDRW 0x00200000UL      /* line drawing charset ESC ( 0 */
38
39 #define ATTR_BOLD    0x00000100UL
40 #define ATTR_UNDER   0x00000200UL
41 #define ATTR_REVERSE 0x00000400UL
42 #define ATTR_BLINK   0x00000800UL
43 #define ATTR_FGMASK  0x0000F000UL
44 #define ATTR_BGMASK  0x000F0000UL
45 #define ATTR_FGSHIFT 12
46 #define ATTR_BGSHIFT 16
47
48 #define ATTR_DEFAULT 0x00098000UL
49 #define ATTR_DEFFG   0x00008000UL
50 #define ATTR_DEFBG   0x00090000UL
51 #define ATTR_CUR_XOR 0x000BA000UL
52 #define ERASE_CHAR   (ATTR_DEFAULT | ' ')
53 #define ATTR_MASK    0xFFFFFF00UL
54 #define CHAR_MASK    0x000000FFUL
55 #define CSET_MASK    0x00F00000UL      /* mask for character set */
56
57 typedef HDC Context;
58 #define SEL_NL { 13, 10 }
59
60 GLOBAL int rows, cols, savelines;
61
62 GLOBAL int font_width, font_height;
63
64 #define INBUF_SIZE 2048
65 GLOBAL unsigned char inbuf[INBUF_SIZE];
66 GLOBAL int inbuf_head;
67
68 #define OUTBUF_SIZE 2048
69 #define OUTBUF_MASK (OUTBUF_SIZE-1)
70 GLOBAL unsigned char outbuf[OUTBUF_SIZE];
71 GLOBAL int outbuf_head, outbuf_reap;
72
73 GLOBAL int has_focus;
74
75 GLOBAL int in_vbell;
76 GLOBAL long vbell_timeout;
77
78 GLOBAL int app_cursor_keys, app_keypad_keys, vt52_mode;
79 GLOBAL int repeat_off, cr_lf_return;
80
81 GLOBAL int seen_key_event;
82 GLOBAL int seen_disp_event;
83
84 GLOBAL int session_closed;
85
86 #define LGXF_OVR  1                    /* existing logfile overwrite */
87 #define LGXF_APN  0                    /* existing logfile append */
88 #define LGXF_ASK -1                    /* existing logfile ask */
89 #define LGTYP_NONE  0                  /* logmode: no logging */
90 #define LGTYP_ASCII 1                  /* logmode: pure ascii */
91 #define LGTYP_DEBUG 2                  /* logmode: all chars of taffic */
92 GLOBAL char *logfile;
93
94 /*
95  * Window handles for the dialog boxes that can be running during a
96  * PuTTY session.
97  */
98 GLOBAL HWND logbox;
99
100 /*
101  * I've just looked in the windows standard headr files for WM_USER, there
102  * are hundreds of flags defined using the form WM_USER+123 so I've 
103  * renumbered this NETEVENT value and the two in window.c
104  */
105 #define WM_XUSER     (WM_USER + 0x2000)
106 #define WM_NETEVENT  (WM_XUSER + 5)
107
108 typedef enum {
109     TS_AYT, TS_BRK, TS_SYNCH, TS_EC, TS_EL, TS_GA, TS_NOP, TS_ABORT,
110     TS_AO, TS_IP, TS_SUSP, TS_EOR, TS_EOF, TS_LECHO, TS_RECHO, TS_PING
111 } Telnet_Special;
112
113 typedef enum {
114     MBT_NOTHING,
115     MBT_LEFT, MBT_MIDDLE, MBT_RIGHT,   /* `raw' button designations */
116     MBT_SELECT, MBT_EXTEND, MBT_PASTE, /* `cooked' button designations */
117     MBT_WHEEL_UP, MBT_WHEEL_DOWN       /* mouse wheel */
118 } Mouse_Button;
119
120 typedef enum {
121     MA_NOTHING, MA_CLICK, MA_2CLK, MA_3CLK, MA_DRAG, MA_RELEASE
122 } Mouse_Action;
123
124 typedef enum {
125     VT_XWINDOWS, VT_OEMANSI, VT_OEMONLY, VT_POORMAN
126 } VT_Mode;
127
128 enum {
129     /*
130      * Line discipline option states: off, on, up to the backend.
131      */
132     LD_YES, LD_NO, LD_BACKEND
133 };
134
135 enum {
136     /*
137      * Line discipline options which the backend might try to control.
138      */
139     LD_EDIT,                           /* local line editing */
140     LD_ECHO                            /* local echo */
141 };
142
143 enum {
144     /*
145      * Close On Exit behaviours. (cfg.close_on_exit)
146      */
147     COE_NEVER,                         /* Never close the window */
148     COE_NORMAL,                        /* Close window on "normal" (non-error) exits only */
149     COE_ALWAYS                         /* Always close the window */
150 };
151
152 typedef struct {
153     char *(*init) (char *host, int port, char **realhost);
154     void (*send) (char *buf, int len);
155     void (*size) (void);
156     void (*special) (Telnet_Special code);
157      Socket(*socket) (void);
158     int (*sendok) (void);
159     int (*ldisc) (int);
160     int default_port;
161 } Backend;
162
163 GLOBAL Backend *back;
164
165 extern struct backend_list {
166     int protocol;
167     char *name;
168     Backend *backend;
169 } backends[];
170
171 typedef struct {
172     /* Basic options */
173     char host[512];
174     int port;
175     enum { PROT_RAW, PROT_TELNET, PROT_RLOGIN, PROT_SSH } protocol;
176     int close_on_exit;
177     int warn_on_close;
178     int ping_interval;                 /* in seconds */
179     /* SSH options */
180     char remote_cmd[512];
181     char *remote_cmd_ptr;              /* might point to a larger command
182                                         * but never for loading/saving */
183     int nopty;
184     int compression;
185     int agentfwd;
186     enum { CIPHER_3DES, CIPHER_BLOWFISH, CIPHER_DES, CIPHER_AES } cipher;
187     char keyfile[FILENAME_MAX];
188     int sshprot;                       /* use v1 or v2 when both available */
189     int buggymac;                      /* MAC bug commmercial <=v2.3.x SSH2 */
190     int try_tis_auth;
191     int ssh_subsys;                    /* run a subsystem rather than a command */
192     /* Telnet options */
193     char termtype[32];
194     char termspeed[32];
195     char environmt[1024];              /* VAR\tvalue\0VAR\tvalue\0\0 */
196     char username[32];
197     char localusername[32];
198     int rfc_environ;
199     int passive_telnet;
200     /* Keyboard options */
201     int bksp_is_delete;
202     int rxvt_homeend;
203     int funky_type;
204     int no_applic_c;                   /* totally disable app cursor keys */
205     int no_applic_k;                   /* totally disable app keypad */
206     int app_cursor;
207     int app_keypad;
208     int nethack_keypad;
209     int alt_f4;                        /* is it special? */
210     int alt_space;                     /* is it special? */
211     int alt_only;                      /* is it special? */
212     int localecho;
213     int localedit;
214     int alwaysontop;
215     int scroll_on_key;
216     int scroll_on_disp;
217     int compose_key;
218     int ctrlaltkeys;
219     char wintitle[256];                /* initial window title */
220     /* Terminal options */
221     int savelines;
222     int dec_om;
223     int wrap_mode;
224     int lfhascr;
225     int cursor_type;                   /* 0=block 1=underline 2=vertical */
226     int blink_cur;
227     enum {
228         BELL_DISABLED, BELL_DEFAULT, BELL_VISUAL, BELL_WAVEFILE
229     } beep;
230     int bellovl;                       /* bell overload protection active? */
231     int bellovl_n;                     /* number of bells to cause overload */
232     int bellovl_t;                     /* time interval for overload (seconds) */
233     int bellovl_s;                     /* period of silence to re-enable bell (s) */
234     char bell_wavefile[FILENAME_MAX];
235     int scrollbar;
236     int locksize;
237     int bce;
238     int blinktext;
239     int win_name_always;
240     int width, height;
241     char font[64];
242     int fontisbold;
243     int fontheight;
244     int fontcharset;
245     char logfilename[FILENAME_MAX];
246     int logtype;
247     int logxfovr;
248     int hide_mouseptr;
249     int sunken_edge;
250     char answerback[256];
251     /* Colour options */
252     int try_palette;
253     int bold_colour;
254     unsigned char colours[22][3];
255     /* Selection options */
256     int mouse_is_xterm;
257     int rawcnp;
258     short wordness[256];
259     /* translations */
260     VT_Mode vtmode;
261     int xlat_enablekoiwin;
262     int xlat_88592w1250;
263     int xlat_88592cp852;
264     int xlat_capslockcyr;
265     /* X11 forwarding */
266     int x11_forward;
267     char x11_display[128];
268 } Config;
269
270 /*
271  * You can compile with -DSSH_DEFAULT to have ssh by default.
272  */
273 #ifndef SSH_DEFAULT
274 #define DEFAULT_PROTOCOL PROT_TELNET
275 #define DEFAULT_PORT 23
276 #else
277 #define DEFAULT_PROTOCOL PROT_SSH
278 #define DEFAULT_PORT 22
279 #endif
280
281 /*
282  * Some global flags denoting the type of application.
283  * 
284  * FLAG_VERBOSE is set when the user requests verbose details.
285  * 
286  * FLAG_STDERR is set in command-line applications (which have a
287  * functioning stderr that it makes sense to write to) and not in
288  * GUI applications (which don't).
289  * 
290  * FLAG_INTERACTIVE is set when a full interactive shell session is
291  * being run, _either_ because no remote command has been provided
292  * _or_ because the application is GUI and can't run non-
293  * interactively.
294  */
295 #define FLAG_VERBOSE     0x0001
296 #define FLAG_STDERR      0x0002
297 #define FLAG_INTERACTIVE 0x0004
298 GLOBAL int flags;
299
300 GLOBAL Config cfg;
301 GLOBAL int default_protocol;
302 GLOBAL int default_port;
303
304 struct RSAKey;                         /* be a little careful of scope */
305
306 /*
307  * Exports from window.c.
308  */
309 void request_resize(int, int, int);
310 void do_text(Context, int, int, char *, int, unsigned long, int);
311 void set_title(char *);
312 void set_icon(char *);
313 void set_sbar(int, int, int);
314 Context get_ctx(void);
315 void free_ctx(Context);
316 void palette_set(int, int, int, int);
317 void palette_reset(void);
318 void write_clip(void *, int, int);
319 void get_clip(void **, int *);
320 void optimised_move(int, int, int);
321 void set_raw_mouse_mode(int);
322 Mouse_Button translate_button(Mouse_Button b);
323 void connection_fatal(char *, ...);
324 void fatalbox(char *, ...);
325 void beep(int);
326 void begin_session(void);
327 void sys_cursor(int x, int y);
328 #define OPTIMISE_IS_SCROLL 1
329
330 /*
331  * Exports from noise.c.
332  */
333 void noise_get_heavy(void (*func) (void *, int));
334 void noise_get_light(void (*func) (void *, int));
335 void noise_regular(void);
336 void noise_ultralight(DWORD data);
337 void random_save_seed(void);
338 void random_destroy_seed(void);
339
340 /*
341  * Exports from windlg.c.
342  */
343 void defuse_showwindow(void);
344 int do_config(void);
345 int do_reconfig(HWND);
346 void do_defaults(char *, Config *);
347 void logevent(char *);
348 void showeventlog(HWND);
349 void showabout(HWND);
350 void verify_ssh_host_key(char *host, int port, char *keytype,
351                          char *keystr, char *fingerprint);
352 int askappend(char *filename);
353 void registry_cleanup(void);
354 void force_normal(HWND hwnd);
355
356 GLOBAL int nsessions;
357 GLOBAL char **sessions;
358
359 /*
360  * Exports from settings.c.
361  */
362 void save_settings(char *section, int do_host, Config * cfg);
363 void load_settings(char *section, int do_host, Config * cfg);
364 void get_sesslist(int allocate);
365
366 /*
367  * Exports from terminal.c.
368  */
369
370 void term_init(void);
371 void term_size(int, int, int);
372 void term_out(void);
373 void term_paint(Context, int, int, int, int);
374 void term_scroll(int, int);
375 void term_pwron(void);
376 void term_clrsb(void);
377 void term_mouse(Mouse_Button, Mouse_Action, int, int, int, int);
378 void term_deselect(void);
379 void term_update(void);
380 void term_invalidate(void);
381 void term_blink(int set_cursor);
382 void term_paste(void);
383 void term_nopaste(void);
384 int term_ldisc(int option);
385 void from_backend(int is_stderr, char *data, int len);
386 void logfopen(void);
387 void logfclose(void);
388 void term_copyall(void);
389
390 /*
391  * Exports from raw.c.
392  */
393
394 extern Backend raw_backend;
395
396 /*
397  * Exports from rlogin.c.
398  */
399
400 extern Backend rlogin_backend;
401
402 /*
403  * Exports from telnet.c.
404  */
405
406 extern Backend telnet_backend;
407
408 /*
409  * Exports from ssh.c.
410  */
411
412 extern int (*ssh_get_line) (const char *prompt, char *str, int maxlen,
413                             int is_pw);
414 extern Backend ssh_backend;
415
416 /*
417  * Exports from ldisc.c.
418  */
419
420 extern void ldisc_send(char *buf, int len);
421
422 /*
423  * Exports from sshrand.c.
424  */
425
426 void random_add_noise(void *noise, int length);
427 void random_init(void);
428 int random_byte(void);
429 void random_get_savedata(void **data, int *len);
430
431 /*
432  * Exports from misc.c.
433  */
434
435 #include "misc.h"
436
437 /*
438  * Exports from version.c.
439  */
440 extern char ver[];
441
442 /*
443  * Exports from sizetip.c.
444  */
445 void UpdateSizeTip(HWND src, int cx, int cy);
446 void EnableSizeTip(int bEnable);
447
448 /*
449  * Exports from xlat.c.
450  */
451 unsigned char xlat_kbd2tty(unsigned char c);
452 unsigned char xlat_tty2scr(unsigned char c);
453 unsigned char xlat_latkbd2win(unsigned char c);
454
455 /*
456  * Exports from mscrypto.c
457  */
458 #ifdef MSCRYPTOAPI
459 int crypto_startup();
460 void crypto_wrapup();
461 #endif
462
463 /*
464  * Exports from pageantc.c
465  */
466 void agent_query(void *in, int inlen, void **out, int *outlen);
467 int agent_exists(void);
468
469
470 #endif