libssh  0.8.2
The SSH library
packet.h
1 /*
2  * This file is part of the SSH Library
3  *
4  * Copyright (c) 2009 by Aris Adamantiadis
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #ifndef PACKET_H_
22 #define PACKET_H_
23 
24 #include "libssh/wrapper.h"
25 
26 struct ssh_socket_struct;
27 
28 /* this structure should go someday */
29 typedef struct packet_struct {
30  int valid;
31  uint32_t len;
32  uint8_t type;
33 } PACKET;
34 
36 enum ssh_packet_state_e {
38  PACKET_STATE_INIT,
40  PACKET_STATE_SIZEREAD,
43  PACKET_STATE_PROCESSING
44 };
45 
46 int ssh_packet_send(ssh_session session);
47 
48 SSH_PACKET_CALLBACK(ssh_packet_unimplemented);
49 SSH_PACKET_CALLBACK(ssh_packet_disconnect_callback);
50 SSH_PACKET_CALLBACK(ssh_packet_ignore_callback);
51 SSH_PACKET_CALLBACK(ssh_packet_dh_reply);
52 SSH_PACKET_CALLBACK(ssh_packet_newkeys);
53 SSH_PACKET_CALLBACK(ssh_packet_service_accept);
54 
55 #ifdef WITH_SERVER
56 SSH_PACKET_CALLBACK(ssh_packet_kexdh_init);
57 #endif
58 
59 int ssh_packet_send_unimplemented(ssh_session session, uint32_t seqnum);
60 int ssh_packet_parse_type(ssh_session session);
61 //int packet_flush(ssh_session session, int enforce_blocking);
62 
63 int ssh_packet_socket_callback(const void *data, size_t len, void *user);
64 void ssh_packet_register_socket_callback(ssh_session session, struct ssh_socket_struct *s);
65 void ssh_packet_set_callbacks(ssh_session session, ssh_packet_callbacks callbacks);
66 void ssh_packet_set_default_callbacks(ssh_session session);
67 void ssh_packet_process(ssh_session session, uint8_t type);
68 
69 /* PACKET CRYPT */
70 uint32_t ssh_packet_decrypt_len(ssh_session session, uint8_t *destination, uint8_t *source);
71 int ssh_packet_decrypt(ssh_session session, uint8_t *destination, uint8_t *source,
72  size_t start, size_t encrypted_size);
73 unsigned char *ssh_packet_encrypt(ssh_session session,
74  void *packet,
75  unsigned int len);
76 int ssh_packet_hmac_verify(ssh_session session,ssh_buffer buffer,
77  unsigned char *mac, enum ssh_hmac_e type);
78 
79 #endif /* PACKET_H_ */
Definition: callbacks.h:530
Definition: session.h:96
Definition: packet.h:29
#define SSH_PACKET_CALLBACK(name)
This macro declares a packet callback handler.
Definition: callbacks.h:527
Definition: socket.c:76
Definition: buffer.h:34