libssh  0.8.0
buffer.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 BUFFER_H_
22 #define BUFFER_H_
23 
24 #include <stdarg.h>
25 
26 #include "libssh/libssh.h"
27 /*
28  * Describes a buffer state
29  * [XXXXXXXXXXXXDATA PAYLOAD XXXXXXXXXXXXXXXXXXXXXXXX]
30  * ^ ^ ^ ^]
31  * \_data points\_pos points here \_used points here | /
32  * here Allocated
33  */
34 struct ssh_buffer_struct {
35  char *data;
36  uint32_t used;
37  uint32_t allocated;
38  uint32_t pos;
39  int secure;
40 };
41 
42 #define SSH_BUFFER_PACK_END ((uint32_t) 0x4f65feb3)
43 
44 void ssh_buffer_set_secure(ssh_buffer buffer);
45 int ssh_buffer_add_ssh_string(ssh_buffer buffer, ssh_string string);
46 int ssh_buffer_add_u8(ssh_buffer buffer, uint8_t data);
47 int ssh_buffer_add_u16(ssh_buffer buffer, uint16_t data);
48 int ssh_buffer_add_u32(ssh_buffer buffer, uint32_t data);
49 int ssh_buffer_add_u64(ssh_buffer buffer, uint64_t data);
50 
51 int ssh_buffer_validate_length(struct ssh_buffer_struct *buffer, size_t len);
52 
53 int ssh_buffer_pack_va(struct ssh_buffer_struct *buffer,
54  const char *format,
55  int argc,
56  va_list ap);
57 int _ssh_buffer_pack(struct ssh_buffer_struct *buffer,
58  const char *format,
59  int argc,
60  ...);
61 #define ssh_buffer_pack(buffer, format, ...) \
62  _ssh_buffer_pack((buffer), (format), __VA_NARG__(__VA_ARGS__), __VA_ARGS__, SSH_BUFFER_PACK_END)
63 
64 int ssh_buffer_unpack_va(struct ssh_buffer_struct *buffer,
65  const char *format, int argc,
66  va_list ap);
67 int _ssh_buffer_unpack(struct ssh_buffer_struct *buffer,
68  const char *format,
69  int argc,
70  ...);
71 #define ssh_buffer_unpack(buffer, format, ...) \
72  _ssh_buffer_unpack((buffer), (format), __VA_NARG__(__VA_ARGS__), __VA_ARGS__, SSH_BUFFER_PACK_END)
73 
74 int ssh_buffer_prepend_data(ssh_buffer buffer, const void *data, uint32_t len);
75 int ssh_buffer_add_buffer(ssh_buffer buffer, ssh_buffer source);
76 
77 /* buffer_read_*() returns the number of bytes read, except for ssh strings */
78 int ssh_buffer_get_u8(ssh_buffer buffer, uint8_t *data);
79 int ssh_buffer_get_u32(ssh_buffer buffer, uint32_t *data);
80 int ssh_buffer_get_u64(ssh_buffer buffer, uint64_t *data);
81 
82 /* ssh_buffer_get_ssh_string() is an exception. if the String read is too large or invalid, it will answer NULL. */
83 ssh_string ssh_buffer_get_ssh_string(ssh_buffer buffer);
84 /* ssh_gets a string out of a SSH-1 mpint */
85 ssh_string ssh_buffer_get_mpint(ssh_buffer buffer);
86 /* ssh_buffer_pass_bytes acts as if len bytes have been read (used for padding) */
87 uint32_t ssh_buffer_pass_bytes_end(ssh_buffer buffer, uint32_t len);
88 uint32_t ssh_buffer_pass_bytes(ssh_buffer buffer, uint32_t len);
89 
90 #endif /* BUFFER_H_ */
int ssh_buffer_validate_length(struct ssh_buffer_struct *buffer, size_t len)
Valdiates that the given length can be obtained from the buffer.
Definition: buffer.c:596
void ssh_buffer_set_secure(ssh_buffer buffer)
Sets the buffer as secure.
Definition: buffer.c:125