blob: 8a9d0f6c607a20b6c0c27357f8705f4fb7f9f349 [file] [log] [blame]
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001/* $OpenBSD: packet.h,v 1.65 2015/01/28 21:15:47 djm Exp $ */
Ben Lindstrom05764b92002-03-05 01:53:02 +00002
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003/*
Damien Miller95def091999-11-25 00:26:21 +11004 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11005 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11007 * Interface for the packet protocol functions.
Damien Miller4af51302000-04-16 11:18:38 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110014 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100015
Damien Millerd4a8b7e1999-10-27 13:42:43 +100016#ifndef PACKET_H
17#define PACKET_H
18
Damien Miller99bd21e2006-03-15 11:11:28 +110019#include <termios.h>
20
markus@openbsd.org091c3022015-01-19 19:52:16 +000021#ifdef WITH_OPENSSL
22# include <openssl/bn.h>
23# ifdef OPENSSL_HAS_ECC
24# include <openssl/ec.h>
25# endif
Darren Tucker8ccb7392010-09-10 12:28:24 +100026#endif
markus@openbsd.org091c3022015-01-19 19:52:16 +000027#include <sys/signal.h>
28#include <sys/queue.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100029
markus@openbsd.org091c3022015-01-19 19:52:16 +000030struct kex;
31struct sshkey;
32struct sshbuf;
33struct session_state; /* private session data */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100034
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +000035#include "dispatch.h" /* typedef, DISPATCH_MAX */
36
markus@openbsd.orgf582f0e2015-01-19 20:30:23 +000037struct key_entry {
38 TAILQ_ENTRY(key_entry) next;
39 struct sshkey *key;
40};
41
markus@openbsd.org091c3022015-01-19 19:52:16 +000042struct ssh {
43 /* Session state */
44 struct session_state *state;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045
markus@openbsd.org091c3022015-01-19 19:52:16 +000046 /* Key exchange */
47 struct kex *kex;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048
markus@openbsd.org091c3022015-01-19 19:52:16 +000049 /* cached remote ip address and port*/
50 char *remote_ipaddr;
51 int remote_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +000053 /* Dispatcher table */
54 dispatch_fn *dispatch[DISPATCH_MAX];
55 /* number of packets to ignore in the dispatcher */
56 int dispatch_skip_packets;
57
markus@openbsd.org091c3022015-01-19 19:52:16 +000058 /* datafellows */
59 int compat;
markus@openbsd.orgf582f0e2015-01-19 20:30:23 +000060
61 /* Lists for private and public keys */
62 TAILQ_HEAD(, key_entry) private_keys;
63 TAILQ_HEAD(, key_entry) public_keys;
64
65 /* APP data */
66 void *app_data;
markus@openbsd.org091c3022015-01-19 19:52:16 +000067};
Ben Lindstromf6027d32002-03-22 01:42:04 +000068
markus@openbsd.org091c3022015-01-19 19:52:16 +000069struct ssh *ssh_alloc_session_state(void);
70struct ssh *ssh_packet_set_connection(struct ssh *, int, int);
71void ssh_packet_set_timeout(struct ssh *, int, int);
72int ssh_packet_stop_discard(struct ssh *);
73int ssh_packet_connection_af(struct ssh *);
74void ssh_packet_set_nonblocking(struct ssh *);
75int ssh_packet_get_connection_in(struct ssh *);
76int ssh_packet_get_connection_out(struct ssh *);
77void ssh_packet_close(struct ssh *);
78void ssh_packet_set_encryption_key(struct ssh *, const u_char *, u_int, int);
79void ssh_packet_set_protocol_flags(struct ssh *, u_int);
80u_int ssh_packet_get_protocol_flags(struct ssh *);
81int ssh_packet_start_compression(struct ssh *, int);
82void ssh_packet_set_tos(struct ssh *, int);
83void ssh_packet_set_interactive(struct ssh *, int, int, int);
84int ssh_packet_is_interactive(struct ssh *);
85void ssh_packet_set_server(struct ssh *);
86void ssh_packet_set_authenticated(struct ssh *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087
markus@openbsd.org091c3022015-01-19 19:52:16 +000088int ssh_packet_send1(struct ssh *);
89int ssh_packet_send2_wrapped(struct ssh *);
90int ssh_packet_send2(struct ssh *);
91
92int ssh_packet_read(struct ssh *);
93void ssh_packet_read_expect(struct ssh *, int type);
94int ssh_packet_read_poll(struct ssh *);
95int ssh_packet_read_poll1(struct ssh *, u_char *);
96int ssh_packet_read_poll2(struct ssh *, u_char *, u_int32_t *seqnr_p);
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +000097int ssh_packet_process_incoming(struct ssh *, const char *buf, u_int len);
markus@openbsd.org091c3022015-01-19 19:52:16 +000098int ssh_packet_read_seqnr(struct ssh *, u_char *, u_int32_t *seqnr_p);
99int ssh_packet_read_poll_seqnr(struct ssh *, u_char *, u_int32_t *seqnr_p);
100
101const void *ssh_packet_get_string_ptr(struct ssh *, u_int *length_ptr);
102void ssh_packet_disconnect(struct ssh *, const char *fmt, ...)
103 __attribute__((format(printf, 2, 3)))
104 __attribute__((noreturn));
105void ssh_packet_send_debug(struct ssh *, const char *fmt, ...) __attribute__((format(printf, 2, 3)));
106
107int ssh_set_newkeys(struct ssh *, int mode);
108void ssh_packet_get_bytes(struct ssh *, u_int64_t *, u_int64_t *);
109
110typedef void *(ssh_packet_comp_alloc_func)(void *, u_int, u_int);
111typedef void (ssh_packet_comp_free_func)(void *, void *);
112void ssh_packet_set_compress_hooks(struct ssh *, void *,
113 ssh_packet_comp_alloc_func *, ssh_packet_comp_free_func *);
114
115void ssh_packet_write_poll(struct ssh *);
116void ssh_packet_write_wait(struct ssh *);
117int ssh_packet_have_data_to_write(struct ssh *);
118int ssh_packet_not_very_much_data_to_write(struct ssh *);
119
120int ssh_packet_connection_is_on_socket(struct ssh *);
121int ssh_packet_remaining(struct ssh *);
122void ssh_packet_send_ignore(struct ssh *, int);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000124void tty_make_modes(int, struct termios *);
125void tty_parse_modes(int, int *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000126
markus@openbsd.org091c3022015-01-19 19:52:16 +0000127void ssh_packet_set_alive_timeouts(struct ssh *, int);
128int ssh_packet_inc_alive_timeouts(struct ssh *);
129int ssh_packet_set_maxsize(struct ssh *, u_int);
130u_int ssh_packet_get_maxsize(struct ssh *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000131
markus@openbsd.org091c3022015-01-19 19:52:16 +0000132int ssh_packet_get_state(struct ssh *, struct sshbuf *);
133int ssh_packet_set_state(struct ssh *, struct sshbuf *);
Damien Miller4af51302000-04-16 11:18:38 +1000134
markus@openbsd.org091c3022015-01-19 19:52:16 +0000135const char *ssh_remote_ipaddr(struct ssh *);
Damien Millera5539d22003-04-09 20:50:06 +1000136
markus@openbsd.org091c3022015-01-19 19:52:16 +0000137int ssh_packet_need_rekeying(struct ssh *);
138void ssh_packet_set_rekey_limits(struct ssh *, u_int32_t, time_t);
139time_t ssh_packet_get_rekey_timeout(struct ssh *);
Darren Tuckere841eb02009-07-06 07:11:13 +1000140
markus@openbsd.org091c3022015-01-19 19:52:16 +0000141/* XXX FIXME */
142void ssh_packet_backup_state(struct ssh *, struct ssh *);
143void ssh_packet_restore_state(struct ssh *, struct ssh *);
144
145void *ssh_packet_get_input(struct ssh *);
146void *ssh_packet_get_output(struct ssh *);
147
148/* new API */
149int sshpkt_start(struct ssh *ssh, u_char type);
150int sshpkt_send(struct ssh *ssh);
151int sshpkt_disconnect(struct ssh *, const char *fmt, ...) __attribute__((format(printf, 2, 3)));
152int sshpkt_add_padding(struct ssh *, u_char);
153
154int sshpkt_put(struct ssh *ssh, const void *v, size_t len);
155int sshpkt_putb(struct ssh *ssh, const struct sshbuf *b);
156int sshpkt_put_u8(struct ssh *ssh, u_char val);
157int sshpkt_put_u32(struct ssh *ssh, u_int32_t val);
158int sshpkt_put_u64(struct ssh *ssh, u_int64_t val);
159int sshpkt_put_string(struct ssh *ssh, const void *v, size_t len);
160int sshpkt_put_cstring(struct ssh *ssh, const void *v);
161int sshpkt_put_stringb(struct ssh *ssh, const struct sshbuf *v);
162int sshpkt_put_ec(struct ssh *ssh, const EC_POINT *v, const EC_GROUP *g);
163int sshpkt_put_bignum1(struct ssh *ssh, const BIGNUM *v);
164int sshpkt_put_bignum2(struct ssh *ssh, const BIGNUM *v);
165
166int sshpkt_get(struct ssh *ssh, void *valp, size_t len);
167int sshpkt_get_u8(struct ssh *ssh, u_char *valp);
168int sshpkt_get_u32(struct ssh *ssh, u_int32_t *valp);
169int sshpkt_get_u64(struct ssh *ssh, u_int64_t *valp);
170int sshpkt_get_string(struct ssh *ssh, u_char **valp, size_t *lenp);
171int sshpkt_get_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp);
172int sshpkt_get_cstring(struct ssh *ssh, char **valp, size_t *lenp);
173int sshpkt_get_ec(struct ssh *ssh, EC_POINT *v, const EC_GROUP *g);
174int sshpkt_get_bignum1(struct ssh *ssh, BIGNUM *v);
175int sshpkt_get_bignum2(struct ssh *ssh, BIGNUM *v);
176int sshpkt_get_end(struct ssh *ssh);
177const u_char *sshpkt_ptr(struct ssh *, size_t *lenp);
178
179/* OLD API */
180extern struct ssh *active_state;
181#include "opacket.h"
Darren Tuckerf7288d72009-06-21 18:12:20 +1000182
Damien Miller95def091999-11-25 00:26:21 +1100183#endif /* PACKET_H */