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