ssh.h
Go to the documentation of this file.
1 /**
2  * @file ssh.h
3  * @brief Secure Shell (SSH)
4  *
5  * @section License
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  *
9  * Copyright (C) 2019-2024 Oryx Embedded SARL. All rights reserved.
10  *
11  * This file is part of CycloneSSH Open.
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software Foundation,
25  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26  *
27  * @author Oryx Embedded SARL (www.oryx-embedded.com)
28  * @version 2.4.2
29  **/
30 
31 #ifndef _SSH_H
32 #define _SSH_H
33 
34 //Dependencies
35 #include "ssh_config.h"
36 #include "ssh_legacy.h"
37 #include "ssh_types.h"
38 #include "ssh_cert_parse.h"
39 #include "core/net.h"
40 #include "core/crypto.h"
43 #include "hash/hash_algorithms.h"
44 #include "mac/mac_algorithms.h"
45 #include "aead/aead_algorithms.h"
47 #include "ecc/ec.h"
48 
49 
50 /*
51  * CycloneSSH Open is licensed under GPL version 2. In particular:
52  *
53  * - If you link your program to CycloneCRYPTO Open, the result is a derivative
54  * work that can only be distributed under the same GPL license terms.
55  *
56  * - If additions or changes to CycloneCRYPTO Open are made, the result is a
57  * derivative work that can only be distributed under the same license terms.
58  *
59  * - The GPL license requires that you make the source code available to
60  * whoever you make the binary available to.
61  *
62  * - If you sell or distribute a hardware product that runs CycloneCRYPTO Open,
63  * the GPL license requires you to provide public and full access to all
64  * source code on a nondiscriminatory basis.
65  *
66  * If you fully understand and accept the terms of the GPL license, then edit
67  * the os_port_config.h header and add the following directive:
68  *
69  * #define GPL_LICENSE_TERMS_ACCEPTED
70  */
71 
72 #ifndef GPL_LICENSE_TERMS_ACCEPTED
73  #error Before compiling CycloneSSH Open, you must accept the terms of the GPL license
74 #endif
75 
76 //Version string
77 #define CYCLONE_SSH_VERSION_STRING "2.4.2"
78 //Major version
79 #define CYCLONE_SSH_MAJOR_VERSION 2
80 //Minor version
81 #define CYCLONE_SSH_MINOR_VERSION 4
82 //Revision number
83 #define CYCLONE_SSH_REV_NUMBER 2
84 
85 //SSH support
86 #ifndef SSH_SUPPORT
87  #define SSH_SUPPORT ENABLED
88 #elif (SSH_SUPPORT != ENABLED && SSH_SUPPORT != DISABLED)
89  #error SSH_SUPPORT parameter is not valid
90 #endif
91 
92 //SSH client support
93 #ifndef SSH_CLIENT_SUPPORT
94  #define SSH_CLIENT_SUPPORT ENABLED
95 #elif (SSH_CLIENT_SUPPORT != ENABLED && SSH_CLIENT_SUPPORT != DISABLED)
96  #error SSH_CLIENT_SUPPORT parameter is not valid
97 #endif
98 
99 //SSH server support
100 #ifndef SSH_SERVER_SUPPORT
101  #define SSH_SERVER_SUPPORT ENABLED
102 #elif (SSH_SERVER_SUPPORT != ENABLED && SSH_SERVER_SUPPORT != DISABLED)
103  #error SSH_SERVER_SUPPORT parameter is not valid
104 #endif
105 
106 //Public key authentication support
107 #ifndef SSH_PUBLIC_KEY_AUTH_SUPPORT
108  #define SSH_PUBLIC_KEY_AUTH_SUPPORT ENABLED
109 #elif (SSH_PUBLIC_KEY_AUTH_SUPPORT != ENABLED && SSH_PUBLIC_KEY_AUTH_SUPPORT != DISABLED)
110  #error SSH_PUBLIC_KEY_AUTH_SUPPORT parameter is not valid
111 #endif
112 
113 //Password authentication support
114 #ifndef SSH_PASSWORD_AUTH_SUPPORT
115  #define SSH_PASSWORD_AUTH_SUPPORT ENABLED
116 #elif (SSH_PASSWORD_AUTH_SUPPORT != ENABLED && SSH_PASSWORD_AUTH_SUPPORT != DISABLED)
117  #error SSH_PASSWORD_AUTH_SUPPORT parameter is not valid
118 #endif
119 
120 //Encrypted private key support (OpenSSH format)
121 #ifndef SSH_ENCRYPTED_KEY_SUPPORT
122  #define SSH_ENCRYPTED_KEY_SUPPORT DISABLED
123 #elif (SSH_ENCRYPTED_KEY_SUPPORT != ENABLED && SSH_ENCRYPTED_KEY_SUPPORT != DISABLED)
124  #error SSH_ENCRYPTED_KEY_SUPPORT parameter is not valid
125 #endif
126 
127 //Certificate support (OpenSSH format)
128 #ifndef SSH_CERT_SUPPORT
129  #define SSH_CERT_SUPPORT DISABLED
130 #elif (SSH_CERT_SUPPORT != ENABLED && SSH_CERT_SUPPORT != DISABLED)
131  #error SSH_CERT_SUPPORT parameter is not valid
132 #endif
133 
134 //Extension negotiation mechanism
135 #ifndef SSH_EXT_INFO_SUPPORT
136  #define SSH_EXT_INFO_SUPPORT DISABLED
137 #elif (SSH_EXT_INFO_SUPPORT != ENABLED && SSH_EXT_INFO_SUPPORT != DISABLED)
138  #error SSH_EXT_INFO_SUPPORT parameter is not valid
139 #endif
140 
141 //"server-sig-algs" extension support
142 #ifndef SSH_SERVER_SIG_ALGS_EXT_SUPPORT
143  #define SSH_SERVER_SIG_ALGS_EXT_SUPPORT ENABLED
144 #elif (SSH_SERVER_SIG_ALGS_EXT_SUPPORT != ENABLED && SSH_SERVER_SIG_ALGS_EXT_SUPPORT != DISABLED)
145  #error SSH_SERVER_SIG_ALGS_EXT_SUPPORT parameter is not valid
146 #endif
147 
148 //"global-requests-ok" extension support
149 #ifndef SSH_GLOBAL_REQ_OK_EXT_SUPPORT
150  #define SSH_GLOBAL_REQ_OK_EXT_SUPPORT DISABLED
151 #elif (SSH_GLOBAL_REQ_OK_EXT_SUPPORT != ENABLED && SSH_GLOBAL_REQ_OK_EXT_SUPPORT != DISABLED)
152  #error SSH_GLOBAL_REQ_OK_EXT_SUPPORT parameter is not valid
153 #endif
154 
155 //Strict key exchange extension support
156 #ifndef SSH_KEX_STRICT_SUPPORT
157  #define SSH_KEX_STRICT_SUPPORT ENABLED
158 #elif (SSH_KEX_STRICT_SUPPORT != ENABLED && SSH_KEX_STRICT_SUPPORT != DISABLED)
159  #error SSH_KEX_STRICT_SUPPORT parameter is not valid
160 #endif
161 
162 //Signature generation/verification callback functions
163 #ifndef SSH_SIGN_CALLBACK_SUPPORT
164  #define SSH_SIGN_CALLBACK_SUPPORT DISABLED
165 #elif (SSH_SIGN_CALLBACK_SUPPORT != ENABLED && SSH_SIGN_CALLBACK_SUPPORT != DISABLED)
166  #error SSH_SIGN_CALLBACK_SUPPORT parameter is not valid
167 #endif
168 
169 //ECDH callback functions
170 #ifndef SSH_ECDH_CALLBACK_SUPPORT
171  #define SSH_ECDH_CALLBACK_SUPPORT DISABLED
172 #elif (SSH_ECDH_CALLBACK_SUPPORT != ENABLED && SSH_ECDH_CALLBACK_SUPPORT != DISABLED)
173  #error SSH_ECDH_CALLBACK_SUPPORT parameter is not valid
174 #endif
175 
176 //Maximum number of keys the SSH entity can load
177 #ifndef SSH_MAX_HOST_KEYS
178  #define SSH_MAX_HOST_KEYS 3
179 #elif (SSH_MAX_HOST_KEYS < 1)
180  #error SSH_MAX_HOST_KEYS parameter is not valid
181 #endif
182 
183 //Maximum number of simultaneous connections
184 #ifndef SSH_MAX_CONNECTIONS
185  #define SSH_MAX_CONNECTIONS 10
186 #elif (SSH_MAX_CONNECTIONS < 1)
187  #error SSH_MAX_CONNECTIONS parameter is not valid
188 #endif
189 
190 //Maximum number of global request callbacks that can be attached
191 #ifndef SSH_MAX_GLOBAL_REQ_CALLBACKS
192  #define SSH_MAX_GLOBAL_REQ_CALLBACKS 3
193 #elif (SSH_MAX_GLOBAL_REQ_CALLBACKS < 1)
194  #error SSH_MAX_GLOBAL_REQ_CALLBACKS parameter is not valid
195 #endif
196 
197 //Maximum number of channel request callbacks that can be attached
198 #ifndef SSH_MAX_CHANNEL_REQ_CALLBACKS
199  #define SSH_MAX_CHANNEL_REQ_CALLBACKS 3
200 #elif (SSH_MAX_CHANNEL_REQ_CALLBACKS < 1)
201  #error SSH_MAX_CHANNEL_REQ_CALLBACKS parameter is not valid
202 #endif
203 
204 //Maximum number of channel open callbacks that can be attached
205 #ifndef SSH_MAX_CHANNEL_OPEN_CALLBACKS
206  #define SSH_MAX_CHANNEL_OPEN_CALLBACKS 1
207 #elif (SSH_MAX_CHANNEL_OPEN_CALLBACKS < 1)
208  #error SSH_MAX_CHANNEL_OPEN_CALLBACKS parameter is not valid
209 #endif
210 
211 //Maximum number of connection open callbacks that can be attached
212 #ifndef SSH_MAX_CONN_OPEN_CALLBACKS
213  #define SSH_MAX_CONN_OPEN_CALLBACKS 1
214 #elif (SSH_MAX_CONN_OPEN_CALLBACKS < 1)
215  #error SSH_MAX_CONN_OPEN_CALLBACKS parameter is not valid
216 #endif
217 
218 //Maximum number of connection close callbacks that can be attached
219 #ifndef SSH_MAX_CONN_CLOSE_CALLBACKS
220  #define SSH_MAX_CONN_CLOSE_CALLBACKS 1
221 #elif (SSH_MAX_CONN_CLOSE_CALLBACKS < 1)
222  #error SSH_MAX_CONN_CLOSE_CALLBACKS parameter is not valid
223 #endif
224 
225 //Maximum number of authentication attempts
226 #ifndef SSH_MAX_AUTH_ATTEMPTS
227  #define SSH_MAX_AUTH_ATTEMPTS 10
228 #elif (SSH_MAX_AUTH_ATTEMPTS < 1 && SSH_MAX_AUTH_ATTEMPTS > 20)
229  #error SSH_MAX_AUTH_ATTEMPTS parameter is not valid
230 #endif
231 
232 //Maximum packet size
233 #ifndef SSH_MAX_PACKET_SIZE
234  #define SSH_MAX_PACKET_SIZE 2048
235 #elif (SSH_MAX_PACKET_SIZE < 128)
236  #error SSH_MAX_PACKET_SIZE parameter is not valid
237 #endif
238 
239 //Size of channel TX/RX buffers
240 #ifndef SSH_CHANNEL_BUFFER_SIZE
241  #define SSH_CHANNEL_BUFFER_SIZE 2048
242 #elif (SSH_CHANNEL_BUFFER_SIZE < 128)
243  #error SSH_CHANNEL_BUFFER_SIZE parameter is not valid
244 #endif
245 
246 //Maximum length of identification string
247 #ifndef SSH_MAX_ID_LEN
248  #define SSH_MAX_ID_LEN 80
249 #elif (SSH_MAX_ID_LEN < 1)
250  #error SSH_MAX_ID_LEN parameter is not valid
251 #endif
252 
253 //Maximum length of user name
254 #ifndef SSH_MAX_USERNAME_LEN
255  #define SSH_MAX_USERNAME_LEN 32
256 #elif (SSH_MAX_USERNAME_LEN < 0)
257  #error SSH_MAX_USERNAME_LEN parameter is not valid
258 #endif
259 
260 //Maximum length of password
261 #ifndef SSH_MAX_PASSWORD_LEN
262  #define SSH_MAX_PASSWORD_LEN 32
263 #elif (SSH_MAX_PASSWORD_LEN < 0)
264  #error SSH_MAX_PASSWORD_LEN parameter is not valid
265 #endif
266 
267 //Maximum length of password change prompt
268 #ifndef SSH_MAX_PASSWORD_CHANGE_PROMPT_LEN
269  #define SSH_MAX_PASSWORD_CHANGE_PROMPT_LEN 0
270 #elif (SSH_MAX_PASSWORD_CHANGE_PROMPT_LEN < 0)
271  #error SSH_MAX_PASSWORD_CHANGE_PROMPT_LEN parameter is not valid
272 #endif
273 
274 //Encrypt-then-MAC mode support
275 #ifndef SSH_ETM_SUPPORT
276  #define SSH_ETM_SUPPORT DISABLED
277 #elif (SSH_ETM_SUPPORT != ENABLED && SSH_ETM_SUPPORT != DISABLED)
278  #error SSH_ETM_SUPPORT parameter is not valid
279 #endif
280 
281 //Stream cipher support (insecure)
282 #ifndef SSH_STREAM_CIPHER_SUPPORT
283  #define SSH_STREAM_CIPHER_SUPPORT DISABLED
284 #elif (SSH_STREAM_CIPHER_SUPPORT != ENABLED && SSH_STREAM_CIPHER_SUPPORT != DISABLED)
285  #error SSH_STREAM_CIPHER_SUPPORT parameter is not valid
286 #endif
287 
288 //CBC cipher mode support (weak)
289 #ifndef SSH_CBC_CIPHER_SUPPORT
290  #define SSH_CBC_CIPHER_SUPPORT DISABLED
291 #elif (SSH_CBC_CIPHER_SUPPORT != ENABLED && SSH_CBC_CIPHER_SUPPORT != DISABLED)
292  #error SSH_CBC_CIPHER_SUPPORT parameter is not valid
293 #endif
294 
295 //CTR cipher mode support
296 #ifndef SSH_CTR_CIPHER_SUPPORT
297  #define SSH_CTR_CIPHER_SUPPORT ENABLED
298 #elif (SSH_CTR_CIPHER_SUPPORT != ENABLED && SSH_CTR_CIPHER_SUPPORT != DISABLED)
299  #error SSH_CTR_CIPHER_SUPPORT parameter is not valid
300 #endif
301 
302 //GCM AEAD support (OpenSSH variant)
303 #ifndef SSH_GCM_CIPHER_SUPPORT
304  #define SSH_GCM_CIPHER_SUPPORT ENABLED
305 #elif (SSH_GCM_CIPHER_SUPPORT != ENABLED && SSH_GCM_CIPHER_SUPPORT != DISABLED)
306  #error SSH_GCM_CIPHER_SUPPORT parameter is not valid
307 #endif
308 
309 //GCM AEAD support (RFC 5647 variant)
310 #ifndef SSH_RFC5647_SUPPORT
311  #define SSH_RFC5647_SUPPORT DISABLED
312 #elif (SSH_RFC5647_SUPPORT != ENABLED && SSH_RFC5647_SUPPORT != DISABLED)
313  #error SSH_RFC5647_SUPPORT parameter is not valid
314 #endif
315 
316 //ChaCha20Poly1305 AEAD support
317 #ifndef SSH_CHACHA20_POLY1305_SUPPORT
318  #define SSH_CHACHA20_POLY1305_SUPPORT DISABLED
319 #elif (SSH_CHACHA20_POLY1305_SUPPORT != ENABLED && SSH_CHACHA20_POLY1305_SUPPORT != DISABLED)
320  #error SSH_CHACHA20_POLY1305_SUPPORT parameter is not valid
321 #endif
322 
323 //Legacy RC4 cipher support (insecure)
324 #ifndef SSH_RC4_SUPPORT
325  #define SSH_RC4_SUPPORT DISABLED
326 #elif (SSH_RC4_SUPPORT != ENABLED && SSH_RC4_SUPPORT != DISABLED)
327  #error SSH_RC4_SUPPORT parameter is not valid
328 #endif
329 
330 //RC4 128-bit cipher support (insecure)
331 #ifndef SSH_RC4_128_SUPPORT
332  #define SSH_RC4_128_SUPPORT DISABLED
333 #elif (SSH_RC4_128_SUPPORT != ENABLED && SSH_RC4_128_SUPPORT != DISABLED)
334  #error SSH_RC4_128_SUPPORT parameter is not valid
335 #endif
336 
337 //RC4 256-bit cipher support (insecure)
338 #ifndef SSH_RC4_256_SUPPORT
339  #define SSH_RC4_256_SUPPORT DISABLED
340 #elif (SSH_RC4_256_SUPPORT != ENABLED && SSH_RC4_256_SUPPORT != DISABLED)
341  #error SSH_RC4_256_SUPPORT parameter is not valid
342 #endif
343 
344 //CAST-128 cipher support (insecure)
345 #ifndef SSH_CAST128_SUPPORT
346  #define SSH_CAST128_SUPPORT DISABLED
347 #elif (SSH_CAST128_SUPPORT != ENABLED && SSH_CAST128_SUPPORT != DISABLED)
348  #error SSH_CAST128_SUPPORT parameter is not valid
349 #endif
350 
351 //IDEA cipher support (insecure)
352 #ifndef SSH_IDEA_SUPPORT
353  #define SSH_IDEA_SUPPORT DISABLED
354 #elif (SSH_IDEA_SUPPORT != ENABLED && SSH_IDEA_SUPPORT != DISABLED)
355  #error SSH_IDEA_SUPPORT parameter is not valid
356 #endif
357 
358 //Blowfish cipher support (insecure)
359 #ifndef SSH_BLOWFISH_SUPPORT
360  #define SSH_BLOWFISH_SUPPORT DISABLED
361 #elif (SSH_BLOWFISH_SUPPORT != ENABLED && SSH_BLOWFISH_SUPPORT != DISABLED)
362  #error SSH_BLOWFISH_SUPPORT parameter is not valid
363 #endif
364 
365 //Triple DES cipher support (weak)
366 #ifndef SSH_3DES_SUPPORT
367  #define SSH_3DES_SUPPORT DISABLED
368 #elif (SSH_3DES_SUPPORT != ENABLED && SSH_3DES_SUPPORT != DISABLED)
369  #error SSH_3DES_SUPPORT parameter is not valid
370 #endif
371 
372 //AES 128-bit cipher support
373 #ifndef SSH_AES_128_SUPPORT
374  #define SSH_AES_128_SUPPORT ENABLED
375 #elif (SSH_AES_128_SUPPORT != ENABLED && SSH_AES_128_SUPPORT != DISABLED)
376  #error SSH_AES_128_SUPPORT parameter is not valid
377 #endif
378 
379 //AES 192-bit cipher support
380 #ifndef SSH_AES_192_SUPPORT
381  #define SSH_AES_192_SUPPORT ENABLED
382 #elif (SSH_AES_192_SUPPORT != ENABLED && SSH_AES_192_SUPPORT != DISABLED)
383  #error SSH_AES_192_SUPPORT parameter is not valid
384 #endif
385 
386 //AES 256-bit cipher support
387 #ifndef SSH_AES_256_SUPPORT
388  #define SSH_AES_256_SUPPORT ENABLED
389 #elif (SSH_AES_256_SUPPORT != ENABLED && SSH_AES_256_SUPPORT != DISABLED)
390  #error SSH_AES_256_SUPPORT parameter is not valid
391 #endif
392 
393 //Twofish 128-bit cipher support
394 #ifndef SSH_TWOFISH_128_SUPPORT
395  #define SSH_TWOFISH_128_SUPPORT DISABLED
396 #elif (SSH_TWOFISH_128_SUPPORT != ENABLED && SSH_TWOFISH_128_SUPPORT != DISABLED)
397  #error SSH_TWOFISH_128_SUPPORT parameter is not valid
398 #endif
399 
400 //Twofish 192-bit cipher support
401 #ifndef SSH_TWOFISH_192_SUPPORT
402  #define SSH_TWOFISH_192_SUPPORT DISABLED
403 #elif (SSH_TWOFISH_192_SUPPORT != ENABLED && SSH_TWOFISH_192_SUPPORT != DISABLED)
404  #error SSH_TWOFISH_192_SUPPORT parameter is not valid
405 #endif
406 
407 //Twofish 256-bit cipher support
408 #ifndef SSH_TWOFISH_256_SUPPORT
409  #define SSH_TWOFISH_256_SUPPORT DISABLED
410 #elif (SSH_TWOFISH_256_SUPPORT != ENABLED && SSH_TWOFISH_256_SUPPORT != DISABLED)
411  #error SSH_TWOFISH_256_SUPPORT parameter is not valid
412 #endif
413 
414 //Serpent 128-bit cipher support
415 #ifndef SSH_SERPENT_128_SUPPORT
416  #define SSH_SERPENT_128_SUPPORT DISABLED
417 #elif (SSH_SERPENT_128_SUPPORT != ENABLED && SSH_SERPENT_128_SUPPORT != DISABLED)
418  #error SSH_SERPENT_128_SUPPORT parameter is not valid
419 #endif
420 
421 //Serpent 192-bit cipher support
422 #ifndef SSH_SERPENT_192_SUPPORT
423  #define SSH_SERPENT_192_SUPPORT DISABLED
424 #elif (SSH_SERPENT_192_SUPPORT != ENABLED && SSH_SERPENT_192_SUPPORT != DISABLED)
425  #error SSH_SERPENT_192_SUPPORT parameter is not valid
426 #endif
427 
428 //Serpent 256-bit cipher support
429 #ifndef SSH_SERPENT_256_SUPPORT
430  #define SSH_SERPENT_256_SUPPORT DISABLED
431 #elif (SSH_SERPENT_256_SUPPORT != ENABLED && SSH_SERPENT_256_SUPPORT != DISABLED)
432  #error SSH_SERPENT_256_SUPPORT parameter is not valid
433 #endif
434 
435 //Camellia 128-bit cipher support
436 #ifndef SSH_CAMELLIA_128_SUPPORT
437  #define SSH_CAMELLIA_128_SUPPORT DISABLED
438 #elif (SSH_CAMELLIA_128_SUPPORT != ENABLED && SSH_CAMELLIA_128_SUPPORT != DISABLED)
439  #error SSH_CAMELLIA_128_SUPPORT parameter is not valid
440 #endif
441 
442 //Camellia 192-bit cipher support
443 #ifndef SSH_CAMELLIA_192_SUPPORT
444  #define SSH_CAMELLIA_192_SUPPORT DISABLED
445 #elif (SSH_CAMELLIA_192_SUPPORT != ENABLED && SSH_CAMELLIA_192_SUPPORT != DISABLED)
446  #error SSH_CAMELLIA_192_SUPPORT parameter is not valid
447 #endif
448 
449 //Camellia 256-bit cipher support
450 #ifndef SSH_CAMELLIA_256_SUPPORT
451  #define SSH_CAMELLIA_256_SUPPORT DISABLED
452 #elif (SSH_CAMELLIA_256_SUPPORT != ENABLED && SSH_CAMELLIA_256_SUPPORT != DISABLED)
453  #error SSH_CAMELLIA_256_SUPPORT parameter is not valid
454 #endif
455 
456 //SEED cipher support
457 #ifndef SSH_SEED_SUPPORT
458  #define SSH_SEED_SUPPORT DISABLED
459 #elif (SSH_SEED_SUPPORT != ENABLED && SSH_SEED_SUPPORT != DISABLED)
460  #error SSH_SEED_SUPPORT parameter is not valid
461 #endif
462 
463 //MD5 hash support (insecure)
464 #ifndef SSH_MD5_SUPPORT
465  #define SSH_MD5_SUPPORT DISABLED
466 #elif (SSH_MD5_SUPPORT != ENABLED && SSH_MD5_SUPPORT != DISABLED)
467  #error SSH_MD5_SUPPORT parameter is not valid
468 #endif
469 
470 //MD5/96 hash support (insecure)
471 #ifndef SSH_MD5_96_SUPPORT
472  #define SSH_MD5_96_SUPPORT DISABLED
473 #elif (SSH_MD5_96_SUPPORT != ENABLED && SSH_MD5_96_SUPPORT != DISABLED)
474  #error SSH_MD5_96_SUPPORT parameter is not valid
475 #endif
476 
477 //RIPEMD-160 hash support (weak)
478 #ifndef SSH_RIPEMD160_SUPPORT
479  #define SSH_RIPEMD160_SUPPORT DISABLED
480 #elif (SSH_RIPEMD160_SUPPORT != ENABLED && SSH_RIPEMD160_SUPPORT != DISABLED)
481  #error SSH_RIPEMD160_SUPPORT parameter is not valid
482 #endif
483 
484 //SHA-1 hash support (weak)
485 #ifndef SSH_SHA1_SUPPORT
486  #define SSH_SHA1_SUPPORT ENABLED
487 #elif (SSH_SHA1_SUPPORT != ENABLED && SSH_SHA1_SUPPORT != DISABLED)
488  #error SSH_SHA1_SUPPORT parameter is not valid
489 #endif
490 
491 //SHA-1/96 hash support (insecure)
492 #ifndef SSH_SHA1_96_SUPPORT
493  #define SSH_SHA1_96_SUPPORT DISABLED
494 #elif (SSH_SHA1_96_SUPPORT != ENABLED && SSH_SHA1_96_SUPPORT != DISABLED)
495  #error SSH_SHA1_96_SUPPORT parameter is not valid
496 #endif
497 
498 //SHA-224 hash support (weak)
499 #ifndef SSH_SHA224_SUPPORT
500  #define SSH_SHA224_SUPPORT DISABLED
501 #elif (SSH_SHA224_SUPPORT != ENABLED && SSH_SHA224_SUPPORT != DISABLED)
502  #error SSH_SHA224_SUPPORT parameter is not valid
503 #endif
504 
505 //SHA-256 hash support
506 #ifndef SSH_SHA256_SUPPORT
507  #define SSH_SHA256_SUPPORT ENABLED
508 #elif (SSH_SHA256_SUPPORT != ENABLED && SSH_SHA256_SUPPORT != DISABLED)
509  #error SSH_SHA256_SUPPORT parameter is not valid
510 #endif
511 
512 //SHA-384 hash support
513 #ifndef SSH_SHA384_SUPPORT
514  #define SSH_SHA384_SUPPORT ENABLED
515 #elif (SSH_SHA384_SUPPORT != ENABLED && SSH_SHA384_SUPPORT != DISABLED)
516  #error SSH_SHA384_SUPPORT parameter is not valid
517 #endif
518 
519 //SHA-512 hash support
520 #ifndef SSH_SHA512_SUPPORT
521  #define SSH_SHA512_SUPPORT ENABLED
522 #elif (SSH_SHA512_SUPPORT != ENABLED && SSH_SHA512_SUPPORT != DISABLED)
523  #error SSH_SHA512_SUPPORT parameter is not valid
524 #endif
525 
526 //RSA key exchange support
527 #ifndef SSH_RSA_KEX_SUPPORT
528  #define SSH_RSA_KEX_SUPPORT DISABLED
529 #elif (SSH_RSA_KEX_SUPPORT != ENABLED && SSH_RSA_KEX_SUPPORT != DISABLED)
530  #error SSH_RSA_KEX_SUPPORT parameter is not valid
531 #endif
532 
533 //Diffie-Hellman key exchange support
534 #ifndef SSH_DH_KEX_SUPPORT
535  #define SSH_DH_KEX_SUPPORT ENABLED
536 #elif (SSH_DH_KEX_SUPPORT != ENABLED && SSH_DH_KEX_SUPPORT != DISABLED)
537  #error SSH_DH_KEX_SUPPORT parameter is not valid
538 #endif
539 
540 //DH GEX key exchange support
541 #ifndef SSH_DH_GEX_KEX_SUPPORT
542  #define SSH_DH_GEX_KEX_SUPPORT DISABLED
543 #elif (SSH_DH_GEX_KEX_SUPPORT != ENABLED && SSH_DH_GEX_KEX_SUPPORT != DISABLED)
544  #error SSH_DH_GEX_KEX_SUPPORT parameter is not valid
545 #endif
546 
547 //ECDH key exchange support
548 #ifndef SSH_ECDH_KEX_SUPPORT
549  #define SSH_ECDH_KEX_SUPPORT ENABLED
550 #elif (SSH_ECDH_KEX_SUPPORT != ENABLED && SSH_ECDH_KEX_SUPPORT != DISABLED)
551  #error SSH_ECDH_KEX_SUPPORT parameter is not valid
552 #endif
553 
554 //Post-quantum hybrid key exchange support
555 #ifndef SSH_HYBRID_KEX_SUPPORT
556  #define SSH_HYBRID_KEX_SUPPORT DISABLED
557 #elif (SSH_HYBRID_KEX_SUPPORT != ENABLED && SSH_HYBRID_KEX_SUPPORT != DISABLED)
558  #error SSH_HYBRID_KEX_SUPPORT parameter is not valid
559 #endif
560 
561 //RSA signature support
562 #ifndef SSH_RSA_SIGN_SUPPORT
563  #define SSH_RSA_SIGN_SUPPORT ENABLED
564 #elif (SSH_RSA_SIGN_SUPPORT != ENABLED && SSH_RSA_SIGN_SUPPORT != DISABLED)
565  #error SSH_RSA_SIGN_SUPPORT parameter is not valid
566 #endif
567 
568 //DSA signature support
569 #ifndef SSH_DSA_SIGN_SUPPORT
570  #define SSH_DSA_SIGN_SUPPORT ENABLED
571 #elif (SSH_DSA_SIGN_SUPPORT != ENABLED && SSH_DSA_SIGN_SUPPORT != DISABLED)
572  #error SSH_DSA_SIGN_SUPPORT parameter is not valid
573 #endif
574 
575 //ECDSA signature support
576 #ifndef SSH_ECDSA_SIGN_SUPPORT
577  #define SSH_ECDSA_SIGN_SUPPORT ENABLED
578 #elif (SSH_ECDSA_SIGN_SUPPORT != ENABLED && SSH_ECDSA_SIGN_SUPPORT != DISABLED)
579  #error SSH_ECDSA_SIGN_SUPPORT parameter is not valid
580 #endif
581 
582 //Ed25519 signature support
583 #ifndef SSH_ED25519_SIGN_SUPPORT
584  #define SSH_ED25519_SIGN_SUPPORT ENABLED
585 #elif (SSH_ED25519_SIGN_SUPPORT != ENABLED && SSH_ED25519_SIGN_SUPPORT != DISABLED)
586  #error SSH_ED25519_SIGN_SUPPORT parameter is not valid
587 #endif
588 
589 //Ed448 signature support
590 #ifndef SSH_ED448_SIGN_SUPPORT
591  #define SSH_ED448_SIGN_SUPPORT DISABLED
592 #elif (SSH_ED448_SIGN_SUPPORT != ENABLED && SSH_ED448_SIGN_SUPPORT != DISABLED)
593  #error SSH_ED448_SIGN_SUPPORT parameter is not valid
594 #endif
595 
596 //NIST P-256 elliptic curve support
597 #ifndef SSH_NISTP256_SUPPORT
598  #define SSH_NISTP256_SUPPORT ENABLED
599 #elif (SSH_NISTP256_SUPPORT != ENABLED && SSH_NISTP256_SUPPORT != DISABLED)
600  #error SSH_NISTP256_SUPPORT parameter is not valid
601 #endif
602 
603 //NIST P-384 elliptic curve support
604 #ifndef SSH_NISTP384_SUPPORT
605  #define SSH_NISTP384_SUPPORT ENABLED
606 #elif (SSH_NISTP384_SUPPORT != ENABLED && SSH_NISTP384_SUPPORT != DISABLED)
607  #error SSH_NISTP384_SUPPORT parameter is not valid
608 #endif
609 
610 //NIST P-521 elliptic curve support
611 #ifndef SSH_NISTP521_SUPPORT
612  #define SSH_NISTP521_SUPPORT ENABLED
613 #elif (SSH_NISTP521_SUPPORT != ENABLED && SSH_NISTP521_SUPPORT != DISABLED)
614  #error SSH_NISTP521_SUPPORT parameter is not valid
615 #endif
616 
617 //Curve25519 elliptic curve support
618 #ifndef SSH_CURVE25519_SUPPORT
619  #define SSH_CURVE25519_SUPPORT ENABLED
620 #elif (SSH_CURVE25519_SUPPORT != ENABLED && SSH_CURVE25519_SUPPORT != DISABLED)
621  #error SSH_CURVE25519_SUPPORT parameter is not valid
622 #endif
623 
624 //Curve448 elliptic curve support
625 #ifndef SSH_CURVE448_SUPPORT
626  #define SSH_CURVE448_SUPPORT DISABLED
627 #elif (SSH_CURVE448_SUPPORT != ENABLED && SSH_CURVE448_SUPPORT != DISABLED)
628  #error SSH_CURVE448_SUPPORT parameter is not valid
629 #endif
630 
631 //ML-KEM-768 key encapsulation mechanism support
632 #ifndef SSH_MLKEM768_SUPPORT
633  #define SSH_MLKEM768_SUPPORT DISABLED
634 #elif (SSH_MLKEM768_SUPPORT != ENABLED && SSH_MLKEM768_SUPPORT != DISABLED)
635  #error SSH_MLKEM768_SUPPORT parameter is not valid
636 #endif
637 
638 //ML-KEM-1024 key encapsulation mechanism support
639 #ifndef SSH_MLKEM1024_SUPPORT
640  #define SSH_MLKEM1024_SUPPORT DISABLED
641 #elif (SSH_MLKEM1024_SUPPORT != ENABLED && SSH_MLKEM1024_SUPPORT != DISABLED)
642  #error SSH_MLKEM1024_SUPPORT parameter is not valid
643 #endif
644 
645 //Streamlined NTRU Prime 761 key encapsulation mechanism support
646 #ifndef SSH_SNTRUP761_SUPPORT
647  #define SSH_SNTRUP761_SUPPORT DISABLED
648 #elif (SSH_SNTRUP761_SUPPORT != ENABLED && SSH_SNTRUP761_SUPPORT != DISABLED)
649  #error SSH_SNTRUP761_SUPPORT parameter is not valid
650 #endif
651 
652 //Key logging (for debugging purpose only)
653 #ifndef SSH_KEY_LOG_SUPPORT
654  #define SSH_KEY_LOG_SUPPORT DISABLED
655 #elif (SSH_KEY_LOG_SUPPORT != ENABLED && SSH_KEY_LOG_SUPPORT != DISABLED)
656  #error SSH_KEY_LOG_SUPPORT parameter is not valid
657 #endif
658 
659 //Maximum number of transient RSA keys that can be loaded
660 #ifndef SSH_MAX_RSA_KEYS
661  #define SSH_MAX_RSA_KEYS 2
662 #elif (SSH_MAX_RSA_KEYS < 1)
663  #error SSH_MAX_RSA_KEYS parameter is not valid
664 #endif
665 
666 //Maximum number of Diffie-Hellman groups that can be loaded
667 #ifndef SSH_MAX_DH_GEX_GROUPS
668  #define SSH_MAX_DH_GEX_GROUPS 2
669 #elif (SSH_MAX_DH_GEX_GROUPS < 1)
670  #error SSH_MAX_DH_GEX_GROUPS parameter is not valid
671 #endif
672 
673 //Minimum acceptable size for Diffie-Hellman prime modulus
674 #ifndef SSH_MIN_DH_MODULUS_SIZE
675  #define SSH_MIN_DH_MODULUS_SIZE 1024
676 #elif (SSH_MIN_DH_MODULUS_SIZE < 1024)
677  #error SSH_MIN_DH_MODULUS_SIZE parameter is not valid
678 #endif
679 
680 //Preferred size for Diffie-Hellman prime modulus
681 #ifndef SSH_PREFERRED_DH_MODULUS_SIZE
682  #define SSH_PREFERRED_DH_MODULUS_SIZE 2048
683 #elif (SSH_PREFERRED_DH_MODULUS_SIZE < SSH_MIN_DH_MODULUS_SIZE)
684  #error SSH_PREFERRED_DH_MODULUS_SIZE parameter is not valid
685 #endif
686 
687 //Maximum acceptable size for Diffie-Hellman prime modulus
688 #ifndef SSH_MAX_DH_MODULUS_SIZE
689  #define SSH_MAX_DH_MODULUS_SIZE 3072
690 #elif (SSH_MAX_DH_MODULUS_SIZE < SSH_PREFERRED_DH_MODULUS_SIZE)
691  #error SSH_MAX_DH_MODULUS_SIZE parameter is not valid
692 #endif
693 
694 //Minimum acceptable size for RSA modulus
695 #ifndef SSH_MIN_RSA_MODULUS_SIZE
696  #define SSH_MIN_RSA_MODULUS_SIZE 1024
697 #elif (SSH_MIN_RSA_MODULUS_SIZE < 512)
698  #error SSH_MIN_RSA_MODULUS_SIZE parameter is not valid
699 #endif
700 
701 //Maximum acceptable size for RSA modulus
702 #ifndef SSH_MAX_RSA_MODULUS_SIZE
703  #define SSH_MAX_RSA_MODULUS_SIZE 4096
704 #elif (SSH_MAX_RSA_MODULUS_SIZE < SSH_MIN_RSA_MODULUS_SIZE)
705  #error SSH_MAX_RSA_MODULUS_SIZE parameter is not valid
706 #endif
707 
708 //Minimum acceptable size for DSA prime modulus
709 #ifndef SSH_MIN_DSA_MODULUS_SIZE
710  #define SSH_MIN_DSA_MODULUS_SIZE 1024
711 #elif (SSH_MIN_DSA_MODULUS_SIZE < 512)
712  #error SSH_MIN_DSA_MODULUS_SIZE parameter is not valid
713 #endif
714 
715 //Maximum acceptable size for DSA prime modulus
716 #ifndef SSH_MAX_DSA_MODULUS_SIZE
717  #define SSH_MAX_DSA_MODULUS_SIZE 4096
718 #elif (SSH_MAX_DSA_MODULUS_SIZE < SSH_MIN_DSA_MODULUS_SIZE)
719  #error SSH_MAX_DSA_MODULUS_SIZE parameter is not valid
720 #endif
721 
722 //Allocate memory block
723 #ifndef sshAllocMem
724  #define sshAllocMem(size) osAllocMem(size)
725 #endif
726 
727 //Deallocate memory block
728 #ifndef sshFreeMem
729  #define sshFreeMem(p) osFreeMem(p)
730 #endif
731 
732 //HMAC support
733 #if (SSH_STREAM_CIPHER_SUPPORT == ENABLED)
734  #define SSH_HMAC_SUPPORT ENABLED
735 #elif (SSH_CBC_CIPHER_SUPPORT == ENABLED)
736  #define SSH_HMAC_SUPPORT ENABLED
737 #elif (SSH_CTR_CIPHER_SUPPORT == ENABLED)
738  #define SSH_HMAC_SUPPORT ENABLED
739 #else
740  #define SSH_HMAC_SUPPORT DISABLED
741 #endif
742 
743 //Maximum key size (encryption algorithms)
744 #if (SSH_CHACHA20_POLY1305_SUPPORT == ENABLED)
745  #define SSH_MAX_ENC_KEY_SIZE 64
746 #else
747  #define SSH_MAX_ENC_KEY_SIZE 32
748 #endif
749 
750 //Maximum block size (encryption algorithms)
751 #if (SSH_AES_128_SUPPORT == ENABLED)
752  #define SSH_MAX_CIPHER_BLOCK_SIZE AES_BLOCK_SIZE
753 #elif (SSH_AES_192_SUPPORT == ENABLED)
754  #define SSH_MAX_CIPHER_BLOCK_SIZE AES_BLOCK_SIZE
755 #elif (SSH_AES_256_SUPPORT == ENABLED)
756  #define SSH_MAX_CIPHER_BLOCK_SIZE AES_BLOCK_SIZE
757 #elif (SSH_TWOFISH_128_SUPPORT == ENABLED)
758  #define SSH_MAX_CIPHER_BLOCK_SIZE TWOFISH_BLOCK_SIZE
759 #elif (SSH_TWOFISH_192_SUPPORT == ENABLED)
760  #define SSH_MAX_CIPHER_BLOCK_SIZE TWOFISH_BLOCK_SIZE
761 #elif (SSH_TWOFISH_256_SUPPORT == ENABLED)
762  #define SSH_MAX_CIPHER_BLOCK_SIZE TWOFISH_BLOCK_SIZE
763 #elif (SSH_SERPENT_128_SUPPORT == ENABLED)
764  #define SSH_MAX_CIPHER_BLOCK_SIZE SERPENT_BLOCK_SIZE
765 #elif (SSH_SERPENT_192_SUPPORT == ENABLED)
766  #define SSH_MAX_CIPHER_BLOCK_SIZE SERPENT_BLOCK_SIZE
767 #elif (SSH_SERPENT_256_SUPPORT == ENABLED)
768  #define SSH_MAX_CIPHER_BLOCK_SIZE SERPENT_BLOCK_SIZE
769 #elif (SSH_CAMELLIA_128_SUPPORT == ENABLED)
770  #define SSH_MAX_CIPHER_BLOCK_SIZE CAMELLIA_BLOCK_SIZE
771 #elif (SSH_CAMELLIA_192_SUPPORT == ENABLED)
772  #define SSH_MAX_CIPHER_BLOCK_SIZE CAMELLIA_BLOCK_SIZE
773 #elif (SSH_CAMELLIA_256_SUPPORT == ENABLED)
774  #define SSH_MAX_CIPHER_BLOCK_SIZE CAMELLIA_BLOCK_SIZE
775 #elif (SSH_SEED_SUPPORT == ENABLED)
776  #define SSH_MAX_CIPHER_BLOCK_SIZE SEED_BLOCK_SIZE
777 #elif (SSH_CAST128_SUPPORT == ENABLED)
778  #define SSH_MAX_CIPHER_BLOCK_SIZE CAST128_BLOCK_SIZE
779 #elif (SSH_IDEA_SUPPORT == ENABLED)
780  #define SSH_MAX_CIPHER_BLOCK_SIZE IDEA_BLOCK_SIZE
781 #elif (SSH_BLOWFISH_SUPPORT == ENABLED)
782  #define SSH_MAX_CIPHER_BLOCK_SIZE BLOWFISH_BLOCK_SIZE
783 #else
784  #define SSH_MAX_CIPHER_BLOCK_SIZE DES3_BLOCK_SIZE
785 #endif
786 
787 //Maximum digest size (MAC algorithms)
788 #if (SSH_SHA512_SUPPORT == ENABLED)
789  #define SSH_MAX_HASH_DIGEST_SIZE SHA512_DIGEST_SIZE
790 #elif (SSH_SHA384_SUPPORT == ENABLED)
791  #define SSH_MAX_HASH_DIGEST_SIZE SHA384_DIGEST_SIZE
792 #elif (SSH_SHA256_SUPPORT == ENABLED)
793  #define SSH_MAX_HASH_DIGEST_SIZE SHA256_DIGEST_SIZE
794 #elif (SSH_SHA1_SUPPORT == ENABLED || SSH_SHA1_96_SUPPORT == ENABLED)
795  #define SSH_MAX_HASH_DIGEST_SIZE SHA1_DIGEST_SIZE
796 #elif (SSH_RIPEMD160_SUPPORT == ENABLED)
797  #define SSH_MAX_HASH_DIGEST_SIZE RIPEMD160_DIGEST_SIZE
798 #else
799  #define SSH_MAX_HASH_DIGEST_SIZE MD5_DIGEST_SIZE
800 #endif
801 
802 //Maximum shared secret length (RSA key exchange)
803 #if (SSH_RSA_KEX_SUPPORT == ENABLED)
804  #define SSH_MAX_RSA_SHARED_SECRET_LEN ((SSH_MAX_RSA_MODULUS_SIZE + 47) / 8)
805 #else
806  #define SSH_MAX_RSA_SHARED_SECRET_LEN 0
807 #endif
808 
809 //Maximum shared secret length (Diffie-Hellman key exchange)
810 #if (SSH_DH_KEX_SUPPORT == ENABLED || SSH_DH_GEX_KEX_SUPPORT == ENABLED)
811  #define SSH_MAX_DH_SHARED_SECRET_LEN ((SSH_MAX_DH_MODULUS_SIZE + 47) / 8)
812 #else
813  #define SSH_MAX_DH_SHARED_SECRET_LEN 0
814 #endif
815 
816 //Maximum shared secret length (ECDH key exchange)
817 #if (SSH_ECDH_KEX_SUPPORT == ENABLED && SSH_NISTP521_SUPPORT == ENABLED)
818  #define SSH_MAX_ECDH_SHARED_SECRET_LEN 71
819 #elif (SSH_ECDH_KEX_SUPPORT == ENABLED && SSH_CURVE448_SUPPORT == ENABLED)
820  #define SSH_MAX_ECDH_SHARED_SECRET_LEN 61
821 #elif (SSH_ECDH_KEX_SUPPORT == ENABLED && SSH_NISTP384_SUPPORT == ENABLED)
822  #define SSH_MAX_ECDH_SHARED_SECRET_LEN 53
823 #else
824  #define SSH_MAX_ECDH_SHARED_SECRET_LEN 37
825 #endif
826 
827 //Maximum shared secret length (PQ-hybrid key exchange)
828 #if (SSH_HYBRID_KEX_SUPPORT == ENABLED && SSH_SNTRUP761_SUPPORT == ENABLED)
829  #define SSH_MAX_HYBRID_SHARED_SECRET_LEN 68
830 #elif (SSH_HYBRID_KEX_SUPPORT == ENABLED && SSH_MLKEM1024_SUPPORT == ENABLED)
831  #define SSH_MAX_HYBRID_SHARED_SECRET_LEN 68
832 #elif (SSH_HYBRID_KEX_SUPPORT == ENABLED && SSH_MLKEM768_SUPPORT == ENABLED)
833  #define SSH_MAX_HYBRID_SHARED_SECRET_LEN 52
834 #else
835  #define SSH_MAX_HYBRID_SHARED_SECRET_LEN 0
836 #endif
837 
838 //Maximum shared secret length
839 #if (SSH_MAX_RSA_SHARED_SECRET_LEN >= SSH_MAX_DH_SHARED_SECRET_LEN && \
840  SSH_MAX_RSA_SHARED_SECRET_LEN >= SSH_MAX_ECDH_SHARED_SECRET_LEN && \
841  SSH_MAX_RSA_SHARED_SECRET_LEN >= SSH_MAX_HYBRID_SHARED_SECRET_LEN)
842  #define SSH_MAX_SHARED_SECRET_LEN SSH_MAX_RSA_SHARED_SECRET_LEN
843 #elif (SSH_MAX_DH_SHARED_SECRET_LEN >= SSH_MAX_RSA_SHARED_SECRET_LEN && \
844  SSH_MAX_DH_SHARED_SECRET_LEN >= SSH_MAX_ECDH_SHARED_SECRET_LEN && \
845  SSH_MAX_DH_SHARED_SECRET_LEN >= SSH_MAX_HYBRID_SHARED_SECRET_LEN)
846  #define SSH_MAX_SHARED_SECRET_LEN SSH_MAX_DH_SHARED_SECRET_LEN
847 #elif (SSH_MAX_ECDH_SHARED_SECRET_LEN >= SSH_MAX_RSA_SHARED_SECRET_LEN && \
848  SSH_MAX_ECDH_SHARED_SECRET_LEN >= SSH_MAX_DH_SHARED_SECRET_LEN && \
849  SSH_MAX_ECDH_SHARED_SECRET_LEN >= SSH_MAX_HYBRID_SHARED_SECRET_LEN)
850  #define SSH_MAX_SHARED_SECRET_LEN SSH_MAX_ECDH_SHARED_SECRET_LEN
851 #else
852  #define SSH_MAX_SHARED_SECRET_LEN SSH_MAX_HYBRID_SHARED_SECRET_LEN
853 #endif
854 
855 //SSH port number
856 #define SSH_PORT 22
857 
858 //Cookie size
859 #define SSH_COOKIE_SIZE 16
860 //Data overhead caused by mpint encoding
861 #define SSH_MAX_MPINT_OVERHEAD 5
862 //Data overhead caused by packet encryption
863 #define SSH_MAX_PACKET_OVERHEAD 128
864 
865 //Size of buffer used for input/output operations
866 #define SSH_BUFFER_SIZE (SSH_MAX_PACKET_SIZE + SSH_MAX_PACKET_OVERHEAD)
867 
868 //Forward declaration of SshContext structure
869 struct _SshContext;
870 #define SshContext struct _SshContext
871 
872 //Forward declaration of SshConnection structure
873 struct _SshConnection;
874 #define SshConnection struct _SshConnection
875 
876 //Forward declaration of SshChannel structure
877 struct _SshChannel;
878 #define SshChannel struct _SshChannel
879 
880 //C++ guard
881 #ifdef __cplusplus
882 extern "C" {
883 #endif
884 
885 
886 /**
887  * @brief Mode of operation
888  **/
889 
890 typedef enum
891 {
895 
896 
897 /**
898  * @brief Authentication status
899  **/
900 
901 typedef enum
902 {
907 
908 
909 /**
910  * @brief Flags used by read and write functions
911  **/
912 
913 typedef enum
914 {
915  SSH_FLAG_EOF = 0x0100,
920  SSH_FLAG_DELAY = 0x8000
922 
923 //The SSH_FLAG_BREAK macro causes the read function to stop reading
924 //data whenever the specified break character is encountered
925 #define SSH_FLAG_BREAK(c) (SSH_FLAG_BREAK_CHAR | LSB(c))
926 
927 
928 /**
929  * @brief SSH message types
930  **/
931 
932 typedef enum
933 {
986  SSH_MSG_PONG = 193
988 
989 
990 /**
991  * @brief Disconnection messages reason codes
992  **/
993 
994 typedef enum
995 {
1012 
1013 
1014 /**
1015  * @brief Channel connection failure reason codes
1016  **/
1017 
1018 typedef enum
1019 {
1025 
1026 
1027 /**
1028  * @brief SSH connection state
1029  **/
1030 
1031 typedef enum
1032 {
1065 
1066 
1067 /**
1068  * @brief SSH channel state
1069  **/
1070 
1071 typedef enum
1072 {
1078 
1079 
1080 /**
1081  * @brief SSH request states
1082  **/
1083 
1084 typedef enum
1085 {
1091 
1092 
1093 /**
1094  * @brief SSH channel events
1095  **/
1096 
1097 typedef enum
1098 {
1108 } SshChannelEvent;
1109 
1110 
1111 /**
1112  * @brief Transient RSA key (for RSA key exchange)
1113  **/
1114 
1115 typedef struct
1116 {
1117  uint_t modulusSize; ///<Length of the modulus, in bits
1118  const char_t *publicKey; ///<RSA public key (PEM, SSH2 or OpenSSH format)
1119  size_t publicKeyLen; ///<Length of the RSA public key
1120  const char_t *privateKey; ///<RSA private key (PEM or OpenSSH format)
1121  size_t privateKeyLen; ///<Length of the RSA private key
1122  char_t password[SSH_MAX_PASSWORD_LEN + 1]; ///<Password used to decrypt the private key
1123 } SshRsaKey;
1124 
1125 
1126 /**
1127  * @brief Diffie-Hellman group
1128  **/
1129 
1130 typedef struct
1131 {
1132  uint_t dhModulusSize; ///<Length of the prime modulus, in bits
1133  const char_t *dhParams; ///<Diffie-Hellman parameters (PEM format)
1134  size_t dhParamsLen; ///<Length of the Diffie-Hellman parameters
1135 } SshDhGexGroup;
1136 
1137 
1138 /**
1139  * @brief Host key
1140  **/
1141 
1142 typedef struct
1143 {
1144  const char_t *keyFormatId; ///<Key format identifier
1145  const char_t *publicKey; ///<Public key (PEM, SSH2 or OpenSSH format)
1146  size_t publicKeyLen; ///<Length of the public key
1147  const char_t *privateKey; ///<Private key (PEM or OpenSSH format)
1148  size_t privateKeyLen; ///<Length of the private key
1149  char_t password[SSH_MAX_PASSWORD_LEN + 1]; ///<Password used to decrypt the private key
1150 #if (SSH_CLIENT_SUPPORT == ENABLED)
1151  const char_t *publicKeyAlgo; ///<Public key algorithm to use during user authentication
1152 #endif
1153 } SshHostKey;
1154 
1155 
1156 /**
1157  * @brief Host key algorithm
1158  **/
1159 
1160 typedef struct
1161 {
1162  const char_t *publicKeyAlgo; ///<Public key algorithm
1163  const char_t *keyFormatId; ///<Key format identifier
1164  const char_t *signFormatId; ///<Signature format identifier
1165 } SshHostKeyAlgo;
1166 
1167 
1168 /**
1169  * @brief Host key verification callback function
1170  **/
1171 
1173  const uint8_t *hostKey, size_t hostKeyLen);
1174 
1175 
1176 /**
1177  * @brief Certificate verification callback function
1178  **/
1179 
1181  const SshCertificate *cert);
1182 
1183 
1184 /**
1185  * @brief CA public key verification callback function
1186  **/
1187 
1189  const uint8_t *publicKey, size_t publicKeyLen);
1190 
1191 
1192 /**
1193  * @brief Public key authentication callback function
1194  **/
1195 
1197  const char_t *user, const uint8_t *publicKey, size_t publicKeyLen);
1198 
1199 
1200 /**
1201  * @brief Certificate authentication callback function
1202  **/
1203 
1205  const char_t *user, const SshCertificate *cert);
1206 
1207 
1208 /**
1209  * @brief Password authentication callback function
1210  **/
1211 
1213  const char_t *user, const char_t *password, size_t passwordLen);
1214 
1215 
1216 /**
1217  * @brief Password change callback function
1218  **/
1219 
1221  const char_t *user, const char_t *oldPassword, size_t oldPasswordLen,
1222  const char_t *newPassword, size_t newPasswordLen);
1223 
1224 
1225 /**
1226  * @brief Signature generation callback function
1227  **/
1228 
1230  const char_t *publicKeyAlgo, const SshHostKey *hostKey,
1232  uint8_t *p, size_t *written);
1233 
1234 
1235 /**
1236  * @brief Signature verification callback function
1237  **/
1238 
1240  const SshString *publicKeyAlgo, const SshBinaryString *publicKeyBlob,
1242  const SshBinaryString *signatureBlob);
1243 
1244 
1245 /**
1246  * @brief ECDH key pair generation callback
1247  **/
1248 
1250  const char_t *kexAlgo, EcPublicKey *publicKey);
1251 
1252 
1253 /**
1254  * @brief ECDH shared secret calculation callback
1255  **/
1256 
1258  const char_t *kexAlgo, const EcPublicKey *publicKey, uint8_t *output,
1259  size_t *outputLen);
1260 
1261 
1262 /**
1263  * @brief Global request callback function
1264  **/
1265 
1267  const SshString *name, const uint8_t *data, size_t length, void *param);
1268 
1269 
1270 /**
1271  * @brief Channel request callback function
1272  **/
1273 
1275  const SshString *type, const uint8_t *data, size_t length, void *param);
1276 
1277 
1278 /**
1279  * @brief Channel open callback function
1280  **/
1281 
1283  const SshString *type, uint32_t senderChannel, uint32_t initialWindowSize,
1284  uint32_t maxPacketSize, const uint8_t *data, size_t length, void *param);
1285 
1286 
1287 /**
1288  * @brief Connection open callback function
1289  **/
1290 
1292  void *param);
1293 
1294 
1295 /**
1296  * @brief Connection close callback function
1297  **/
1298 
1300  void *param);
1301 
1302 
1303 /**
1304  * @brief Key logging callback function (for debugging purpose only)
1305  **/
1306 
1308  const char_t *key);
1309 
1310 
1311 /**
1312  * @brief Encryption engine
1313  **/
1314 
1315 typedef struct
1316 {
1317  CipherMode cipherMode; ///<Cipher mode of operation
1318  const CipherAlgo *cipherAlgo; ///<Cipher algorithm
1319  CipherContext cipherContext; ///<Cipher context
1320  const HashAlgo *hashAlgo; ///<Hash algorithm for MAC operations
1321  HmacContext *hmacContext; ///<HMAC context
1322  size_t macSize; ///<Size of the MAC tag, in bytes
1323  bool_t etm; ///<Encrypt-then-MAC
1324  uint8_t iv[SSH_MAX_CIPHER_BLOCK_SIZE]; ///<Initialization vector
1325  uint8_t encKey[SSH_MAX_ENC_KEY_SIZE]; ///<Encryption key
1326  size_t encKeyLen; ///<Length of the encryption key, in bytes
1327  uint8_t macKey[SSH_MAX_HASH_DIGEST_SIZE]; ///<Integrity key
1328  uint8_t seqNum[4]; ///<Sequence number
1329 #if (SSH_GCM_CIPHER_SUPPORT == ENABLED || SSH_RFC5647_SUPPORT == ENABLED)
1330  GcmContext gcmContext; ///<GCM context
1331 #endif
1332 #if (SSH_CHACHA20_POLY1305_SUPPORT == ENABLED)
1333  uint8_t aad[4]; ///<Additional authenticated data
1334 #endif
1336 
1337 
1338 /**
1339  * @brief SSH channel buffer
1340  **/
1341 
1342 typedef struct
1343 {
1345  size_t length;
1346  size_t threshold;
1347  size_t writePos;
1348  size_t readPos;
1350 
1351 
1352 /**
1353  * @brief SSH channel
1354  **/
1355 
1357 {
1358  SshChannelState state; ///<Channel state
1359  SshRequestState requestState; ///<Channel request state
1360  SshContext *context; ///<SSH context
1361  SshConnection *connection; ///<SSH connection
1366  systime_t timeout; ///<Timeout value
1367  uint32_t localChannelNum; ///<Local channel number
1368  uint32_t remoteChannelNum; ///<Remote channel number
1369  uint32_t maxPacketSize; ///<Maximum packet size
1372  size_t txWindowSize; ///<TX flow-control window
1373  size_t rxWindowSize; ///<RX flow-control window
1374  size_t rxWindowSizeInc; ///<Window size increment
1375  bool_t channelSuccessSent; ///<An SSH_MSG_CHANNEL_SUCCESS message has been sent
1376  bool_t eofRequest; ///<Channel EOF request
1377  bool_t eofSent; ///<An SSH_MSG_CHANNEL_EOF message has been sent
1378  bool_t eofReceived; ///<An SSH_MSG_CHANNEL_EOF message has been received
1379  bool_t closeRequest; ///<Channel close request
1380  bool_t closeSent; ///<An SSH_MSG_CHANNEL_CLOSE message has been sent
1381  bool_t closeReceived; ///<An SSH_MSG_CHANNEL_CLOSE message has been received
1382 };
1383 
1384 
1385 /**
1386  * @brief SSH connection
1387  **/
1388 
1390 {
1391  SshConnectionState state; ///<Connection state
1392  SshRequestState requestState; ///<Global request state
1393  SshContext *context; ///<SSH context
1394  Socket *socket; ///<Underlying socket
1395  systime_t timestamp; ///<Time stamp to manage connection timeout
1396 
1397  char_t clientId[SSH_MAX_ID_LEN + 1]; ///<Client's identification string
1398  char_t serverId[SSH_MAX_ID_LEN + 1]; ///<Server's identification string
1399  uint8_t cookie[SSH_COOKIE_SIZE]; ///<Random value generated by the sender
1400  char_t user[SSH_MAX_USERNAME_LEN + 1]; ///<User name
1401 
1402 #if (SSH_SERVER_SUPPORT == ENABLED && SSH_PASSWORD_AUTH_SUPPORT == ENABLED)
1403  char_t passwordChangePrompt[SSH_MAX_PASSWORD_CHANGE_PROMPT_LEN + 1]; ///<Password change prompt string
1404 #endif
1405 
1406  const char_t *kexAlgo; ///<Selected key exchange algorithm name
1407  const char_t *serverHostKeyAlgo; ///<Selected server's host key algorithm name
1408  const char_t *clientEncAlgo; ///<Selected client's encryption algorithm name
1409  const char_t *serverEncAlgo; ///<Selected server's encryption algorithm name
1410  const char_t *clientMacAlgo; ///<Selected client's MAC algorithm name
1411  const char_t *serverMacAlgo; ///<Selected server's MAC algorithm name
1412  const char_t *clientCompressAlgo; ///<Selected client's encryption algorithm name
1413  const char_t *serverCompressAlgo; ///<Selected server's encryption algorithm name
1414  int_t hostKeyIndex; ///<Index of the selected host key
1415 #if (SSH_RSA_KEX_SUPPORT == ENABLED)
1416  int_t rsaKeyIndex; ///<Index of the transient RSA key to use
1417  uint8_t *serverHostKey; ///<Server's host key
1418  size_t serverHostKeyLen; ///<Length of the server's host key, in bytes
1419 #endif
1420 #if (SSH_DH_GEX_KEX_SUPPORT == ENABLED)
1421  int_t dhGexGroupIndex; ///<Index of the selected Diffie-Hellman group
1422 #endif
1423 
1424  uint8_t sessionId[SSH_MAX_HASH_DIGEST_SIZE]; ///<Session identifier
1425  size_t sessionIdLen; ///<Length of the session identifier, in bytes
1426  uint8_t h[SSH_MAX_HASH_DIGEST_SIZE]; ///<Exchange hash H
1427  size_t hLen; ///<Length of the exchange hash, in bytes
1428  uint8_t k[SSH_MAX_SHARED_SECRET_LEN]; ///<Shared secret K
1429  size_t kLen; ///<Length of the shared secret, in bytes
1430 
1431  const HashAlgo *hashAlgo; ///<Exchange hash algorithm
1432  HashContext hashContext; ///<Exchange hash context
1433 #if (SSH_HMAC_SUPPORT == ENABLED)
1434  HmacContext hmacContext; ///<HMAC context
1435 #endif
1436 #if (SSH_DH_KEX_SUPPORT == ENABLED || SSH_DH_GEX_KEX_SUPPORT == ENABLED)
1437  DhContext dhContext; ///<Diffie-Hellman context
1438 #endif
1439 #if (SSH_ECDH_KEX_SUPPORT == ENABLED || SSH_HYBRID_KEX_SUPPORT == ENABLED)
1440  EcdhContext ecdhContext; ///<ECDH context
1441 #endif
1442 #if (SSH_HYBRID_KEX_SUPPORT == ENABLED)
1443  KemContext kemContext; ///<KEM context
1444 #endif
1445 
1446  SshEncryptionEngine encryptionEngine; ///<Encryption engine
1447  SshEncryptionEngine decryptionEngine; ///<Decryption engine
1448 
1449  bool_t kexInitSent; ///<An SSH_MSG_KEXINIT message has been sent
1450  bool_t kexInitReceived; ///<An SSH_MSG_KEXINIT message has been received
1451  bool_t newKeysSent; ///<An SSH_MSG_NEWKEYS message has been sent
1452  bool_t newKeysReceived; ///<An SSH_MSG_NEWKEYS message has been received
1453  bool_t disconnectRequest; ///<Request for disconnection
1454  bool_t disconnectSent; ///<An SSH_MSG_DISCONNECT message has been sent
1455  bool_t disconnectReceived; ///<An SSH_MSG_DISCONNECT message has been received
1456  bool_t wrongGuess; ///<A wrong guessed key exchange packet follows
1457  uint_t authAttempts; ///<Number of authentication attempts
1458  bool_t publicKeyOk; ///<The provided host key is acceptable
1459  uint32_t localChannelNum; ///<Current channel number
1460 
1461 #if (SSH_EXT_INFO_SUPPORT == ENABLED)
1462  bool_t extInfoReceived; ///<"ext-info-c" or "ext-info-s" indicator has been received
1463 #endif
1464 #if (SSH_KEX_STRICT_SUPPORT == ENABLED)
1465  bool_t kexStrictReceived; ///<"strict KEX" pseudo-algorithm received
1466 #endif
1467 
1468  uint8_t buffer[SSH_BUFFER_SIZE]; ///<Internal buffer
1469  size_t txBufferLen; ///<Number of bytes that are pending to be sent
1470  size_t txBufferPos; ///<Current position in TX buffer
1471  size_t rxBufferLen; ///<Number of bytes available for reading
1472  size_t rxBufferPos; ///<Current position in RX buffer
1473 };
1474 
1475 
1476 /**
1477  * @brief SSH context
1478  **/
1479 
1481 {
1482  SshOperationMode mode; ///<Mode of operation (client or server)
1483  uint_t numConnections; ///<Maximum number of SSH connections
1484  SshConnection *connections; ///<SSH connections
1485  uint_t numChannels; ///<Maximum number of SSH channels
1486  SshChannel *channels; ///<SSH channels
1487  const PrngAlgo *prngAlgo; ///<Pseudo-random number generator to be used
1488  void *prngContext; ///<Pseudo-random number generator context
1489  SshHostKey hostKeys[SSH_MAX_HOST_KEYS]; ///<List of host keys
1490 
1491 #if (SSH_CLIENT_SUPPORT == ENABLED)
1494 #endif
1495 
1496 #if (SSH_SERVER_SUPPORT == ENABLED && SSH_RSA_KEX_SUPPORT == ENABLED)
1497  SshRsaKey rsaKeys[SSH_MAX_RSA_KEYS]; ///<Transient RSA keys (for RSA key exchange)
1498 #endif
1499 #if (SSH_SERVER_SUPPORT == ENABLED && SSH_DH_GEX_KEX_SUPPORT == ENABLED)
1501 #endif
1502 
1503  SshHostKeyVerifyCallback hostKeyVerifyCallback; ///<Host key verification callback
1504 #if (SSH_CERT_SUPPORT == ENABLED)
1505  SshCertVerifyCallback certVerifyCallback; ///<Certificate verification callback
1506  SshCaPublicKeyVerifyCallback caPublicKeyVerifyCallback; ///<CA public key verification callback
1507 #endif
1508 #if (SSH_PUBLIC_KEY_AUTH_SUPPORT == ENABLED)
1509  SshPublicKeyAuthCallback publicKeyAuthCallback; ///<Public key authentication callback
1510 #endif
1511 #if (SSH_PUBLIC_KEY_AUTH_SUPPORT == ENABLED && SSH_CERT_SUPPORT == ENABLED)
1512  SshCertAuthCallback certAuthCallback; ///<Certificate authentication callback
1513 #endif
1514 #if (SSH_PASSWORD_AUTH_SUPPORT == ENABLED)
1515  SshPasswordAuthCallback passwordAuthCallback; ///<Password authentication callback
1517 #endif
1518 #if (SSH_SIGN_CALLBACK_SUPPORT == ENABLED)
1519  SshSignGenCallback signGenCallback; ///<Signature generation callback
1520  SshSignVerifyCallback signVerifyCallback; ///<Signature verification callback
1521 #endif
1522 #if (SSH_ECDH_CALLBACK_SUPPORT == ENABLED)
1523  SshEcdhKeyPairGenCallback ecdhKeyPairGenCallback; ///<ECDH key pair generation callback
1524  SshEcdhSharedSecretCalcCallback ecdhSharedSecretCalcCallback; ///<ECDH shared secret calculation callback
1525 #endif
1527  void *globalReqParam[SSH_MAX_GLOBAL_REQ_CALLBACKS]; ///<Opaque pointer passed to the global request callback
1529  void *channelReqParam[SSH_MAX_CHANNEL_REQ_CALLBACKS]; ///<Opaque pointer passed to the channel request callback
1531  void *channelOpenParam[SSH_MAX_CHANNEL_OPEN_CALLBACKS]; ///<Opaque pointer passed to the channel open callback
1533  void *connectionOpenParam[SSH_MAX_CONN_OPEN_CALLBACKS]; ///<Opaque pointer passed to the connection open callback
1535  void *connectionCloseParam[SSH_MAX_CONN_CLOSE_CALLBACKS]; ///<Opaque pointer passed to the connection close callback
1536 #if (SSH_KEY_LOG_SUPPORT == ENABLED)
1537  SshKeyLogCallback keyLogCallback; ///<Key logging callback (for debugging purpose only)
1538 #endif
1539 
1540  OsMutex mutex; ///<Mutex preventing simultaneous access to the context
1541  OsEvent event; ///<Event object used to poll the sockets
1542  SocketEventDesc eventDesc[SSH_MAX_CONNECTIONS + 1]; ///<The events the application is interested in
1543 };
1544 
1545 
1546 /**
1547  * @brief Structure describing channel events
1548  **/
1549 
1550 typedef struct
1551 {
1552  SshChannel *channel; ///<Handle to a channel to monitor
1553  uint_t eventMask; ///<Requested events
1554  uint_t eventFlags; ///<Returned events
1556 
1557 
1558 //SSH related functions
1559 error_t sshInit(SshContext *context, SshConnection *connections,
1560  uint_t numConnections, SshChannel *channels, uint_t numChannels);
1561 
1563 
1564 error_t sshSetPrng(SshContext *context, const PrngAlgo *prngAlgo,
1565  void *prngContext);
1566 
1567 error_t sshSetUsername(SshContext *context, const char_t *username);
1568 error_t sshSetPassword(SshContext *context, const char_t *password);
1569 
1571  SshHostKeyVerifyCallback callback);
1572 
1574  SshCertVerifyCallback callback);
1575 
1577  SshCaPublicKeyVerifyCallback callback);
1578 
1580  SshPublicKeyAuthCallback callback);
1581 
1583  SshCertAuthCallback callback);
1584 
1586  SshPasswordAuthCallback callback);
1587 
1589  SshPasswordChangeCallback callback);
1590 
1592  SshSignGenCallback callback);
1593 
1595  SshSignVerifyCallback callback);
1596 
1598  SshEcdhKeyPairGenCallback callback);
1599 
1602 
1604  SshGlobalReqCallback callback, void *param);
1605 
1607  SshGlobalReqCallback callback);
1608 
1610  SshChannelReqCallback callback, void *param);
1611 
1613  SshChannelReqCallback callback);
1614 
1616  SshChannelOpenCallback callback, void *param);
1617 
1619  SshChannelOpenCallback callback);
1620 
1622  SshConnectionOpenCallback callback, void *param);
1623 
1625  SshConnectionOpenCallback callback);
1626 
1628  SshConnectionCloseCallback callback, void *param);
1629 
1631  SshConnectionCloseCallback callback);
1632 
1634  SshKeyLogCallback callback);
1635 
1636 error_t sshLoadRsaKey(SshContext *context, uint_t index,
1637  const char_t *publicKey, size_t publicKeyLen, const char_t *privateKey,
1638  size_t privateKeyLen, const char_t *password);
1639 
1640 error_t sshUnloadRsaKey(SshContext *context, uint_t index);
1641 
1642 error_t sshLoadDhGexGroup(SshContext *context, uint_t index,
1643  const char_t *dhParams, size_t dhParamsLen);
1644 
1645 error_t sshUnloadDhGexGroup(SshContext *context, uint_t index);
1646 
1647 error_t sshLoadHostKey(SshContext *context, uint_t index,
1648  const char_t *publicKey, size_t publicKeyLen, const char_t *privateKey,
1649  size_t privateKeyLen, const char_t *password);
1650 
1651 error_t sshUnloadHostKey(SshContext *context, uint_t index);
1652 
1654  const char_t *cert, size_t certLen, const char_t *privateKey,
1655  size_t privateKeyLen, const char_t *password);
1656 
1658 
1660  const char_t *prompt);
1661 
1663 
1665 
1666 error_t sshWriteChannel(SshChannel *channel, const void *data, size_t length,
1667  size_t *written, uint_t flags);
1668 
1669 error_t sshReadChannel(SshChannel *channel, void *data, size_t size,
1670  size_t *received, uint_t flags);
1671 
1673  OsEvent *extEvent, systime_t timeout);
1674 
1676 void sshDeleteChannel(SshChannel *channel);
1677 
1678 void sshDeinit(SshContext *context);
1679 
1680 //C++ guard
1681 #ifdef __cplusplus
1682 }
1683 #endif
1684 
1685 #endif
uint8_t h[SSH_MAX_HASH_DIGEST_SIZE]
Exchange hash H.
Definition: ssh.h:1426
const PrngAlgo * prngAlgo
Pseudo-random number generator to be used.
Definition: ssh.h:1487
bool_t closeSent
An SSH_MSG_CHANNEL_CLOSE message has been sent.
Definition: ssh.h:1380
@ SSH_FLAG_WAIT_ALL
Definition: ssh.h:916
SocketEventDesc eventDesc[SSH_MAX_CONNECTIONS+1]
The events the application is interested in.
Definition: ssh.h:1542
SshEcdhKeyPairGenCallback ecdhKeyPairGenCallback
ECDH key pair generation callback.
Definition: ssh.h:1523
size_t privateKeyLen
Length of the RSA private key.
Definition: ssh.h:1121
error_t(* SshChannelReqCallback)(SshChannel *channel, const SshString *type, const uint8_t *data, size_t length, void *param)
Channel request callback function.
Definition: ssh.h:1274
systime_t timeout
Timeout value.
Definition: ssh.h:1366
@ SSH_MSG_KEX_DH_REPLY
Definition: ssh.h:951
@ SSH_OPEN_RESOURCE_SHORTAGE
Definition: ssh.h:1023
size_t rxWindowSizeInc
Window size increment.
Definition: ssh.h:1374
Collection of key exchange algorithms.
Generic hash algorithm context.
char_t clientId[SSH_MAX_ID_LEN+1]
Client's identification string.
Definition: ssh.h:1397
#define SSH_MAX_CONN_CLOSE_CALLBACKS
Definition: ssh.h:220
int bool_t
Definition: compiler_port.h:53
uint8_t sessionId[]
Definition: tls.h:1756
HMAC algorithm context.
Definition: hmac.h:59
@ SSH_CONN_STATE_USER_AUTH_REPLY
Definition: ssh.h:1060
const char_t * clientEncAlgo
Selected client's encryption algorithm name.
Definition: ssh.h:1408
SshOperationMode
Mode of operation.
Definition: ssh.h:891
@ SSH_CONN_STATE_OPEN
Definition: ssh.h:1062
error_t sshLoadHostKey(SshContext *context, uint_t index, const char_t *publicKey, size_t publicKeyLen, const char_t *privateKey, size_t privateKeyLen, const char_t *password)
Load entity's host key.
Definition: ssh.c:1353
void * globalReqParam[SSH_MAX_GLOBAL_REQ_CALLBACKS]
Opaque pointer passed to the global request callback.
Definition: ssh.h:1527
SshGlobalReqCallback globalReqCallback[SSH_MAX_GLOBAL_REQ_CALLBACKS]
Global request callbacks.
Definition: ssh.h:1526
@ SSH_CHANNEL_EVENT_CONNECTED
Definition: ssh.h:1100
const char_t * clientMacAlgo
Selected client's MAC algorithm name.
Definition: ssh.h:1410
uint_t eventMask
Requested events.
Definition: ssh.h:1553
error_t sshUnloadDhGexGroup(SshContext *context, uint_t index)
Unload Diffie-Hellman group.
Definition: ssh.c:1311
error_t sshInit(SshContext *context, SshConnection *connections, uint_t numConnections, SshChannel *channels, uint_t numChannels)
SSH context initialization.
Definition: ssh.c:58
@ SSH_MSG_USERAUTH_PASSWD_CHANGEREQ
Definition: ssh.h:968
error_t sshLoadCertificate(SshContext *context, uint_t index, const char_t *cert, size_t certLen, const char_t *privateKey, size_t privateKeyLen, const char_t *password)
Load entity's certificate.
Definition: ssh.c:1682
SshChannelState
SSH channel state.
Definition: ssh.h:1072
size_t serverHostKeyLen
Length of the server's host key, in bytes.
Definition: ssh.h:1418
signed int int_t
Definition: compiler_port.h:49
@ SSH_CONN_STATE_KEX_HYBRID_INIT
Definition: ssh.h:1049
@ SSH_AUTH_STATUS_FAILURE
Definition: ssh.h:903
error_t(* SshCaPublicKeyVerifyCallback)(SshConnection *connection, const uint8_t *publicKey, size_t publicKeyLen)
CA public key verification callback function.
Definition: ssh.h:1188
void(* SshConnectionCloseCallback)(SshConnection *connection, void *param)
Connection close callback function.
Definition: ssh.h:1299
Binary string.
Definition: ssh_types.h:67
@ SSH_CONN_STATE_KEX_DH_GEX_REQUEST
Definition: ssh.h:1043
void(* SshKeyLogCallback)(SshConnection *connection, const char_t *key)
Key logging callback function (for debugging purpose only)
Definition: ssh.h:1307
const char_t * privateKey
Private key (PEM or OpenSSH format)
Definition: ssh.h:1147
#define PrngAlgo
Definition: crypto.h:931
error_t sshSetPrng(SshContext *context, const PrngAlgo *prngAlgo, void *prngContext)
Set the pseudo-random number generator to be used.
Definition: ssh.c:193
@ SSH_CONN_STATE_SERVER_EXT_INFO_2
Definition: ssh.h:1055
void * connectionOpenParam[SSH_MAX_CONN_OPEN_CALLBACKS]
Opaque pointer passed to the connection open callback.
Definition: ssh.h:1533
const char_t * publicKeyAlgo
Public key algorithm.
Definition: ssh.h:1162
@ SSH_CONN_STATE_KEX_RSA_SECRET
Definition: ssh.h:1039
bool_t closeReceived
An SSH_MSG_CHANNEL_CLOSE message has been received.
Definition: ssh.h:1381
SshChannelEvent
SSH channel events.
Definition: ssh.h:1098
uint8_t p
Definition: ndp.h:300
const HashAlgo * hashAlgo
Hash algorithm for MAC operations.
Definition: ssh.h:1320
size_t rxBufferLen
Number of bytes available for reading.
Definition: ssh.h:1471
uint8_t message[]
Definition: chap.h:154
SshContext * context
SSH context.
Definition: ssh.h:1360
@ SSH_CONN_STATE_SERVICE_ACCEPT
Definition: ssh.h:1057
@ SSH_MSG_KEX_HYBRID_INIT
Definition: ssh.h:959
@ SSH_AUTH_STATUS_SUCCESS
Definition: ssh.h:904
Collection of AEAD algorithms.
@ SSH_DISCONNECT_COMPRESSION_ERROR
Definition: ssh.h:1001
@ SSH_FLAG_BREAK_CHAR
Definition: ssh.h:917
#define SSH_MAX_CHANNEL_OPEN_CALLBACKS
Definition: ssh.h:206
uint8_t data[]
Definition: ethernet.h:222
error_t(* SshCertAuthCallback)(SshConnection *connection, const char_t *user, const SshCertificate *cert)
Certificate authentication callback function.
Definition: ssh.h:1204
@ SSH_DISCONNECT_MAC_ERROR
Definition: ssh.h:1000
SshSignVerifyCallback signVerifyCallback
Signature verification callback.
Definition: ssh.h:1520
size_t txBufferPos
Current position in TX buffer.
Definition: ssh.h:1470
Event object.
const char_t * publicKey
RSA public key (PEM, SSH2 or OpenSSH format)
Definition: ssh.h:1118
Generic cipher algorithm context.
@ SSH_MSG_CHANNEL_FAILURE
Definition: ssh.h:984
GcmContext gcmContext
GCM context.
Definition: ssh.h:1330
OsEvent event
Event object used to poll the sockets.
Definition: ssh.h:1541
size_t threshold
Definition: ssh.h:1346
error_t sshUnloadCertificate(SshContext *context, uint_t index)
Unload entity's certificate.
Definition: ssh.c:1874
size_t macSize
Size of the MAC tag, in bytes.
Definition: ssh.h:1322
uint_t eventFlags
Returned events.
Definition: ssh.h:1554
size_t rxWindowSize
RX flow-control window.
Definition: ssh.h:1373
error_t sshRegisterEcdhSharedSecretCalcCallback(SshContext *context, SshEcdhSharedSecretCalcCallback callback)
Register ECDH shared secret calculation callback function.
Definition: ssh.c:586
SshConnectionState
SSH connection state.
Definition: ssh.h:1032
void * channelReqParam[SSH_MAX_CHANNEL_REQ_CALLBACKS]
Opaque pointer passed to the channel request callback.
Definition: ssh.h:1529
uint8_t type
Definition: coap_common.h:176
@ SSH_MSG_CHANNEL_SUCCESS
Definition: ssh.h:983
bool_t eofRequest
Channel EOF request.
Definition: ssh.h:1376
@ SSH_DISCONNECT_HOST_KEY_NOT_VERIFIABLE
Definition: ssh.h:1004
Transient RSA key (for RSA key exchange)
Definition: ssh.h:1116
error_t sshUnregisterConnectionOpenCallback(SshContext *context, SshConnectionOpenCallback callback)
Unregister connection open callback function.
Definition: ssh.c:926
SshConnectionCloseCallback connectionCloseCallback[SSH_MAX_CONN_CLOSE_CALLBACKS]
Connection close callback function.
Definition: ssh.h:1534
SshChannel * channel
Handle to a channel to monitor.
Definition: ssh.h:1552
SshChannelBuffer txBuffer
TX buffer.
Definition: ssh.h:1370
char_t name[]
@ SSH_MSG_CHANNEL_OPEN_CONFIRMATION
Definition: ssh.h:975
@ SSH_MSG_REQUEST_FAILURE
Definition: ssh.h:973
size_t txBufferLen
Number of bytes that are pending to be sent.
Definition: ssh.h:1469
size_t txWindowSize
TX flow-control window.
Definition: ssh.h:1372
#define SSH_MAX_SHARED_SECRET_LEN
Definition: ssh.h:842
const char_t * privateKey
RSA private key (PEM or OpenSSH format)
Definition: ssh.h:1120
SSH channel buffer.
Definition: ssh.h:1343
error_t sshRegisterCaPublicKeyVerifyCallback(SshContext *context, SshCaPublicKeyVerifyCallback callback)
Register CA public key verification callback function.
Definition: ssh.c:338
error_t sshLoadDhGexGroup(SshContext *context, uint_t index, const char_t *dhParams, size_t dhParamsLen)
Load Diffie-Hellman group.
Definition: ssh.c:1234
SshCaPublicKeyVerifyCallback caPublicKeyVerifyCallback
CA public key verification callback.
Definition: ssh.h:1506
SshMessageType
SSH message types.
Definition: ssh.h:933
SshConnection * connection
SSH connection.
Definition: ssh.h:1361
error_t sshRegisterPasswordChangeCallback(SshContext *context, SshPasswordChangeCallback callback)
Register password change callback function.
Definition: ssh.c:462
@ SSH_CONN_STATE_KEX_DH_GEX_GROUP
Definition: ssh.h:1044
@ SSH_MSG_NEWCOMPRESS
Definition: ssh.h:942
@ SSH_CONN_STATE_KEX_HYBRID_REPLY
Definition: ssh.h:1050
@ SSH_CONN_STATE_SERVER_EXT_INFO_1
Definition: ssh.h:1054
Structure describing socket events.
Definition: socket.h:401
char_t username[SSH_MAX_USERNAME_LEN+1]
User name.
Definition: ssh.h:1492
uint_t eventFlags
Definition: ssh.h:1364
uint_t numChannels
Maximum number of SSH channels.
Definition: ssh.h:1485
SshCertVerifyCallback certVerifyCallback
Certificate verification callback.
Definition: ssh.h:1505
Encryption engine.
Definition: ssh.h:1316
#define SSH_MAX_CIPHER_BLOCK_SIZE
Definition: ssh.h:752
@ SSH_OPEN_ADMINISTRATIVELY_PROHIBITED
Definition: ssh.h:1020
@ SSH_CHANNEL_EVENT_CLOSED
Definition: ssh.h:1101
@ SSH_CONN_STATE_DISCONNECT
Definition: ssh.h:1063
error_t sshRegisterPasswordAuthCallback(SshContext *context, SshPasswordAuthCallback callback)
Register password authentication callback function.
Definition: ssh.c:431
@ SSH_MSG_KEX_DH_GEX_REPLY
Definition: ssh.h:956
@ SSH_REQUEST_STATE_PENDING
Definition: ssh.h:1087
uint32_t remoteChannelNum
Remote channel number.
Definition: ssh.h:1368
error_t sshUnregisterGlobalRequestCallback(SshContext *context, SshGlobalReqCallback callback)
Unregister global request callback function.
Definition: ssh.c:665
@ SSH_CHANNEL_EVENT_TX_READY
Definition: ssh.h:1102
uint_t numConnections
Maximum number of SSH connections.
Definition: ssh.h:1483
int_t dhGexGroupIndex
Index of the selected Diffie-Hellman group.
Definition: ssh.h:1421
SshAuthStatus
Authentication status.
Definition: ssh.h:902
bool_t eofReceived
An SSH_MSG_CHANNEL_EOF message has been received.
Definition: ssh.h:1378
@ SSH_DISCONNECT_BY_APPLICATION
Definition: ssh.h:1006
error_t sshUnloadRsaKey(SshContext *context, uint_t index)
Unload transient RSA key (for RSA key exchange)
Definition: ssh.c:1197
@ SSH_MSG_CHANNEL_DATA
Definition: ssh.h:978
@ SSH_CHANNEL_EVENT_TX_SHUTDOWN
Definition: ssh.h:1105
Diffie-Hellman context.
Definition: dh.h:60
error_t sshReadChannel(SshChannel *channel, void *data, size_t size, size_t *received, uint_t flags)
Receive data from the specified channel.
Definition: ssh.c:2180
void * channelOpenParam[SSH_MAX_CHANNEL_OPEN_CALLBACKS]
Opaque pointer passed to the channel open callback.
Definition: ssh.h:1531
@ SSH_MSG_KEX_DH_INIT
Definition: ssh.h:950
@ SSH_MSG_GLOBAL_REQUEST
Definition: ssh.h:971
@ SSH_DISCONNECT_HOST_NOT_ALLOWED_TO_CONNECT
Definition: ssh.h:996
#define SshContext
Definition: ssh.h:870
error_t sshUnloadHostKey(SshContext *context, uint_t index)
Unload entity's host key.
Definition: ssh.c:1619
const char_t * keyFormatId
Key format identifier.
Definition: ssh.h:1144
@ SSH_MSG_NEWKEYS
Definition: ssh.h:944
@ SSH_MSG_INVALID
Definition: ssh.h:934
size_t kLen
Length of the shared secret, in bytes.
Definition: ssh.h:1429
size_t hLen
Length of the exchange hash, in bytes.
Definition: ssh.h:1427
error_t sshCloseChannel(SshChannel *channel)
Close channel.
Definition: ssh.c:2465
error_t
Error codes.
Definition: error.h:43
uint32_t seqNum
Definition: tcp.h:341
error_t sshLoadRsaKey(SshContext *context, uint_t index, const char_t *publicKey, size_t publicKeyLen, const char_t *privateKey, size_t privateKeyLen, const char_t *password)
Load transient RSA key (for RSA key exchange)
Definition: ssh.c:1087
@ SSH_MSG_KEX_HYBRID_REPLY
Definition: ssh.h:960
SSH connection.
Definition: ssh.h:1390
CipherMode cipherMode
Cipher mode of operation.
Definition: ssh.h:1317
uint8_t cookie[SSH_COOKIE_SIZE]
Random value generated by the sender.
Definition: ssh.h:1399
bool_t closeRequest
Channel close request.
Definition: ssh.h:1379
error_t(* SshGlobalReqCallback)(SshConnection *connection, const SshString *name, const uint8_t *data, size_t length, void *param)
Global request callback function.
Definition: ssh.h:1266
KEM context.
Definition: kem.h:68
@ SSH_MSG_USERAUTH_INFO_RESPONSE
Definition: ssh.h:970
bool_t disconnectRequest
Request for disconnection.
Definition: ssh.h:1453
@ SSH_MSG_CHANNEL_CLOSE
Definition: ssh.h:981
SshRsaKey rsaKeys[SSH_MAX_RSA_KEYS]
Transient RSA keys (for RSA key exchange)
Definition: ssh.h:1497
#define SSH_MAX_ID_LEN
Definition: ssh.h:248
@ SSH_MSG_USERAUTH_PK_OK
Definition: ssh.h:967
error_t sshRegisterSignGenCallback(SshContext *context, SshSignGenCallback callback)
Register signature generation callback function.
Definition: ssh.c:493
uint32_t localChannelNum
Current channel number.
Definition: ssh.h:1459
@ SSH_OPERATION_MODE_SERVER
Definition: ssh.h:893
error_t(* SshChannelOpenCallback)(SshConnection *connection, const SshString *type, uint32_t senderChannel, uint32_t initialWindowSize, uint32_t maxPacketSize, const uint8_t *data, size_t length, void *param)
Channel open callback function.
Definition: ssh.h:1282
uint_t authAttempts
Number of authentication attempts.
Definition: ssh.h:1457
bool_t kexInitReceived
An SSH_MSG_KEXINIT message has been received.
Definition: ssh.h:1450
#define SSH_MAX_RSA_KEYS
Definition: ssh.h:661
@ SSH_OPERATION_MODE_CLIENT
Definition: ssh.h:892
@ SSH_MSG_KEXRSA_DONE
Definition: ssh.h:949
size_t publicKeyLen
Length of the RSA public key.
Definition: ssh.h:1119
@ SSH_MSG_KEX_DH_GEX_REQUEST_OLD
Definition: ssh.h:952
const char_t * publicKey
Public key (PEM, SSH2 or OpenSSH format)
Definition: ssh.h:1145
@ SSH_CONN_STATE_KEX_ECDH_INIT
Definition: ssh.h:1047
Diffie-Hellman group.
Definition: ssh.h:1131
const CipherAlgo * cipherAlgo
Cipher algorithm.
Definition: ssh.h:1318
bool_t publicKeyOk
The provided host key is acceptable.
Definition: ssh.h:1458
@ SSH_FLAG_NO_DELAY
Definition: ssh.h:919
size_t writePos
Definition: ssh.h:1347
EcdhContext ecdhContext
ECDH context.
Definition: ssh.h:1440
@ SSH_FLAG_DELAY
Definition: ssh.h:920
char_t passwordChangePrompt[SSH_MAX_PASSWORD_CHANGE_PROMPT_LEN+1]
Password change prompt string.
Definition: ssh.h:1403
@ SSH_MSG_SERVICE_REQUEST
Definition: ssh.h:939
bool_t kexStrictReceived
"strict KEX" pseudo-algorithm received
Definition: ssh.h:1465
const char_t * kexAlgo
Selected key exchange algorithm name.
Definition: ssh.h:1406
error_t(* SshCertVerifyCallback)(SshConnection *connection, const SshCertificate *cert)
Certificate verification callback function.
Definition: ssh.h:1180
SshChannelBuffer rxBuffer
RX buffer.
Definition: ssh.h:1371
Host key.
Definition: ssh.h:1143
uint_t eventMask
Definition: ssh.h:1363
const char_t * dhParams
Diffie-Hellman parameters (PEM format)
Definition: ssh.h:1133
error_t sshPollChannels(SshChannelEventDesc *eventDesc, uint_t size, OsEvent *extEvent, systime_t timeout)
Wait for one of a set of channels to become ready to perform I/O.
Definition: ssh.c:2376
error_t sshRegisterKeyLogCallback(SshContext *context, SshKeyLogCallback callback)
Register key logging callback function (for debugging purpose only)
Definition: ssh.c:1052
bool_t etm
Encrypt-then-MAC.
Definition: ssh.h:1323
@ SSH_MSG_USERAUTH_REQUEST
Definition: ssh.h:961
bool_t eofSent
An SSH_MSG_CHANNEL_EOF message has been sent.
Definition: ssh.h:1377
General definitions for cryptographic algorithms.
SshAuthStatus(* SshPasswordChangeCallback)(SshConnection *connection, const char_t *user, const char_t *oldPassword, size_t oldPasswordLen, const char_t *newPassword, size_t newPasswordLen)
Password change callback function.
Definition: ssh.h:1220
CipherContext cipherContext
Cipher context.
Definition: ssh.h:1319
error_t(* SshEcdhKeyPairGenCallback)(SshConnection *connection, const char_t *kexAlgo, EcPublicKey *publicKey)
ECDH key pair generation callback.
Definition: ssh.h:1249
@ SSH_CHANNEL_STATE_OPEN
Definition: ssh.h:1075
SSH certificate parsing.
@ SSH_CONN_STATE_KEX_ECDH_REPLY
Definition: ssh.h:1048
@ SSH_MSG_USERAUTH_FAILURE
Definition: ssh.h:962
const char_t * serverEncAlgo
Selected server's encryption algorithm name.
Definition: ssh.h:1409
@ SSH_MSG_DEBUG
Definition: ssh.h:938
SshEncryptionEngine encryptionEngine
Encryption engine.
Definition: ssh.h:1446
SshHostKey hostKeys[SSH_MAX_HOST_KEYS]
List of host keys.
Definition: ssh.h:1489
@ SSH_MSG_PING
Definition: ssh.h:985
uint8_t iv[]
Definition: ike.h:1502
@ SSH_CONN_STATE_KEX_RSA_PUB_KEY
Definition: ssh.h:1038
error_t sshRegisterChannelOpenCallback(SshContext *context, SshChannelOpenCallback callback, void *param)
Register channel open callback function.
Definition: ssh.c:792
error_t sshRegisterHostKeyVerifyCallback(SshContext *context, SshHostKeyVerifyCallback callback)
Register host key verification callback function.
Definition: ssh.c:281
SshDisconnectReasonCode
Disconnection messages reason codes.
Definition: ssh.h:995
Block cipher modes of operation.
@ SSH_CONN_STATE_CLIENT_ID
Definition: ssh.h:1034
@ SSH_MSG_CHANNEL_OPEN_FAILURE
Definition: ssh.h:976
size_t publicKeyLen
Length of the public key.
Definition: ssh.h:1146
error_t sshSetPassword(SshContext *context, const char_t *password)
Set the password to be used for authentication.
Definition: ssh.c:251
HashContext hashContext
Exchange hash context.
Definition: ssh.h:1432
error_t sshUnregisterChannelOpenCallback(SshContext *context, SshChannelOpenCallback callback)
Unregister channel open callback function.
Definition: ssh.c:839
error_t sshUnregisterChannelRequestCallback(SshContext *context, SshChannelReqCallback callback)
Unregister channel request callback function.
Definition: ssh.c:752
#define SSH_CHANNEL_BUFFER_SIZE
Definition: ssh.h:241
@ SSH_MSG_USERAUTH_BANNER
Definition: ssh.h:964
@ SSH_DISCONNECT_CONNECTION_LOST
Definition: ssh.h:1005
Host key algorithm.
Definition: ssh.h:1161
@ SSH_REQUEST_STATE_IDLE
Definition: ssh.h:1086
error_t(* SshEcdhSharedSecretCalcCallback)(SshConnection *connection, const char_t *kexAlgo, const EcPublicKey *publicKey, uint8_t *output, size_t *outputLen)
ECDH shared secret calculation callback.
Definition: ssh.h:1257
@ SSH_MSG_DISCONNECT
Definition: ssh.h:935
SshPasswordChangeCallback passwordChangeCallback
Password change callback.
Definition: ssh.h:1516
bool_t newKeysReceived
An SSH_MSG_NEWKEYS message has been received.
Definition: ssh.h:1452
error_t sshWriteChannel(SshChannel *channel, const void *data, size_t length, size_t *written, uint_t flags)
Write data to the specified channel.
Definition: ssh.c:2051
uint8_t length
Definition: tcp.h:368
#define SSH_MAX_HOST_KEYS
Definition: ssh.h:178
@ SSH_CHANNEL_EVENT_TIMEOUT
Definition: ssh.h:1099
error_t sshRegisterConnectionCloseCallback(SshContext *context, SshConnectionCloseCallback callback, void *param)
Register connection close callback function.
Definition: ssh.c:966
error_t sshRegisterConnectionOpenCallback(SshContext *context, SshConnectionOpenCallback callback, void *param)
Register connection open callback function.
Definition: ssh.c:879
@ SSH_CONN_STATE_SERVER_NEW_KEYS
Definition: ssh.h:1052
@ SSH_AUTH_STATUS_PASSWORD_EXPIRED
Definition: ssh.h:905
SshChannelOpenCallback channelOpenCallback[SSH_MAX_CHANNEL_OPEN_CALLBACKS]
Channel open callbacks.
Definition: ssh.h:1530
CipherMode
Cipher operation modes.
Definition: crypto.h:955
uint8_t buffer[SSH_BUFFER_SIZE]
Internal buffer.
Definition: ssh.h:1468
bool_t kexInitSent
An SSH_MSG_KEXINIT message has been sent.
Definition: ssh.h:1449
String.
Definition: ssh_types.h:56
@ SSH_DISCONNECT_PROTOCOL_VERSION_NOT_SUPPORTED
Definition: ssh.h:1003
@ SSH_DISCONNECT_NO_MORE_AUTH_METHODS_AVAILABLE
Definition: ssh.h:1009
error_t(* SshConnectionOpenCallback)(SshConnection *connection, void *param)
Connection open callback function.
Definition: ssh.h:1291
error_t(* SshSignVerifyCallback)(SshConnection *connection, const SshString *publicKeyAlgo, const SshBinaryString *publicKeyBlob, const SshBinaryString *sessionId, const SshBinaryString *message, const SshBinaryString *signatureBlob)
Signature verification callback function.
Definition: ssh.h:1239
@ SSH_MSG_USERAUTH_SUCCESS
Definition: ssh.h:963
size_t rxBufferPos
Current position in RX buffer.
Definition: ssh.h:1472
@ SSH_CONN_STATE_CLOSED
Definition: ssh.h:1033
@ SSH_CHANNEL_EVENT_TX_DONE
Definition: ssh.h:1103
bool_t extInfoReceived
"ext-info-c" or "ext-info-s" indicator has been received
Definition: ssh.h:1462
const char_t * clientCompressAlgo
Selected client's encryption algorithm name.
Definition: ssh.h:1412
#define SSH_MAX_PASSWORD_CHANGE_PROMPT_LEN
Definition: ssh.h:269
@ SSH_DISCONNECT_SERVICE_NOT_AVAILABLE
Definition: ssh.h:1002
#define SSH_MAX_HASH_DIGEST_SIZE
Definition: ssh.h:789
error_t sshSetPasswordChangePrompt(SshConnection *connection, const char_t *prompt)
Set password change prompt message.
Definition: ssh.c:1934
uint8_t * serverHostKey
Server's host key.
Definition: ssh.h:1417
uint8_t k[SSH_MAX_SHARED_SECRET_LEN]
Shared secret K.
Definition: ssh.h:1428
Collection of hash algorithms.
@ SSH_CONN_STATE_USER_AUTH_SUCCESS
Definition: ssh.h:1061
Mutex object.
@ SSH_REQUEST_STATE_FAILURE
Definition: ssh.h:1089
const char_t * keyFormatId
Key format identifier.
Definition: ssh.h:1163
@ SSH_CONN_STATE_CLIENT_NEW_KEYS
Definition: ssh.h:1051
error_t sshSetUsername(SshContext *context, const char_t *username)
Set the user name to be used for authentication.
Definition: ssh.c:221
uint32_t systime_t
System time.
#define SSH_MAX_CONNECTIONS
Definition: ssh.h:185
@ SSH_DISCONNECT_PROTOCOL_ERROR
Definition: ssh.h:997
bool_t channelSuccessSent
An SSH_MSG_CHANNEL_SUCCESS message has been sent.
Definition: ssh.h:1375
EC public key.
Definition: ec.h:94
int_t hostKeyIndex
Index of the selected host key.
Definition: ssh.h:1414
uint8_t flags
Definition: tcp.h:351
void * connectionCloseParam[SSH_MAX_CONN_CLOSE_CALLBACKS]
Opaque pointer passed to the connection close callback.
Definition: ssh.h:1535
#define SSH_MAX_PASSWORD_LEN
Definition: ssh.h:262
SshKeyLogCallback keyLogCallback
Key logging callback (for debugging purpose only)
Definition: ssh.h:1537
char char_t
Definition: compiler_port.h:48
char_t serverId[SSH_MAX_ID_LEN+1]
Server's identification string.
Definition: ssh.h:1398
GCM context.
Definition: gcm.h:64
#define SSH_MAX_GLOBAL_REQ_CALLBACKS
Definition: ssh.h:192
SshConnection * connections
SSH connections.
Definition: ssh.h:1484
const char_t * publicKeyAlgo
Public key algorithm to use during user authentication.
Definition: ssh.h:1151
@ SSH_MSG_CHANNEL_OPEN
Definition: ssh.h:974
@ SSH_OPEN_CONNECT_FAILED
Definition: ssh.h:1021
#define SSH_MAX_ENC_KEY_SIZE
Definition: ssh.h:745
SshRequestState
SSH request states.
Definition: ssh.h:1085
KemContext kemContext
KEM context.
Definition: ssh.h:1443
@ SSH_DISCONNECT_AUTH_CANCELLED_BY_USER
Definition: ssh.h:1008
size_t readPos
Definition: ssh.h:1348
@ SSH_REQUEST_STATE_SUCCESS
Definition: ssh.h:1088
@ SSH_CHANNEL_EVENT_RX_SHUTDOWN
Definition: ssh.h:1107
@ SSH_CONN_STATE_SERVER_KEX_INIT
Definition: ssh.h:1037
SshChannelFlags
Flags used by read and write functions.
Definition: ssh.h:914
error_t(* SshPublicKeyAuthCallback)(SshConnection *connection, const char_t *user, const uint8_t *publicKey, size_t publicKeyLen)
Public key authentication callback function.
Definition: ssh.h:1196
@ SSH_CONN_STATE_SERVER_ID
Definition: ssh.h:1035
@ SSH_CONN_STATE_KEX_DH_INIT
Definition: ssh.h:1041
error_t sshRegisterCertAuthCallback(SshContext *context, SshCertAuthCallback callback)
Register certificate authentication callback function.
Definition: ssh.c:400
@ SSH_MSG_CHANNEL_REQUEST
Definition: ssh.h:982
const HashAlgo * hashAlgo
Exchange hash algorithm.
Definition: ssh.h:1431
@ SSH_CONN_STATE_CLIENT_EXT_INFO
Definition: ssh.h:1053
SSH data type representations.
Structure describing channel events.
Definition: ssh.h:1551
@ SSH_DISCONNECT_KEY_EXCHANGE_FAILED
Definition: ssh.h:998
@ SSH_CHANNEL_EVENT_RX_READY
Definition: ssh.h:1106
@ SSH_CONN_STATE_KEX_RSA_DONE
Definition: ssh.h:1040
const char_t * serverHostKeyAlgo
Selected server's host key algorithm name.
Definition: ssh.h:1407
HmacContext hmacContext
HMAC context.
Definition: ssh.h:1434
@ SSH_CONN_STATE_SERVICE_REQUEST
Definition: ssh.h:1056
#define SshConnection
Definition: ssh.h:874
@ SSH_FLAG_EOF
Definition: ssh.h:915
Legacy definitions.
@ SSH_MSG_CHANNEL_EOF
Definition: ssh.h:980
SshOpenFailureReasonCode
Channel connection failure reason codes.
Definition: ssh.h:1019
#define SSH_MAX_CONN_OPEN_CALLBACKS
Definition: ssh.h:213
@ SSH_CONN_STATE_USER_AUTH_REQUEST
Definition: ssh.h:1059
SshRequestState requestState
Channel request state.
Definition: ssh.h:1359
error_t sshUnregisterConnectionCloseCallback(SshContext *context, SshConnectionCloseCallback callback)
Unregister connection close callback function.
Definition: ssh.c:1013
@ SSH_MSG_CHANNEL_WINDOW_ADJUST
Definition: ssh.h:977
@ SSH_MSG_KEX_DH_GEX_INIT
Definition: ssh.h:955
@ SSH_CHANNEL_STATE_RESERVED
Definition: ssh.h:1074
@ SSH_MSG_KEXRSA_PUBKEY
Definition: ssh.h:947
error_t sshRegisterChannelRequestCallback(SshContext *context, SshChannelReqCallback callback, void *param)
Register channel request callback function.
Definition: ssh.c:705
#define Socket
Definition: socket.h:36
systime_t timestamp
Time stamp to manage connection timeout.
Definition: ssh.h:1395
@ SSH_CONN_STATE_CLIENT_KEX_INIT
Definition: ssh.h:1036
#define SSH_MAX_DH_GEX_GROUPS
Definition: ssh.h:668
@ SSH_MSG_KEX_ECDH_INIT
Definition: ssh.h:957
@ SSH_MSG_PONG
Definition: ssh.h:986
error_t sshSetOperationMode(SshContext *context, SshOperationMode mode)
Set operation mode (client or server)
Definition: ssh.c:167
size_t sessionIdLen
Length of the session identifier, in bytes.
Definition: ssh.h:1425
@ SSH_FLAG_BREAK_CRLF
Definition: ssh.h:918
@ SSH_CONN_STATE_KEX_DH_GEX_REPLY
Definition: ssh.h:1046
OsEvent * userEvent
Definition: ssh.h:1365
@ SSH_MSG_USERAUTH_INFO_REQUEST
Definition: ssh.h:969
uint8_t sessionId[SSH_MAX_HASH_DIGEST_SIZE]
Session identifier.
Definition: ssh.h:1424
uint32_t localChannelNum
Local channel number.
Definition: ssh.h:1367
Common interface for encryption algorithms.
Definition: crypto.h:1050
error_t sshRegisterCertVerifyCallback(SshContext *context, SshCertVerifyCallback callback)
Register certificate verification callback function.
Definition: ssh.c:307
#define SSH_MAX_CHANNEL_REQ_CALLBACKS
Definition: ssh.h:199
SshAuthStatus(* SshPasswordAuthCallback)(SshConnection *connection, const char_t *user, const char_t *password, size_t passwordLen)
Password authentication callback function.
Definition: ssh.h:1212
@ SSH_MSG_KEX_DH_GEX_REQUEST
Definition: ssh.h:953
SshCertAuthCallback certAuthCallback
Certificate authentication callback.
Definition: ssh.h:1512
@ SSH_MSG_REQUEST_SUCCESS
Definition: ssh.h:972
@ SSH_MSG_IGNORE
Definition: ssh.h:936
char_t password[SSH_MAX_PASSWORD_LEN+1]
Password.
Definition: ssh.h:1493
const char_t * serverCompressAlgo
Selected server's encryption algorithm name.
Definition: ssh.h:1413
Collection of MAC algorithms.
void sshDeleteChannel(SshChannel *channel)
Release channel.
Definition: ssh.c:2536
bool_t disconnectSent
An SSH_MSG_DISCONNECT message has been sent.
Definition: ssh.h:1454
SshChannelReqCallback channelReqCallback[SSH_MAX_CHANNEL_REQ_CALLBACKS]
Channel request callbacks.
Definition: ssh.h:1528
@ SSH_CONN_STATE_KEX_DH_REPLY
Definition: ssh.h:1042
size_t privateKeyLen
Length of the private key.
Definition: ssh.h:1148
@ SSH_MSG_KEX_MAX
Definition: ssh.h:946
SshConnectionOpenCallback connectionOpenCallback[SSH_MAX_CONN_OPEN_CALLBACKS]
Connection open callback function.
Definition: ssh.h:1532
uint_t dhModulusSize
Length of the prime modulus, in bits.
Definition: ssh.h:1132
@ SSH_DISCONNECT_RESERVED
Definition: ssh.h:999
@ SSH_MSG_SERVICE_ACCEPT
Definition: ssh.h:940
HmacContext * hmacContext
HMAC context.
Definition: ssh.h:1321
Common interface for hash algorithms.
Definition: crypto.h:1028
@ SSH_MSG_KEXRSA_SECRET
Definition: ssh.h:948
SshChannelState state
Channel state.
Definition: ssh.h:1358
error_t sshRegisterEcdhKeyPairGenCallback(SshContext *context, SshEcdhKeyPairGenCallback callback)
Register ECDH key pair generation callback function.
Definition: ssh.c:555
@ SSH_CONN_STATE_KEX_DH_GEX_INIT
Definition: ssh.h:1045
bool_t newKeysSent
An SSH_MSG_NEWKEYS message has been sent.
Definition: ssh.h:1451
@ SSH_MSG_UNIMPLEMENTED
Definition: ssh.h:937
@ SSH_OPEN_UNKNOWN_CHANNEL_TYPE
Definition: ssh.h:1022
void * prngContext
Pseudo-random number generator context.
Definition: ssh.h:1488
OsMutex mutex
Mutex preventing simultaneous access to the context.
Definition: ssh.h:1540
@ SSH_MSG_USERAUTH_MAX
Definition: ssh.h:966
SshRequestState requestState
Global request state.
Definition: ssh.h:1392
const char_t * serverMacAlgo
Selected server's MAC algorithm name.
Definition: ssh.h:1411
#define SSH_COOKIE_SIZE
Definition: ssh.h:859
SshPasswordAuthCallback passwordAuthCallback
Password authentication callback.
Definition: ssh.h:1515
error_t sshRegisterSignVerifyCallback(SshContext *context, SshSignVerifyCallback callback)
Register signature verification callback function.
Definition: ssh.c:524
int_t rsaKeyIndex
Index of the transient RSA key to use.
Definition: ssh.h:1416
SshSignGenCallback signGenCallback
Signature generation callback.
Definition: ssh.h:1519
SshDhGexGroup dhGexGroups[SSH_MAX_DH_GEX_GROUPS]
Diffie-Hellman groups.
Definition: ssh.h:1500
unsigned int uint_t
Definition: compiler_port.h:50
@ SSH_MSG_EXT_INFO
Definition: ssh.h:941
@ SSH_CHANNEL_STATE_CLOSED
Definition: ssh.h:1076
bool_t disconnectReceived
An SSH_MSG_DISCONNECT message has been received.
Definition: ssh.h:1455
TCP/IP stack core.
SshContext * context
SSH context.
Definition: ssh.h:1393
SshChannel * sshCreateChannel(SshConnection *connection)
Create a new SSH channel.
Definition: ssh.c:1964
char_t user[SSH_MAX_USERNAME_LEN+1]
User name.
Definition: ssh.h:1400
@ SSH_MSG_KEX_ECDH_REPLY
Definition: ssh.h:958
size_t length
Definition: ssh.h:1345
@ SSH_MSG_USERAUTH_MIN
Definition: ssh.h:965
error_t(* SshSignGenCallback)(SshConnection *connection, const char_t *publicKeyAlgo, const SshHostKey *hostKey, const SshBinaryString *sessionId, const SshBinaryString *message, uint8_t *p, size_t *written)
Signature generation callback function.
Definition: ssh.h:1229
@ SSH_MSG_KEX_DH_GEX_GROUP
Definition: ssh.h:954
SshEncryptionEngine decryptionEngine
Decryption engine.
Definition: ssh.h:1447
SshPublicKeyAuthCallback publicKeyAuthCallback
Public key authentication callback.
Definition: ssh.h:1509
OsEvent event
Definition: ssh.h:1362
error_t(* SshHostKeyVerifyCallback)(SshConnection *connection, const uint8_t *hostKey, size_t hostKeyLen)
Host key verification callback function.
Definition: ssh.h:1172
ECC (Elliptic Curve Cryptography)
#define SSH_MAX_USERNAME_LEN
Definition: ssh.h:255
@ SSH_CHANNEL_STATE_UNUSED
Definition: ssh.h:1073
SshChannel * channels
SSH channels.
Definition: ssh.h:1486
error_t sshRegisterGlobalRequestCallback(SshContext *context, SshGlobalReqCallback callback, void *param)
Register global request callback function.
Definition: ssh.c:618
SshConnectionState state
Connection state.
Definition: ssh.h:1391
uint_t modulusSize
Length of the modulus, in bits.
Definition: ssh.h:1117
DhContext dhContext
Diffie-Hellman context.
Definition: ssh.h:1437
#define SSH_BUFFER_SIZE
Definition: ssh.h:866
error_t sshSetChannelTimeout(SshChannel *channel, systime_t timeout)
Set timeout for read/write operations.
Definition: ssh.c:2027
error_t sshRegisterPublicKeyAuthCallback(SshContext *context, SshPublicKeyAuthCallback callback)
Register public key authentication callback function.
Definition: ssh.c:369
@ SSH_DISCONNECT_TOO_MANY_CONNECTIONS
Definition: ssh.h:1007
SshHostKeyVerifyCallback hostKeyVerifyCallback
Host key verification callback.
Definition: ssh.h:1503
SSH context.
Definition: ssh.h:1481
ECDH context.
Definition: ecdh.h:59
@ SSH_CONN_STATE_USER_AUTH_BANNER
Definition: ssh.h:1058
const char_t * signFormatId
Signature format identifier.
Definition: ssh.h:1164
SSH certificate (OpenSSH format)
size_t encKeyLen
Length of the encryption key, in bytes.
Definition: ssh.h:1326
SshOperationMode mode
Mode of operation (client or server)
Definition: ssh.h:1482
@ SSH_MSG_KEX_MIN
Definition: ssh.h:945
#define SshChannel
Definition: ssh.h:878
SshEcdhSharedSecretCalcCallback ecdhSharedSecretCalcCallback
ECDH shared secret calculation callback.
Definition: ssh.h:1524
Socket * socket
Underlying socket.
Definition: ssh.h:1394
uint32_t maxPacketSize
Maximum packet size.
Definition: ssh.h:1369
@ SSH_CHANNEL_EVENT_TX_ACKED
Definition: ssh.h:1104
void sshDeinit(SshContext *context)
Release SSH context.
Definition: ssh.c:2556
@ SSH_MSG_CHANNEL_EXTENDED_DATA
Definition: ssh.h:979
bool_t wrongGuess
A wrong guessed key exchange packet follows.
Definition: ssh.h:1456
SSH channel.
Definition: ssh.h:1357
size_t dhParamsLen
Length of the Diffie-Hellman parameters.
Definition: ssh.h:1134
@ SSH_DISCONNECT_ILLEGAL_USER_NAME
Definition: ssh.h:1010
@ SSH_MSG_KEXINIT
Definition: ssh.h:943