blob: c49d0c04a7904ae2ac849fc005c6ef50e55ca739 [file] [log] [blame]
markus@openbsd.org091c3022015-01-19 19:52:16 +00001#ifndef _OPACKET_H
2/* Written by Markus Friedl. Placed in the public domain. */
3
4/* Map old to new API */
5void ssh_packet_start(struct ssh *, u_char);
6void ssh_packet_put_char(struct ssh *, int ch);
7void ssh_packet_put_int(struct ssh *, u_int value);
8void ssh_packet_put_int64(struct ssh *, u_int64_t value);
markus@openbsd.org091c3022015-01-19 19:52:16 +00009void ssh_packet_put_bignum2(struct ssh *, BIGNUM * value);
10void ssh_packet_put_ecpoint(struct ssh *, const EC_GROUP *, const EC_POINT *);
11void ssh_packet_put_string(struct ssh *, const void *buf, u_int len);
12void ssh_packet_put_cstring(struct ssh *, const char *str);
13void ssh_packet_put_raw(struct ssh *, const void *buf, u_int len);
14void ssh_packet_send(struct ssh *);
15
16u_int ssh_packet_get_char(struct ssh *);
17u_int ssh_packet_get_int(struct ssh *);
18u_int64_t ssh_packet_get_int64(struct ssh *);
markus@openbsd.org091c3022015-01-19 19:52:16 +000019void ssh_packet_get_bignum2(struct ssh *, BIGNUM * value);
20void ssh_packet_get_ecpoint(struct ssh *, const EC_GROUP *, EC_POINT *);
21void *ssh_packet_get_string(struct ssh *, u_int *length_ptr);
22char *ssh_packet_get_cstring(struct ssh *, u_int *length_ptr);
23
24/* don't allow remaining bytes after the end of the message */
25#define ssh_packet_check_eom(ssh) \
26do { \
27 int _len = ssh_packet_remaining(ssh); \
28 if (_len > 0) { \
29 logit("Packet integrity error (%d bytes remaining) at %s:%d", \
30 _len ,__FILE__, __LINE__); \
31 ssh_packet_disconnect(ssh, \
32 "Packet integrity error."); \
33 } \
34} while (0)
35
36/* old API */
37void packet_close(void);
38u_int packet_get_char(void);
39u_int packet_get_int(void);
markus@openbsd.org091c3022015-01-19 19:52:16 +000040void packet_set_connection(int, int);
41int packet_read_seqnr(u_int32_t *);
42int packet_read_poll_seqnr(u_int32_t *);
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +000043void packet_process_incoming(const char *buf, u_int len);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +000044void packet_write_wait(void);
45void packet_write_poll(void);
46void packet_read_expect(int expected_type);
markus@openbsd.org091c3022015-01-19 19:52:16 +000047#define packet_set_timeout(timeout, count) \
48 ssh_packet_set_timeout(active_state, (timeout), (count))
49#define packet_connection_is_on_socket() \
50 ssh_packet_connection_is_on_socket(active_state)
51#define packet_set_nonblocking() \
52 ssh_packet_set_nonblocking(active_state)
53#define packet_get_connection_in() \
54 ssh_packet_get_connection_in(active_state)
55#define packet_get_connection_out() \
56 ssh_packet_get_connection_out(active_state)
57#define packet_set_protocol_flags(protocol_flags) \
58 ssh_packet_set_protocol_flags(active_state, (protocol_flags))
59#define packet_get_protocol_flags() \
60 ssh_packet_get_protocol_flags(active_state)
61#define packet_start_compression(level) \
62 ssh_packet_start_compression(active_state, (level))
markus@openbsd.org091c3022015-01-19 19:52:16 +000063#define packet_start(type) \
64 ssh_packet_start(active_state, (type))
65#define packet_put_char(value) \
66 ssh_packet_put_char(active_state, (value))
67#define packet_put_int(value) \
68 ssh_packet_put_int(active_state, (value))
69#define packet_put_int64(value) \
70 ssh_packet_put_int64(active_state, (value))
71#define packet_put_string( buf, len) \
72 ssh_packet_put_string(active_state, (buf), (len))
73#define packet_put_cstring(str) \
74 ssh_packet_put_cstring(active_state, (str))
75#define packet_put_raw(buf, len) \
76 ssh_packet_put_raw(active_state, (buf), (len))
markus@openbsd.org091c3022015-01-19 19:52:16 +000077#define packet_put_bignum2(value) \
78 ssh_packet_put_bignum2(active_state, (value))
79#define packet_send() \
80 ssh_packet_send(active_state)
81#define packet_read() \
82 ssh_packet_read(active_state)
markus@openbsd.org091c3022015-01-19 19:52:16 +000083#define packet_get_int64() \
84 ssh_packet_get_int64(active_state)
markus@openbsd.org091c3022015-01-19 19:52:16 +000085#define packet_get_bignum2(value) \
86 ssh_packet_get_bignum2(active_state, (value))
87#define packet_remaining() \
88 ssh_packet_remaining(active_state)
89#define packet_get_string(length_ptr) \
90 ssh_packet_get_string(active_state, (length_ptr))
91#define packet_get_string_ptr(length_ptr) \
92 ssh_packet_get_string_ptr(active_state, (length_ptr))
93#define packet_get_cstring(length_ptr) \
94 ssh_packet_get_cstring(active_state, (length_ptr))
Darren Tuckerdcc89972015-02-24 12:30:59 +110095void packet_send_debug(const char *, ...)
96 __attribute__((format(printf, 1, 2)));
97void packet_disconnect(const char *, ...)
98 __attribute__((format(printf, 1, 2)))
99 __attribute__((noreturn));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000100#define packet_have_data_to_write() \
101 ssh_packet_have_data_to_write(active_state)
102#define packet_not_very_much_data_to_write() \
103 ssh_packet_not_very_much_data_to_write(active_state)
104#define packet_set_interactive(interactive, qos_interactive, qos_bulk) \
105 ssh_packet_set_interactive(active_state, (interactive), (qos_interactive), (qos_bulk))
106#define packet_is_interactive() \
107 ssh_packet_is_interactive(active_state)
108#define packet_set_maxsize(s) \
109 ssh_packet_set_maxsize(active_state, (s))
110#define packet_inc_alive_timeouts() \
111 ssh_packet_inc_alive_timeouts(active_state)
112#define packet_set_alive_timeouts(ka) \
113 ssh_packet_set_alive_timeouts(active_state, (ka))
114#define packet_get_maxsize() \
115 ssh_packet_get_maxsize(active_state)
116#define packet_add_padding(pad) \
117 sshpkt_add_padding(active_state, (pad))
118#define packet_send_ignore(nbytes) \
119 ssh_packet_send_ignore(active_state, (nbytes))
markus@openbsd.org091c3022015-01-19 19:52:16 +0000120#define packet_set_server() \
121 ssh_packet_set_server(active_state)
122#define packet_set_authenticated() \
123 ssh_packet_set_authenticated(active_state)
124#define packet_get_input() \
125 ssh_packet_get_input(active_state)
126#define packet_get_output() \
127 ssh_packet_get_output(active_state)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000128#define packet_check_eom() \
129 ssh_packet_check_eom(active_state)
130#define set_newkeys(mode) \
131 ssh_set_newkeys(active_state, (mode))
132#define packet_get_state(m) \
133 ssh_packet_get_state(active_state, m)
134#define packet_set_state(m) \
135 ssh_packet_set_state(active_state, m)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000136#define packet_get_raw(lenp) \
137 sshpkt_ptr(active_state, lenp)
138#define packet_get_ecpoint(c,p) \
139 ssh_packet_get_ecpoint(active_state, c, p)
140#define packet_put_ecpoint(c,p) \
141 ssh_packet_put_ecpoint(active_state, c, p)
142#define packet_get_rekey_timeout() \
143 ssh_packet_get_rekey_timeout(active_state)
144#define packet_set_rekey_limits(x,y) \
145 ssh_packet_set_rekey_limits(active_state, x, y)
146#define packet_get_bytes(x,y) \
147 ssh_packet_get_bytes(active_state, x, y)
markus@openbsd.org8d057842016-09-30 09:19:13 +0000148#define packet_set_mux() \
149 ssh_packet_set_mux(active_state)
150#define packet_get_mux() \
151 ssh_packet_get_mux(active_state)
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000152#define packet_clear_keys() \
153 ssh_packet_clear_keys(active_state)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000154
155#endif /* _OPACKET_H */