1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
|
/* server-func.c -- Functions for working with SSH server.
*
* Copyright (C) 2013, 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com>
*
* This file is part of Guile-SSH
*
* Guile-SSH is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* Guile-SSH is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>.
*/
#include <libguile.h>
#include <libssh/libssh.h>
#include <libssh/server.h>
#include "common.h"
#include "session-type.h"
#include "server-type.h"
#include "message-type.h"
#include "error.h"
#include "log.h"
/* Guile SSH specific options that are aimed to unificate the way of
server configuration. */
enum gssh_server_options {
/* Should not intersect with options from SSH server API. */
GSSH_BIND_OPTIONS_BLOCKING_MODE = 100
};
/* SSH server options mapping to Guile symbols. */
struct symbol_mapping server_options[] = {
{ "bindaddr", SSH_BIND_OPTIONS_BINDADDR },
{ "bindport", SSH_BIND_OPTIONS_BINDPORT },
{ "hostkey", SSH_BIND_OPTIONS_HOSTKEY },
{ "dsakey", SSH_BIND_OPTIONS_DSAKEY },
{ "rsakey", SSH_BIND_OPTIONS_RSAKEY },
{ "banner", SSH_BIND_OPTIONS_BANNER },
{ "log-verbosity", SSH_BIND_OPTIONS_LOG_VERBOSITY },
{ "blocking-mode", GSSH_BIND_OPTIONS_BLOCKING_MODE },
{ NULL, -1 }
};
/* Convert VALUE to a string and pass it to ssh_bind_options_set */
static inline int
set_string_opt (ssh_bind bind, int type, SCM value)
{
char *str;
int ret;
SCM_ASSERT (scm_is_string (value), value, SCM_ARG3, "server-set!");
str = scm_to_locale_string (value);
ret = ssh_bind_options_set (bind, type, str);
free (str);
return ret;
}
/* Convert VALUE to int32 and pass it to ssh_bind_options_set */
static inline int
set_int32_opt (ssh_bind bind, int type, SCM value)
{
int32_t c_value;
SCM_ASSERT (scm_is_integer (value), value, SCM_ARG3, "server-set!");
c_value = scm_to_int (value);
return ssh_bind_options_set (bind, type, &c_value);
}
/* Convert VALUE to uint32 and pass it to ssh_bind_options_set */
static inline int
set_uint32_opt (ssh_bind bind, int type, SCM value)
{
unsigned int c_value;
SCM_ASSERT (scm_is_unsigned_integer (value, 0, UINT32_MAX), value,
SCM_ARG3, "server-set!");
c_value = scm_to_uint32 (value);
return ssh_bind_options_set (bind, type, &c_value);
}
/* Set a SSH bind BIND to blocking/nonblocking mode according to value
VALUE. VALUE is expected to be #t or #f.
Always return SSH_OK. */
static inline int
set_blocking_mode (ssh_bind bind, SCM value)
{
SCM_ASSERT (scm_is_bool (value), value, SCM_ARG2, "server-set!");
ssh_bind_set_blocking (bind, scm_to_bool (value));
return SSH_OK;
}
/* Convert Scheme symbol to libssh constant and set the corresponding
option to the value of the constant. */
static inline int
set_sym_opt (ssh_bind bind, int type, struct symbol_mapping *sm, SCM value)
{
const struct symbol_mapping *opt = _scm_to_ssh_const (sm, value);
if (! opt)
guile_ssh_error1 ("server-set!", "Wrong value", value);
return ssh_bind_options_set (bind, type, &opt->value);
}
static int
set_option (ssh_bind bind, int type, SCM value)
{
switch (type)
{
case SSH_BIND_OPTIONS_BINDADDR:
case SSH_BIND_OPTIONS_HOSTKEY:
case SSH_BIND_OPTIONS_DSAKEY:
case SSH_BIND_OPTIONS_RSAKEY:
case SSH_BIND_OPTIONS_BANNER:
return set_string_opt (bind, type, value);
case SSH_BIND_OPTIONS_BINDPORT:
return set_uint32_opt (bind, type, value);
case SSH_BIND_OPTIONS_LOG_VERBOSITY:
return set_sym_opt (bind, type, log_verbosity, value);
case GSSH_BIND_OPTIONS_BLOCKING_MODE:
return set_blocking_mode (bind, value);
default:
guile_ssh_error1 ("server-set!",
"Operation is not supported yet: %a~%",
scm_from_int (type));
}
return -1; /* ERROR */
}
SCM_DEFINE (guile_ssh_server_set_x, "server-set!", 3, 0, 0,
(SCM server, SCM option, SCM value),
"\
Set a SSH server option.\n\
Return value is undefined.\
")
#define FUNC_NAME s_guile_ssh_server_set_x
{
struct server_data *server_data = _scm_to_server_data (server);
const struct symbol_mapping *opt; /* Server option */
int res;
SCM_ASSERT (scm_is_symbol (option), option, SCM_ARG2, FUNC_NAME);
opt = _scm_to_ssh_const (server_options, option);
if (! opt)
guile_ssh_error1 (FUNC_NAME, "No such option", option);
res = set_option (server_data->bind, opt->value, value);
if (res != SSH_OK)
{
guile_ssh_error1 (FUNC_NAME, "Unable to set the option",
scm_list_3 (server, option, value));
}
server_data->options = scm_assoc_set_x (server_data->options, option, value);
scm_remember_upto_here_1 (server);
return SCM_UNDEFINED;
}
#undef FUNC_NAME
SCM_DEFINE (guile_ssh_server_get, "server-get", 2, 0, 0,
(SCM server, SCM option),
"\
Get a Guile-SSH server option. Return option value, or `#f' if option is\n\
not set. Throw `guile-ssh-error' on error.\
")
#define FUNC_NAME s_guile_ssh_server_get
{
const struct server_data *sd = _scm_to_server_data (server);
const struct symbol_mapping *opt = _scm_to_ssh_const (server_options, option);
if (! opt)
guile_ssh_error1 (FUNC_NAME, "No such option", option);
return scm_assoc_ref (sd->options, option);
}
#undef FUNC_NAME
SCM_DEFINE (guile_ssh_server_listen, "server-listen", 1, 0, 0,
(SCM server),
"\
Start listening to the socket.\n\
Return value is undefined.\
")
#define FUNC_NAME s_guile_ssh_server_listen
{
struct server_data *server_data = _scm_to_server_data (server);
int res = ssh_bind_listen (server_data->bind);
if (res != SSH_OK)
guile_ssh_error1 (FUNC_NAME, "Couldn't listen the socket.", server);
return SCM_UNDEFINED;
}
#undef FUNC_NAME
SCM_DEFINE (guile_ssh_server_accept, "server-accept", 1, 0, 0,
(SCM server),
"\
Accept an incoming ssh connection to the SERVER.\n\
Throw `guile-ssh-error' on error. Return a new SSH session.\
")
#define FUNC_NAME s_guile_ssh_server_accept
{
struct server_data *server_data = _scm_to_server_data (server);
SCM session = guile_ssh_make_session ();
struct session_data *session_data = _scm_to_session_data (session);
int res = ssh_bind_accept (server_data->bind, session_data->ssh_session);
if (res != SSH_OK)
guile_ssh_session_error1 (FUNC_NAME, session_data->ssh_session, session);
return session;
}
#undef FUNC_NAME
SCM_DEFINE (guile_ssh_server_handle_key_exchange,
"server-handle-key-exchange", 1, 0, 0,
(SCM session),
"\
Handle key exchange for a server SERVER and setup encryption.\n\
Return value is undefined.\
")
#define FUNC_NAME s_guile_ssh_server_handle_key_exchange
{
struct session_data *session_data = _scm_to_session_data (session);
int res = ssh_handle_key_exchange (session_data->ssh_session);
if (res != SSH_OK)
guile_ssh_session_error1 (FUNC_NAME, session_data->ssh_session, session);
return SCM_UNDEFINED;
}
#undef FUNC_NAME
SCM_DEFINE (guile_ssh_server_message_get,
"server-message-get", 1, 0, 0,
(SCM session),
"\
Get a message.\
")
{
SCM smob;
struct session_data *session_data = _scm_to_session_data (session);
struct message_data *message_data
= (struct message_data *) scm_gc_malloc (sizeof (struct message_data),
"message");
message_data->message = ssh_message_get (session_data->ssh_session);
if (! message_data->message)
{
scm_gc_free (message_data, sizeof (struct message_data), "message");
return SCM_BOOL_F;
}
message_data->session = session;
SCM_NEWSMOB (smob, message_tag, message_data);
return smob;
}
/* Initialize server related functions. */
void
init_server_func (void)
{
#include "server-func.x"
}
/* server-func.c ends here */
|