]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - ssh.h
first pass
[PuTTY.git] / ssh.h
1 #include <stdio.h>
2 #include <string.h>
3
4 #include "puttymem.h"
5 #include "tree234.h"
6 #include "network.h"
7 #include "int64.h"
8 #include "misc.h"
9
10 struct ssh_channel;
11 typedef struct ssh_tag *Ssh;
12
13 extern int sshfwd_write(struct ssh_channel *c, char *, int);
14 extern void sshfwd_write_eof(struct ssh_channel *c);
15 extern void sshfwd_unclean_close(struct ssh_channel *c, const char *err);
16 extern void sshfwd_unthrottle(struct ssh_channel *c, int bufsize);
17 Conf *sshfwd_get_conf(struct ssh_channel *c);
18 void sshfwd_x11_sharing_handover(struct ssh_channel *c,
19                                  void *share_cs, void *share_chan,
20                                  const char *peer_addr, int peer_port,
21                                  int endian, int protomajor, int protominor,
22                                  const void *initial_data, int initial_len);
23 void sshfwd_x11_is_local(struct ssh_channel *c);
24
25 extern Socket ssh_connection_sharing_init(const char *host, int port,
26                                           Conf *conf, Ssh ssh, void **state);
27 int ssh_share_test_for_upstream(const char *host, int port, Conf *conf);
28 void share_got_pkt_from_server(void *ctx, int type,
29                                unsigned char *pkt, int pktlen);
30 void share_activate(void *state, const char *server_verstring);
31 void sharestate_free(void *state);
32 int share_ndownstreams(void *state);
33
34 void ssh_connshare_log(Ssh ssh, int event, const char *logtext,
35                        const char *ds_err, const char *us_err);
36 unsigned ssh_alloc_sharing_channel(Ssh ssh, void *sharing_ctx);
37 void ssh_delete_sharing_channel(Ssh ssh, unsigned localid);
38 int ssh_alloc_sharing_rportfwd(Ssh ssh, const char *shost, int sport,
39                                void *share_ctx);
40 void ssh_sharing_queue_global_request(Ssh ssh, void *share_ctx);
41 struct X11FakeAuth *ssh_sharing_add_x11_display(Ssh ssh, int authtype,
42                                                 void *share_cs,
43                                                 void *share_chan);
44 void ssh_sharing_remove_x11_display(Ssh ssh, struct X11FakeAuth *auth);
45 void ssh_send_packet_from_downstream(Ssh ssh, unsigned id, int type,
46                                      const void *pkt, int pktlen,
47                                      const char *additional_log_text);
48 void ssh_sharing_downstream_connected(Ssh ssh, unsigned id,
49                                       const char *peerinfo);
50 void ssh_sharing_downstream_disconnected(Ssh ssh, unsigned id);
51 void ssh_sharing_logf(Ssh ssh, unsigned id, const char *logfmt, ...);
52 int ssh_agent_forwarding_permitted(Ssh ssh);
53 void share_setup_x11_channel(void *csv, void *chanv,
54                              unsigned upstream_id, unsigned server_id,
55                              unsigned server_currwin, unsigned server_maxpkt,
56                              unsigned client_adjusted_window,
57                              const char *peer_addr, int peer_port, int endian,
58                              int protomajor, int protominor,
59                              const void *initial_data, int initial_len);
60
61 /*
62  * Useful thing.
63  */
64 #ifndef lenof
65 #define lenof(x) ( (sizeof((x))) / (sizeof(*(x))))
66 #endif
67
68 #define SSH_CIPHER_IDEA         1
69 #define SSH_CIPHER_DES          2
70 #define SSH_CIPHER_3DES         3
71 #define SSH_CIPHER_BLOWFISH     6
72
73 #ifdef MSCRYPTOAPI
74 #define APIEXTRA 8
75 #else
76 #define APIEXTRA 0
77 #endif
78
79 #ifndef BIGNUM_INTERNAL
80 typedef void *Bignum;
81 #endif
82
83 struct RSAKey {
84     int bits;
85     int bytes;
86 #ifdef MSCRYPTOAPI
87     unsigned long exponent;
88     unsigned char *modulus;
89 #else
90     Bignum modulus;
91     Bignum exponent;
92     Bignum private_exponent;
93     Bignum p;
94     Bignum q;
95     Bignum iqmp;
96 #endif
97     char *comment;
98 };
99
100 struct dss_key {
101     Bignum p, q, g, y, x;
102 };
103
104 struct ec_curve;
105
106 struct ec_point {
107     const struct ec_curve *curve;
108     Bignum x, y;
109     Bignum z;  /* Jacobian denominator */
110     unsigned char infinity;
111 };
112
113 void ec_point_free(struct ec_point *point);
114
115 /* Weierstrass form curve */
116 struct ec_wcurve
117 {
118     Bignum a, b, n;
119     struct ec_point G;
120 };
121
122 /* Montgomery form curve */
123 struct ec_mcurve
124 {
125     Bignum a, b;
126     struct ec_point G;
127 };
128
129 /* Edwards form curve */
130 struct ec_ecurve
131 {
132     Bignum l, d;
133     struct ec_point B;
134 };
135
136 struct ec_curve {
137     enum { EC_WEIERSTRASS, EC_MONTGOMERY, EC_EDWARDS } type;
138     /* 'name' is the identifier of the curve when it has to appear in
139      * wire protocol encodings, as it does in e.g. the public key and
140      * signature formats for NIST curves. Curves which do not format
141      * their keys or signatures in this way just have name==NULL.
142      *
143      * 'textname' is non-NULL for all curves, and is a human-readable
144      * identification suitable for putting in log messages. */
145     const char *name, *textname;
146     unsigned int fieldBits;
147     Bignum p;
148     union {
149         struct ec_wcurve w;
150         struct ec_mcurve m;
151         struct ec_ecurve e;
152     };
153 };
154
155 const struct ssh_signkey *ec_alg_by_oid(int len, const void *oid,
156                                         const struct ec_curve **curve);
157 const unsigned char *ec_alg_oid(const struct ssh_signkey *alg, int *oidlen);
158 extern const int ec_nist_curve_lengths[], n_ec_nist_curve_lengths;
159 int ec_nist_alg_and_curve_by_bits(int bits,
160                                   const struct ec_curve **curve,
161                                   const struct ssh_signkey **alg);
162 int ec_ed_alg_and_curve_by_bits(int bits,
163                                 const struct ec_curve **curve,
164                                 const struct ssh_signkey **alg);
165
166 struct ssh_signkey;
167
168 struct ec_key {
169     const struct ssh_signkey *signalg;
170     struct ec_point publicKey;
171     Bignum privateKey;
172 };
173
174 struct ec_point *ec_public(const Bignum privateKey, const struct ec_curve *curve);
175
176 int makekey(const unsigned char *data, int len, struct RSAKey *result,
177             const unsigned char **keystr, int order);
178 int makeprivate(const unsigned char *data, int len, struct RSAKey *result);
179 int rsaencrypt(unsigned char *data, int length, struct RSAKey *key);
180 Bignum rsadecrypt(Bignum input, struct RSAKey *key);
181 void rsasign(unsigned char *data, int length, struct RSAKey *key);
182 void rsasanitise(struct RSAKey *key);
183 int rsastr_len(struct RSAKey *key);
184 void rsastr_fmt(char *str, struct RSAKey *key);
185 void rsa_fingerprint(char *str, int len, struct RSAKey *key);
186 int rsa_verify(struct RSAKey *key);
187 unsigned char *rsa_public_blob(struct RSAKey *key, int *len);
188 int rsa_public_blob_len(void *data, int maxlen);
189 void freersakey(struct RSAKey *key);
190
191 #ifndef PUTTY_UINT32_DEFINED
192 /* This makes assumptions about the int type. */
193 typedef unsigned int uint32;
194 #define PUTTY_UINT32_DEFINED
195 #endif
196 typedef uint32 word32;
197
198 unsigned long crc32_compute(const void *s, size_t len);
199 unsigned long crc32_update(unsigned long crc_input, const void *s, size_t len);
200
201 /* SSH CRC compensation attack detector */
202 void *crcda_make_context(void);
203 void crcda_free_context(void *handle);
204 int detect_attack(void *handle, unsigned char *buf, uint32 len,
205                   unsigned char *IV);
206
207 /*
208  * SSH2 RSA key exchange functions
209  */
210 struct ssh_hash;
211 void *ssh_rsakex_newkey(char *data, int len);
212 void ssh_rsakex_freekey(void *key);
213 int ssh_rsakex_klen(void *key);
214 void ssh_rsakex_encrypt(const struct ssh_hash *h, unsigned char *in, int inlen,
215                         unsigned char *out, int outlen,
216                         void *key);
217
218 /*
219  * SSH2 ECDH key exchange functions
220  */
221 struct ssh_kex;
222 const char *ssh_ecdhkex_curve_textname(const struct ssh_kex *kex);
223 void *ssh_ecdhkex_newkey(const struct ssh_kex *kex);
224 void ssh_ecdhkex_freekey(void *key);
225 char *ssh_ecdhkex_getpublic(void *key, int *len);
226 Bignum ssh_ecdhkex_getkey(void *key, char *remoteKey, int remoteKeyLen);
227
228 /*
229  * Helper function for k generation in DSA, reused in ECDSA
230  */
231 Bignum *dss_gen_k(const char *id_string, Bignum modulus, Bignum private_key,
232                   unsigned char *digest, int digest_len);
233
234 typedef struct {
235     uint32 h[4];
236 } MD5_Core_State;
237
238 struct MD5Context {
239 #ifdef MSCRYPTOAPI
240     unsigned long hHash;
241 #else
242     MD5_Core_State core;
243     unsigned char block[64];
244     int blkused;
245     uint32 lenhi, lenlo;
246 #endif
247 };
248
249 void MD5Init(struct MD5Context *context);
250 void MD5Update(struct MD5Context *context, unsigned char const *buf,
251                unsigned len);
252 void MD5Final(unsigned char digest[16], struct MD5Context *context);
253 void MD5Simple(void const *p, unsigned len, unsigned char output[16]);
254
255 void *hmacmd5_make_context(void *);
256 void hmacmd5_free_context(void *handle);
257 void hmacmd5_key(void *handle, void const *key, int len);
258 void hmacmd5_do_hmac(void *handle, unsigned char const *blk, int len,
259                      unsigned char *hmac);
260
261 typedef struct {
262     uint32 h[5];
263     unsigned char block[64];
264     int blkused;
265     uint32 lenhi, lenlo;
266 } SHA_State;
267 void SHA_Init(SHA_State * s);
268 void SHA_Bytes(SHA_State * s, const void *p, int len);
269 void SHA_Final(SHA_State * s, unsigned char *output);
270 void SHA_Simple(const void *p, int len, unsigned char *output);
271
272 void hmac_sha1_simple(void *key, int keylen, void *data, int datalen,
273                       unsigned char *output);
274 typedef struct {
275     uint32 h[8];
276     unsigned char block[64];
277     int blkused;
278     uint32 lenhi, lenlo;
279 } SHA256_State;
280 void SHA256_Init(SHA256_State * s);
281 void SHA256_Bytes(SHA256_State * s, const void *p, int len);
282 void SHA256_Final(SHA256_State * s, unsigned char *output);
283 void SHA256_Simple(const void *p, int len, unsigned char *output);
284
285 typedef struct {
286     uint64 h[8];
287     unsigned char block[128];
288     int blkused;
289     uint32 len[4];
290 } SHA512_State;
291 #define SHA384_State SHA512_State
292 void SHA512_Init(SHA512_State * s);
293 void SHA512_Bytes(SHA512_State * s, const void *p, int len);
294 void SHA512_Final(SHA512_State * s, unsigned char *output);
295 void SHA512_Simple(const void *p, int len, unsigned char *output);
296 void SHA384_Init(SHA384_State * s);
297 #define SHA384_Bytes(s, p, len) SHA512_Bytes(s, p, len)
298 void SHA384_Final(SHA384_State * s, unsigned char *output);
299 void SHA384_Simple(const void *p, int len, unsigned char *output);
300
301 struct ssh_mac;
302 struct ssh_cipher {
303     void *(*make_context)(void);
304     void (*free_context)(void *);
305     void (*sesskey) (void *, unsigned char *key);       /* for SSH-1 */
306     void (*encrypt) (void *, unsigned char *blk, int len);
307     void (*decrypt) (void *, unsigned char *blk, int len);
308     int blksize;
309     const char *text_name;
310 };
311
312 struct ssh2_cipher {
313     void *(*make_context)(void);
314     void (*free_context)(void *);
315     void (*setiv) (void *, unsigned char *key); /* for SSH-2 */
316     void (*setkey) (void *, unsigned char *key);/* for SSH-2 */
317     void (*encrypt) (void *, unsigned char *blk, int len);
318     void (*decrypt) (void *, unsigned char *blk, int len);
319     /* Ignored unless SSH_CIPHER_SEPARATE_LENGTH flag set */
320     void (*encrypt_length) (void *, unsigned char *blk, int len, unsigned long seq);
321     void (*decrypt_length) (void *, unsigned char *blk, int len, unsigned long seq);
322     const char *name;
323     int blksize;
324     /* real_keybits is the number of bits of entropy genuinely used by
325      * the cipher scheme; it's used for deciding how big a
326      * Diffie-Hellman group is needed to exchange a key for the
327      * cipher. */
328     int real_keybits;
329     /* padded_keybytes is the number of bytes of key data expected as
330      * input to the setkey function; it's used for deciding how much
331      * data needs to be generated from the post-kex generation of key
332      * material. In a sensible cipher which uses all its key bytes for
333      * real work, this will just be real_keybits/8, but in DES-type
334      * ciphers which ignore one bit in each byte, it'll be slightly
335      * different. */
336     int padded_keybytes;
337     unsigned int flags;
338 #define SSH_CIPHER_IS_CBC       1
339 #define SSH_CIPHER_SEPARATE_LENGTH      2
340     const char *text_name;
341     /* If set, this takes priority over other MAC. */
342     const struct ssh_mac *required_mac;
343 };
344
345 struct ssh2_ciphers {
346     int nciphers;
347     const struct ssh2_cipher *const *list;
348 };
349
350 struct ssh_mac {
351     /* Passes in the cipher context */
352     void *(*make_context)(void *);
353     void (*free_context)(void *);
354     void (*setkey) (void *, unsigned char *key);
355     /* whole-packet operations */
356     void (*generate) (void *, unsigned char *blk, int len, unsigned long seq);
357     int (*verify) (void *, unsigned char *blk, int len, unsigned long seq);
358     /* partial-packet operations */
359     void (*start) (void *);
360     void (*bytes) (void *, unsigned char const *, int);
361     void (*genresult) (void *, unsigned char *);
362     int (*verresult) (void *, unsigned char const *);
363     const char *name, *etm_name;
364     int len, keylen;
365     const char *text_name;
366 };
367
368 struct ssh_hash {
369     void *(*init)(void); /* also allocates context */
370     void *(*copy)(const void *);
371     void (*bytes)(void *, const void *, int);
372     void (*final)(void *, unsigned char *); /* also frees context */
373     void (*free)(void *);
374     int hlen; /* output length in bytes */
375     const char *text_name;
376 };   
377
378 struct ssh_kex {
379     const char *name, *groupname;
380     enum { KEXTYPE_DH, KEXTYPE_RSA, KEXTYPE_ECDH } main_type;
381     const struct ssh_hash *hash;
382     const void *extra;                 /* private to the kex methods */
383 };
384
385 struct ssh_kexes {
386     int nkexes;
387     const struct ssh_kex *const *list;
388 };
389
390 struct ssh_signkey {
391     void *(*newkey) (const struct ssh_signkey *self,
392                      const char *data, int len);
393     void (*freekey) (void *key);
394     char *(*fmtkey) (void *key);
395     unsigned char *(*public_blob) (void *key, int *len);
396     unsigned char *(*private_blob) (void *key, int *len);
397     void *(*createkey) (const struct ssh_signkey *self,
398                         const unsigned char *pub_blob, int pub_len,
399                         const unsigned char *priv_blob, int priv_len);
400     void *(*openssh_createkey) (const struct ssh_signkey *self,
401                                 const unsigned char **blob, int *len);
402     int (*openssh_fmtkey) (void *key, unsigned char *blob, int len);
403     /* OpenSSH private key blobs, as created by openssh_fmtkey and
404      * consumed by openssh_createkey, always (at least so far...) take
405      * the form of a number of SSH-2 strings / mpints concatenated
406      * end-to-end. Because the new-style OpenSSH private key format
407      * stores those blobs without a containing string wrapper, we need
408      * to know how many strings each one consists of, so that we can
409      * skip over the right number to find the next key in the file.
410      * openssh_private_npieces gives that information. */
411     int openssh_private_npieces;
412     int (*pubkey_bits) (const struct ssh_signkey *self,
413                         const void *blob, int len);
414     int (*verifysig) (void *key, const char *sig, int siglen,
415                       const char *data, int datalen);
416     unsigned char *(*sign) (void *key, const char *data, int datalen,
417                             int *siglen);
418     const char *name;
419     const char *keytype;               /* for host key cache */
420     const void *extra;                 /* private to the public key methods */
421 };
422
423 struct ssh_compress {
424     const char *name;
425     /* For zlib@openssh.com: if non-NULL, this name will be considered once
426      * userauth has completed successfully. */
427     const char *delayed_name;
428     void *(*compress_init) (void);
429     void (*compress_cleanup) (void *);
430     int (*compress) (void *, unsigned char *block, int len,
431                      unsigned char **outblock, int *outlen);
432     void *(*decompress_init) (void);
433     void (*decompress_cleanup) (void *);
434     int (*decompress) (void *, unsigned char *block, int len,
435                        unsigned char **outblock, int *outlen);
436     int (*disable_compression) (void *);
437     const char *text_name;
438 };
439
440 struct ssh2_userkey {
441     const struct ssh_signkey *alg;     /* the key algorithm */
442     void *data;                        /* the key data */
443     char *comment;                     /* the key comment */
444 };
445
446 /* The maximum length of any hash algorithm used in kex. (bytes) */
447 #define SSH2_KEX_MAX_HASH_LEN (64) /* SHA-512 */
448
449 extern const struct ssh_cipher ssh_3des;
450 extern const struct ssh_cipher ssh_des;
451 extern const struct ssh_cipher ssh_blowfish_ssh1;
452 extern const struct ssh2_ciphers ssh2_3des;
453 extern const struct ssh2_ciphers ssh2_des;
454 extern const struct ssh2_ciphers ssh2_aes;
455 extern const struct ssh2_ciphers ssh2_blowfish;
456 extern const struct ssh2_ciphers ssh2_arcfour;
457 extern const struct ssh2_ciphers ssh2_ccp;
458 extern const struct ssh_hash ssh_sha1;
459 extern const struct ssh_hash ssh_sha256;
460 extern const struct ssh_hash ssh_sha384;
461 extern const struct ssh_hash ssh_sha512;
462 extern const struct ssh_kexes ssh_diffiehellman_group1;
463 extern const struct ssh_kexes ssh_diffiehellman_group14;
464 extern const struct ssh_kexes ssh_diffiehellman_gex;
465 extern const struct ssh_kexes ssh_rsa_kex;
466 extern const struct ssh_kexes ssh_ecdh_kex;
467 extern const struct ssh_signkey ssh_dss;
468 extern const struct ssh_signkey ssh_rsa;
469 extern const struct ssh_signkey ssh_ecdsa_ed25519;
470 extern const struct ssh_signkey ssh_ecdsa_nistp256;
471 extern const struct ssh_signkey ssh_ecdsa_nistp384;
472 extern const struct ssh_signkey ssh_ecdsa_nistp521;
473 extern const struct ssh_mac ssh_hmac_md5;
474 extern const struct ssh_mac ssh_hmac_sha1;
475 extern const struct ssh_mac ssh_hmac_sha1_buggy;
476 extern const struct ssh_mac ssh_hmac_sha1_96;
477 extern const struct ssh_mac ssh_hmac_sha1_96_buggy;
478 extern const struct ssh_mac ssh_hmac_sha256;
479
480 void *aes_make_context(void);
481 void aes_free_context(void *handle);
482 void aes128_key(void *handle, unsigned char *key);
483 void aes192_key(void *handle, unsigned char *key);
484 void aes256_key(void *handle, unsigned char *key);
485 void aes_iv(void *handle, unsigned char *iv);
486 void aes_ssh2_encrypt_blk(void *handle, unsigned char *blk, int len);
487 void aes_ssh2_decrypt_blk(void *handle, unsigned char *blk, int len);
488
489 /*
490  * PuTTY version number formatted as an SSH version string. 
491  */
492 extern const char sshver[];
493
494 /*
495  * Gross hack: pscp will try to start SFTP but fall back to scp1 if
496  * that fails. This variable is the means by which scp.c can reach
497  * into the SSH code and find out which one it got.
498  */
499 extern int ssh_fallback_cmd(void *handle);
500
501 #ifndef MSCRYPTOAPI
502 void SHATransform(word32 * digest, word32 * data);
503 #endif
504
505 int random_byte(void);
506 void random_add_noise(void *noise, int length);
507 void random_add_heavynoise(void *noise, int length);
508
509 void logevent(void *, const char *);
510
511 struct PortForwarding;
512
513 /* Allocate and register a new channel for port forwarding */
514 void *new_sock_channel(void *handle, struct PortForwarding *pf);
515 void ssh_send_port_open(void *channel, const char *hostname, int port,
516                         const char *org);
517
518 /* Exports from portfwd.c */
519 extern char *pfd_connect(struct PortForwarding **pf, char *hostname, int port,
520                          void *c, Conf *conf, int addressfamily);
521 extern void pfd_close(struct PortForwarding *);
522 extern int pfd_send(struct PortForwarding *, char *data, int len);
523 extern void pfd_send_eof(struct PortForwarding *);
524 extern void pfd_confirm(struct PortForwarding *);
525 extern void pfd_unthrottle(struct PortForwarding *);
526 extern void pfd_override_throttle(struct PortForwarding *, int enable);
527 struct PortListener;
528 /* desthost == NULL indicates dynamic (SOCKS) port forwarding */
529 extern char *pfl_listen(char *desthost, int destport, char *srcaddr,
530                         int port, void *backhandle, Conf *conf,
531                         struct PortListener **pl, int address_family);
532 extern void pfl_terminate(struct PortListener *);
533
534 /* Exports from x11fwd.c */
535 enum {
536     X11_TRANS_IPV4 = 0, X11_TRANS_IPV6 = 6, X11_TRANS_UNIX = 256
537 };
538 struct X11Display {
539     /* Broken-down components of the display name itself */
540     int unixdomain;
541     char *hostname;
542     int displaynum;
543     int screennum;
544     /* OSX sometimes replaces all the above with a full Unix-socket pathname */
545     char *unixsocketpath;
546
547     /* PuTTY networking SockAddr to connect to the display, and associated
548      * gubbins */
549     SockAddr addr;
550     int port;
551     char *realhost;
552
553     /* Our local auth details for talking to the real X display. */
554     int localauthproto;
555     unsigned char *localauthdata;
556     int localauthdatalen;
557 };
558 struct X11FakeAuth {
559     /* Auth details we invented for a virtual display on the SSH server. */
560     int proto;
561     unsigned char *data;
562     int datalen;
563     char *protoname;
564     char *datastring;
565
566     /* The encrypted form of the first block, in XDM-AUTHORIZATION-1.
567      * Used as part of the key when these structures are organised
568      * into a tree. See x11_invent_fake_auth for explanation. */
569     unsigned char *xa1_firstblock;
570
571     /*
572      * Used inside x11fwd.c to remember recently seen
573      * XDM-AUTHORIZATION-1 strings, to avoid replay attacks.
574      */
575     tree234 *xdmseen;
576
577     /*
578      * What to do with an X connection matching this auth data.
579      */
580     struct X11Display *disp;
581     void *share_cs, *share_chan;
582 };
583 void *x11_make_greeting(int endian, int protomajor, int protominor,
584                         int auth_proto, const void *auth_data, int auth_len,
585                         const char *peer_ip, int peer_port,
586                         int *outlen);
587 int x11_authcmp(void *av, void *bv); /* for putting X11FakeAuth in a tree234 */
588 /*
589  * x11_setup_display() parses the display variable and fills in an
590  * X11Display structure. Some remote auth details are invented;
591  * the supplied authtype parameter configures the preferred
592  * authorisation protocol to use at the remote end. The local auth
593  * details are looked up by calling platform_get_x11_auth.
594  */
595 extern struct X11Display *x11_setup_display(const char *display, Conf *);
596 void x11_free_display(struct X11Display *disp);
597 struct X11FakeAuth *x11_invent_fake_auth(tree234 *t, int authtype);
598 void x11_free_fake_auth(struct X11FakeAuth *auth);
599 struct X11Connection;                  /* opaque outside x11fwd.c */
600 struct X11Connection *x11_init(tree234 *authtree, void *, const char *, int);
601 extern void x11_close(struct X11Connection *);
602 extern int x11_send(struct X11Connection *, char *, int);
603 extern void x11_send_eof(struct X11Connection *s);
604 extern void x11_unthrottle(struct X11Connection *s);
605 extern void x11_override_throttle(struct X11Connection *s, int enable);
606 char *x11_display(const char *display);
607 /* Platform-dependent X11 functions */
608 extern void platform_get_x11_auth(struct X11Display *display, Conf *);
609     /* examine a mostly-filled-in X11Display and fill in localauth* */
610 extern const int platform_uses_x11_unix_by_default;
611     /* choose default X transport in the absence of a specified one */
612 SockAddr platform_get_x11_unix_address(const char *path, int displaynum);
613     /* make up a SockAddr naming the address for displaynum */
614 char *platform_get_x_display(void);
615     /* allocated local X display string, if any */
616 /* Callbacks in x11.c usable _by_ platform X11 functions */
617 /*
618  * This function does the job of platform_get_x11_auth, provided
619  * it is told where to find a normally formatted .Xauthority file:
620  * it opens that file, parses it to find an auth record which
621  * matches the display details in "display", and fills in the
622  * localauth fields.
623  *
624  * It is expected that most implementations of
625  * platform_get_x11_auth() will work by finding their system's
626  * .Xauthority file, adjusting the display details if necessary
627  * for local oddities like Unix-domain socket transport, and
628  * calling this function to do the rest of the work.
629  */
630 void x11_get_auth_from_authfile(struct X11Display *display,
631                                 const char *authfilename);
632 int x11_identify_auth_proto(const char *proto);
633 void *x11_dehexify(const char *hex, int *outlen);
634
635 Bignum copybn(Bignum b);
636 Bignum bn_power_2(int n);
637 void bn_restore_invariant(Bignum b);
638 Bignum bignum_from_long(unsigned long n);
639 void freebn(Bignum b);
640 Bignum modpow(Bignum base, Bignum exp, Bignum mod);
641 Bignum modmul(Bignum a, Bignum b, Bignum mod);
642 Bignum modsub(const Bignum a, const Bignum b, const Bignum n);
643 void decbn(Bignum n);
644 extern Bignum Zero, One;
645 Bignum bignum_from_bytes(const unsigned char *data, int nbytes);
646 Bignum bignum_from_bytes_le(const unsigned char *data, int nbytes);
647 Bignum bignum_random_in_range(const Bignum lower, const Bignum upper);
648 int ssh1_read_bignum(const unsigned char *data, int len, Bignum * result);
649 int bignum_bitcount(Bignum bn);
650 int ssh1_bignum_length(Bignum bn);
651 int ssh2_bignum_length(Bignum bn);
652 int bignum_byte(Bignum bn, int i);
653 int bignum_bit(Bignum bn, int i);
654 void bignum_set_bit(Bignum bn, int i, int value);
655 int ssh1_write_bignum(void *data, Bignum bn);
656 Bignum biggcd(Bignum a, Bignum b);
657 unsigned short bignum_mod_short(Bignum number, unsigned short modulus);
658 Bignum bignum_add_long(Bignum number, unsigned long addend);
659 Bignum bigadd(Bignum a, Bignum b);
660 Bignum bigsub(Bignum a, Bignum b);
661 Bignum bigmul(Bignum a, Bignum b);
662 Bignum bigmuladd(Bignum a, Bignum b, Bignum addend);
663 Bignum bigdiv(Bignum a, Bignum b);
664 Bignum bigmod(Bignum a, Bignum b);
665 Bignum modinv(Bignum number, Bignum modulus);
666 Bignum bignum_bitmask(Bignum number);
667 Bignum bignum_rshift(Bignum number, int shift);
668 Bignum bignum_lshift(Bignum number, int shift);
669 int bignum_cmp(Bignum a, Bignum b);
670 char *bignum_decimal(Bignum x);
671 Bignum bignum_from_decimal(const char *decimal);
672
673 #ifdef DEBUG
674 void diagbn(char *prefix, Bignum md);
675 #endif
676
677 int dh_is_gex(const struct ssh_kex *kex);
678 void *dh_setup_group(const struct ssh_kex *kex);
679 void *dh_setup_gex(Bignum pval, Bignum gval);
680 void dh_cleanup(void *);
681 Bignum dh_create_e(void *, int nbits);
682 const char *dh_validate_f(void *handle, Bignum f);
683 Bignum dh_find_K(void *, Bignum f);
684
685 int loadrsakey(const Filename *filename, struct RSAKey *key,
686                const char *passphrase, const char **errorstr);
687 int rsakey_encrypted(const Filename *filename, char **comment);
688 int rsakey_pubblob(const Filename *filename, void **blob, int *bloblen,
689                    char **commentptr, const char **errorstr);
690
691 int saversakey(const Filename *filename, struct RSAKey *key, char *passphrase);
692
693 extern int base64_decode_atom(const char *atom, unsigned char *out);
694 extern int base64_lines(int datalen);
695 extern void base64_encode_atom(const unsigned char *data, int n, char *out);
696 extern void base64_encode(FILE *fp, const unsigned char *data, int datalen,
697                           int cpl);
698
699 /* ssh2_load_userkey can return this as an error */
700 extern struct ssh2_userkey ssh2_wrong_passphrase;
701 #define SSH2_WRONG_PASSPHRASE (&ssh2_wrong_passphrase)
702
703 int ssh2_userkey_encrypted(const Filename *filename, char **comment);
704 struct ssh2_userkey *ssh2_load_userkey(const Filename *filename,
705                                        const char *passphrase,
706                                        const char **errorstr);
707 unsigned char *ssh2_userkey_loadpub(const Filename *filename, char **algorithm,
708                                     int *pub_blob_len, char **commentptr,
709                                     const char **errorstr);
710 int ssh2_save_userkey(const Filename *filename, struct ssh2_userkey *key,
711                       char *passphrase);
712 const struct ssh_signkey *find_pubkey_alg(const char *name);
713 const struct ssh_signkey *find_pubkey_alg_len(int namelen, const char *name);
714
715 enum {
716     SSH_KEYTYPE_UNOPENABLE,
717     SSH_KEYTYPE_UNKNOWN,
718     SSH_KEYTYPE_SSH1, SSH_KEYTYPE_SSH2,
719     /*
720      * The OpenSSH key types deserve a little explanation. OpenSSH has
721      * two physical formats for private key storage: an old PEM-based
722      * one largely dictated by their use of OpenSSL and full of ASN.1,
723      * and a new one using the same private key formats used over the
724      * wire for talking to ssh-agent. The old format can only support
725      * a subset of the key types, because it needs redesign for each
726      * key type, and after a while they decided to move to the new
727      * format so as not to have to do that.
728      *
729      * On input, key files are identified as either
730      * SSH_KEYTYPE_OPENSSH_PEM or SSH_KEYTYPE_OPENSSH_NEW, describing
731      * accurately which actual format the keys are stored in.
732      *
733      * On output, however, we default to following OpenSSH's own
734      * policy of writing out PEM-style keys for maximum backwards
735      * compatibility if the key type supports it, and otherwise
736      * switching to the new format. So the formats you can select for
737      * output are SSH_KEYTYPE_OPENSSH_NEW (forcing the new format for
738      * any key type), and SSH_KEYTYPE_OPENSSH_AUTO to use the oldest
739      * format supported by whatever key type you're writing out.
740      *
741      * So we have three type codes, but only two of them usable in any
742      * given circumstance. An input key file will never be identified
743      * as AUTO, only PEM or NEW; key export UIs should not be able to
744      * select PEM, only AUTO or NEW.
745      */
746     SSH_KEYTYPE_OPENSSH_AUTO,
747     SSH_KEYTYPE_OPENSSH_PEM,
748     SSH_KEYTYPE_OPENSSH_NEW,
749     SSH_KEYTYPE_SSHCOM,
750     /*
751      * Public-key-only formats, which we still want to be able to read
752      * for various purposes.
753      */
754     SSH_KEYTYPE_SSH1_PUBLIC,
755     SSH_KEYTYPE_SSH2_PUBLIC_RFC4716,
756     SSH_KEYTYPE_SSH2_PUBLIC_OPENSSH
757 };
758 char *ssh1_pubkey_str(struct RSAKey *ssh1key);
759 void ssh1_write_pubkey(FILE *fp, struct RSAKey *ssh1key);
760 char *ssh2_pubkey_openssh_str(struct ssh2_userkey *key);
761 void ssh2_write_pubkey(FILE *fp, const char *comment,
762                        const void *v_pub_blob, int pub_len,
763                        int keytype);
764 char *ssh2_fingerprint_blob(const void *blob, int bloblen);
765 char *ssh2_fingerprint(const struct ssh_signkey *alg, void *data);
766 int key_type(const Filename *filename);
767 const char *key_type_to_str(int type);
768
769 int import_possible(int type);
770 int import_target_type(int type);
771 int import_encrypted(const Filename *filename, int type, char **comment);
772 int import_ssh1(const Filename *filename, int type,
773                 struct RSAKey *key, char *passphrase, const char **errmsg_p);
774 struct ssh2_userkey *import_ssh2(const Filename *filename, int type,
775                                  char *passphrase, const char **errmsg_p);
776 int export_ssh1(const Filename *filename, int type,
777                 struct RSAKey *key, char *passphrase);
778 int export_ssh2(const Filename *filename, int type,
779                 struct ssh2_userkey *key, char *passphrase);
780
781 void des3_decrypt_pubkey(unsigned char *key, unsigned char *blk, int len);
782 void des3_encrypt_pubkey(unsigned char *key, unsigned char *blk, int len);
783 void des3_decrypt_pubkey_ossh(unsigned char *key, unsigned char *iv,
784                               unsigned char *blk, int len);
785 void des3_encrypt_pubkey_ossh(unsigned char *key, unsigned char *iv,
786                               unsigned char *blk, int len);
787 void aes256_encrypt_pubkey(unsigned char *key, unsigned char *blk,
788                            int len);
789 void aes256_decrypt_pubkey(unsigned char *key, unsigned char *blk,
790                            int len);
791
792 void des_encrypt_xdmauth(const unsigned char *key,
793                          unsigned char *blk, int len);
794 void des_decrypt_xdmauth(const unsigned char *key,
795                          unsigned char *blk, int len);
796
797 void openssh_bcrypt(const char *passphrase,
798                     const unsigned char *salt, int saltbytes,
799                     int rounds, unsigned char *out, int outbytes);
800
801 /*
802  * For progress updates in the key generation utility.
803  */
804 #define PROGFN_INITIALISE 1
805 #define PROGFN_LIN_PHASE 2
806 #define PROGFN_EXP_PHASE 3
807 #define PROGFN_PHASE_EXTENT 4
808 #define PROGFN_READY 5
809 #define PROGFN_PROGRESS 6
810 typedef void (*progfn_t) (void *param, int action, int phase, int progress);
811
812 int rsa_generate(struct RSAKey *key, int bits, progfn_t pfn,
813                  void *pfnparam);
814 int dsa_generate(struct dss_key *key, int bits, progfn_t pfn,
815                  void *pfnparam);
816 int ec_generate(struct ec_key *key, int bits, progfn_t pfn,
817                 void *pfnparam);
818 int ec_edgenerate(struct ec_key *key, int bits, progfn_t pfn,
819                   void *pfnparam);
820 Bignum primegen(int bits, int modulus, int residue, Bignum factor,
821                 int phase, progfn_t pfn, void *pfnparam, unsigned firstbits);
822 void invent_firstbits(unsigned *one, unsigned *two);
823
824
825 /*
826  * zlib compression.
827  */
828 void *zlib_compress_init(void);
829 void zlib_compress_cleanup(void *);
830 void *zlib_decompress_init(void);
831 void zlib_decompress_cleanup(void *);
832 int zlib_compress_block(void *, unsigned char *block, int len,
833                         unsigned char **outblock, int *outlen);
834 int zlib_decompress_block(void *, unsigned char *block, int len,
835                           unsigned char **outblock, int *outlen);
836
837 /*
838  * Connection-sharing API provided by platforms. This function must
839  * either:
840  *  - return SHARE_NONE and do nothing
841  *  - return SHARE_DOWNSTREAM and set *sock to a Socket connected to
842  *    downplug
843  *  - return SHARE_UPSTREAM and set *sock to a Socket connected to
844  *    upplug.
845  */
846 enum { SHARE_NONE, SHARE_DOWNSTREAM, SHARE_UPSTREAM };
847 int platform_ssh_share(const char *name, Conf *conf,
848                        Plug downplug, Plug upplug, Socket *sock,
849                        char **logtext, char **ds_err, char **us_err,
850                        int can_upstream, int can_downstream);
851 void platform_ssh_share_cleanup(const char *name);
852
853 /*
854  * SSH-1 message type codes.
855  */
856 #define SSH1_MSG_DISCONNECT                       1     /* 0x1 */
857 #define SSH1_SMSG_PUBLIC_KEY                      2     /* 0x2 */
858 #define SSH1_CMSG_SESSION_KEY                     3     /* 0x3 */
859 #define SSH1_CMSG_USER                            4     /* 0x4 */
860 #define SSH1_CMSG_AUTH_RSA                        6     /* 0x6 */
861 #define SSH1_SMSG_AUTH_RSA_CHALLENGE              7     /* 0x7 */
862 #define SSH1_CMSG_AUTH_RSA_RESPONSE               8     /* 0x8 */
863 #define SSH1_CMSG_AUTH_PASSWORD                   9     /* 0x9 */
864 #define SSH1_CMSG_REQUEST_PTY                     10    /* 0xa */
865 #define SSH1_CMSG_WINDOW_SIZE                     11    /* 0xb */
866 #define SSH1_CMSG_EXEC_SHELL                      12    /* 0xc */
867 #define SSH1_CMSG_EXEC_CMD                        13    /* 0xd */
868 #define SSH1_SMSG_SUCCESS                         14    /* 0xe */
869 #define SSH1_SMSG_FAILURE                         15    /* 0xf */
870 #define SSH1_CMSG_STDIN_DATA                      16    /* 0x10 */
871 #define SSH1_SMSG_STDOUT_DATA                     17    /* 0x11 */
872 #define SSH1_SMSG_STDERR_DATA                     18    /* 0x12 */
873 #define SSH1_CMSG_EOF                             19    /* 0x13 */
874 #define SSH1_SMSG_EXIT_STATUS                     20    /* 0x14 */
875 #define SSH1_MSG_CHANNEL_OPEN_CONFIRMATION        21    /* 0x15 */
876 #define SSH1_MSG_CHANNEL_OPEN_FAILURE             22    /* 0x16 */
877 #define SSH1_MSG_CHANNEL_DATA                     23    /* 0x17 */
878 #define SSH1_MSG_CHANNEL_CLOSE                    24    /* 0x18 */
879 #define SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION       25    /* 0x19 */
880 #define SSH1_SMSG_X11_OPEN                        27    /* 0x1b */
881 #define SSH1_CMSG_PORT_FORWARD_REQUEST            28    /* 0x1c */
882 #define SSH1_MSG_PORT_OPEN                        29    /* 0x1d */
883 #define SSH1_CMSG_AGENT_REQUEST_FORWARDING        30    /* 0x1e */
884 #define SSH1_SMSG_AGENT_OPEN                      31    /* 0x1f */
885 #define SSH1_MSG_IGNORE                           32    /* 0x20 */
886 #define SSH1_CMSG_EXIT_CONFIRMATION               33    /* 0x21 */
887 #define SSH1_CMSG_X11_REQUEST_FORWARDING          34    /* 0x22 */
888 #define SSH1_CMSG_AUTH_RHOSTS_RSA                 35    /* 0x23 */
889 #define SSH1_MSG_DEBUG                            36    /* 0x24 */
890 #define SSH1_CMSG_REQUEST_COMPRESSION             37    /* 0x25 */
891 #define SSH1_CMSG_AUTH_TIS                        39    /* 0x27 */
892 #define SSH1_SMSG_AUTH_TIS_CHALLENGE              40    /* 0x28 */
893 #define SSH1_CMSG_AUTH_TIS_RESPONSE               41    /* 0x29 */
894 #define SSH1_CMSG_AUTH_CCARD                      70    /* 0x46 */
895 #define SSH1_SMSG_AUTH_CCARD_CHALLENGE            71    /* 0x47 */
896 #define SSH1_CMSG_AUTH_CCARD_RESPONSE             72    /* 0x48 */
897
898 #define SSH1_AUTH_RHOSTS                          1     /* 0x1 */
899 #define SSH1_AUTH_RSA                             2     /* 0x2 */
900 #define SSH1_AUTH_PASSWORD                        3     /* 0x3 */
901 #define SSH1_AUTH_RHOSTS_RSA                      4     /* 0x4 */
902 #define SSH1_AUTH_TIS                             5     /* 0x5 */
903 #define SSH1_AUTH_CCARD                           16    /* 0x10 */
904
905 #define SSH1_PROTOFLAG_SCREEN_NUMBER              1     /* 0x1 */
906 /* Mask for protoflags we will echo back to server if seen */
907 #define SSH1_PROTOFLAGS_SUPPORTED                 0     /* 0x1 */
908
909 /*
910  * SSH-2 message type codes.
911  */
912 #define SSH2_MSG_DISCONNECT                       1     /* 0x1 */
913 #define SSH2_MSG_IGNORE                           2     /* 0x2 */
914 #define SSH2_MSG_UNIMPLEMENTED                    3     /* 0x3 */
915 #define SSH2_MSG_DEBUG                            4     /* 0x4 */
916 #define SSH2_MSG_SERVICE_REQUEST                  5     /* 0x5 */
917 #define SSH2_MSG_SERVICE_ACCEPT                   6     /* 0x6 */
918 #define SSH2_MSG_KEXINIT                          20    /* 0x14 */
919 #define SSH2_MSG_NEWKEYS                          21    /* 0x15 */
920 #define SSH2_MSG_KEXDH_INIT                       30    /* 0x1e */
921 #define SSH2_MSG_KEXDH_REPLY                      31    /* 0x1f */
922 #define SSH2_MSG_KEX_DH_GEX_REQUEST_OLD           30    /* 0x1e */
923 #define SSH2_MSG_KEX_DH_GEX_REQUEST               34    /* 0x22 */
924 #define SSH2_MSG_KEX_DH_GEX_GROUP                 31    /* 0x1f */
925 #define SSH2_MSG_KEX_DH_GEX_INIT                  32    /* 0x20 */
926 #define SSH2_MSG_KEX_DH_GEX_REPLY                 33    /* 0x21 */
927 #define SSH2_MSG_KEXRSA_PUBKEY                    30    /* 0x1e */
928 #define SSH2_MSG_KEXRSA_SECRET                    31    /* 0x1f */
929 #define SSH2_MSG_KEXRSA_DONE                      32    /* 0x20 */
930 #define SSH2_MSG_KEX_ECDH_INIT                    30    /* 0x1e */
931 #define SSH2_MSG_KEX_ECDH_REPLY                   31    /* 0x1f */
932 #define SSH2_MSG_KEX_ECMQV_INIT                   30    /* 0x1e */
933 #define SSH2_MSG_KEX_ECMQV_REPLY                  31    /* 0x1f */
934 #define SSH2_MSG_USERAUTH_REQUEST                 50    /* 0x32 */
935 #define SSH2_MSG_USERAUTH_FAILURE                 51    /* 0x33 */
936 #define SSH2_MSG_USERAUTH_SUCCESS                 52    /* 0x34 */
937 #define SSH2_MSG_USERAUTH_BANNER                  53    /* 0x35 */
938 #define SSH2_MSG_USERAUTH_PK_OK                   60    /* 0x3c */
939 #define SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ        60    /* 0x3c */
940 #define SSH2_MSG_USERAUTH_INFO_REQUEST            60    /* 0x3c */
941 #define SSH2_MSG_USERAUTH_INFO_RESPONSE           61    /* 0x3d */
942 #define SSH2_MSG_GLOBAL_REQUEST                   80    /* 0x50 */
943 #define SSH2_MSG_REQUEST_SUCCESS                  81    /* 0x51 */
944 #define SSH2_MSG_REQUEST_FAILURE                  82    /* 0x52 */
945 #define SSH2_MSG_CHANNEL_OPEN                     90    /* 0x5a */
946 #define SSH2_MSG_CHANNEL_OPEN_CONFIRMATION        91    /* 0x5b */
947 #define SSH2_MSG_CHANNEL_OPEN_FAILURE             92    /* 0x5c */
948 #define SSH2_MSG_CHANNEL_WINDOW_ADJUST            93    /* 0x5d */
949 #define SSH2_MSG_CHANNEL_DATA                     94    /* 0x5e */
950 #define SSH2_MSG_CHANNEL_EXTENDED_DATA            95    /* 0x5f */
951 #define SSH2_MSG_CHANNEL_EOF                      96    /* 0x60 */
952 #define SSH2_MSG_CHANNEL_CLOSE                    97    /* 0x61 */
953 #define SSH2_MSG_CHANNEL_REQUEST                  98    /* 0x62 */
954 #define SSH2_MSG_CHANNEL_SUCCESS                  99    /* 0x63 */
955 #define SSH2_MSG_CHANNEL_FAILURE                  100   /* 0x64 */
956 #define SSH2_MSG_USERAUTH_GSSAPI_RESPONSE               60
957 #define SSH2_MSG_USERAUTH_GSSAPI_TOKEN                  61
958 #define SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE      63
959 #define SSH2_MSG_USERAUTH_GSSAPI_ERROR                  64
960 #define SSH2_MSG_USERAUTH_GSSAPI_ERRTOK                 65
961 #define SSH2_MSG_USERAUTH_GSSAPI_MIC                    66
962
963 /*
964  * SSH-1 agent messages.
965  */
966 #define SSH1_AGENTC_REQUEST_RSA_IDENTITIES    1
967 #define SSH1_AGENT_RSA_IDENTITIES_ANSWER      2
968 #define SSH1_AGENTC_RSA_CHALLENGE             3
969 #define SSH1_AGENT_RSA_RESPONSE               4
970 #define SSH1_AGENTC_ADD_RSA_IDENTITY          7
971 #define SSH1_AGENTC_REMOVE_RSA_IDENTITY       8
972 #define SSH1_AGENTC_REMOVE_ALL_RSA_IDENTITIES 9 /* openssh private? */
973
974 /*
975  * Messages common to SSH-1 and OpenSSH's SSH-2.
976  */
977 #define SSH_AGENT_FAILURE                    5
978 #define SSH_AGENT_SUCCESS                    6
979
980 /*
981  * OpenSSH's SSH-2 agent messages.
982  */
983 #define SSH2_AGENTC_REQUEST_IDENTITIES          11
984 #define SSH2_AGENT_IDENTITIES_ANSWER            12
985 #define SSH2_AGENTC_SIGN_REQUEST                13
986 #define SSH2_AGENT_SIGN_RESPONSE                14
987 #define SSH2_AGENTC_ADD_IDENTITY                17
988 #define SSH2_AGENTC_REMOVE_IDENTITY             18
989 #define SSH2_AGENTC_REMOVE_ALL_IDENTITIES       19
990
991 /*
992  * Assorted other SSH-related enumerations.
993  */
994 #define SSH2_DISCONNECT_HOST_NOT_ALLOWED_TO_CONNECT 1   /* 0x1 */
995 #define SSH2_DISCONNECT_PROTOCOL_ERROR            2     /* 0x2 */
996 #define SSH2_DISCONNECT_KEY_EXCHANGE_FAILED       3     /* 0x3 */
997 #define SSH2_DISCONNECT_HOST_AUTHENTICATION_FAILED 4    /* 0x4 */
998 #define SSH2_DISCONNECT_MAC_ERROR                 5     /* 0x5 */
999 #define SSH2_DISCONNECT_COMPRESSION_ERROR         6     /* 0x6 */
1000 #define SSH2_DISCONNECT_SERVICE_NOT_AVAILABLE     7     /* 0x7 */
1001 #define SSH2_DISCONNECT_PROTOCOL_VERSION_NOT_SUPPORTED 8        /* 0x8 */
1002 #define SSH2_DISCONNECT_HOST_KEY_NOT_VERIFIABLE   9     /* 0x9 */
1003 #define SSH2_DISCONNECT_CONNECTION_LOST           10    /* 0xa */
1004 #define SSH2_DISCONNECT_BY_APPLICATION            11    /* 0xb */
1005 #define SSH2_DISCONNECT_TOO_MANY_CONNECTIONS      12    /* 0xc */
1006 #define SSH2_DISCONNECT_AUTH_CANCELLED_BY_USER    13    /* 0xd */
1007 #define SSH2_DISCONNECT_NO_MORE_AUTH_METHODS_AVAILABLE 14       /* 0xe */
1008 #define SSH2_DISCONNECT_ILLEGAL_USER_NAME         15    /* 0xf */
1009
1010 #define SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED     1     /* 0x1 */
1011 #define SSH2_OPEN_CONNECT_FAILED                  2     /* 0x2 */
1012 #define SSH2_OPEN_UNKNOWN_CHANNEL_TYPE            3     /* 0x3 */
1013 #define SSH2_OPEN_RESOURCE_SHORTAGE               4     /* 0x4 */
1014
1015 #define SSH2_EXTENDED_DATA_STDERR                 1     /* 0x1 */
1016
1017 /*
1018  * Need this to warn about support for the original SSH-2 keyfile
1019  * format.
1020  */
1021 void old_keyfile_warning(void);