-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsession-type.c
208 lines (172 loc) · 4.78 KB
/
session-type.c
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
/* session-type.c -- SSH session smob.
*
* Copyright (C) 2013, 2014, 2015, 2016 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 <config.h>
#include <libguile.h>
#include <libssh/libssh.h>
#include <string.h>
#include "session-type.h"
#include "channel-type.h"
#include "session-func.h"
#include "error.h"
#include "common.h"
static const char* GSSH_SESSION_TYPE_NAME = "session";
scm_t_bits session_tag; /* Smob tag. */
static SCM
_mark (SCM session_smob)
{
if (! gssh_session_freed_p (session_smob))
{
gssh_session_t *sd = gssh_session_from_scm (session_smob);
scm_gc_mark (sd->channels);
return sd->callbacks;
}
else
{
return SCM_BOOL_F;
}
}
/* Handle GC'ing of the session smob. */
static size_t
_free (SCM session)
{
if (! gssh_session_freed_p (session))
{
gssh_session_t *sd = gssh_session_from_scm (session);
guile_ssh_disconnect (session);
ssh_free (sd->ssh_session);
SCM_SET_SMOB_DATA (session, NULL);
}
return 0;
}
static SCM
_equalp (SCM x1, SCM x2)
{
return compare_objects(x1, x2, (converter_t) gssh_session_from_scm);
}
static int
_print (SCM session, SCM port, scm_print_state *pstate)
{
char *user = NULL;
char *host = NULL;
unsigned int ssh_port;
int res;
scm_puts ("#<session ", port);
if (! gssh_session_freed_p (session))
{
gssh_session_t *sd = gssh_session_from_scm (session);
res = ssh_options_get (sd->ssh_session, SSH_OPTIONS_USER, &user);
scm_display ((res == SSH_OK)
? scm_from_locale_string (user)
: SCM_UNDEFINED,
port);
ssh_string_free_char (user);
scm_putc ('@', port);
res = ssh_options_get (sd->ssh_session, SSH_OPTIONS_HOST, &host);
scm_display ((res == SSH_OK)
? scm_from_locale_string (host)
: SCM_UNDEFINED,
port);
ssh_string_free_char (host);
scm_putc (':', port);
res = ssh_options_get_port (sd->ssh_session, &ssh_port);
scm_display ((res == SSH_OK)
? scm_from_int (ssh_port)
: SCM_UNDEFINED,
port);
scm_puts (ssh_is_connected (sd->ssh_session) ? " (connected) "
: " (disconnected) ",
port);
}
else
{
scm_puts ("(freed) ", port);
}
scm_display (_scm_object_hex_address (session), port);
scm_putc ('>', port);
return 1;
}
/* Internal procedure.
Add a CHANNEL to the channel list of a SESSION. */
void
gssh_session_add_channel_x (gssh_session_t* session, SCM channel)
{
session->channels = scm_cons (channel, session->channels);
}
/* Internal procedure. */
void
gssh_session_del_channel_x (gssh_session_t* session, SCM channel)
{
session->channels = scm_delete (channel, session->channels);
}
/* Internal procedure. */
void
gssh_session_close_all_channels_x (gssh_session_t* session)
{
int32_t length;
while ((length = scm_to_int (scm_length (session->channels))) > 0) {
scm_close_port (scm_list_ref (session->channels, scm_from_int (0)));
}
}
/**
* Internal procedure.
*
* Create a Guile-SSH session object.
*/
gssh_session_t*
make_gssh_session ()
{
return (gssh_session_t *) scm_gc_malloc (sizeof (gssh_session_t),
GSSH_SESSION_TYPE_NAME);
}
/* Helper procedures */
SCM
gssh_session_to_scm (gssh_session_t* session)
{
SCM smob;
SCM_NEWSMOB (smob, session_tag, session);
return smob;
}
/* Convert SCM object to a SSH session */
gssh_session_t*
gssh_session_from_scm (SCM x)
#define FUNC_NAME "gssh_session_from_scm"
{
scm_assert_smob_type (session_tag, x);
return (gssh_session_t *) SCM_SMOB_DATA (x);
}
#undef FUNC_NAME
/**
* Check if a SESSION is freed.
*/
int
gssh_session_freed_p (SCM session)
{
return SCM_SMOBNUM (session) == 0;
}
/* session smob initialization. */
void
init_session_type (void)
{
session_tag = scm_make_smob_type (GSSH_SESSION_TYPE_NAME,
sizeof (gssh_session_t));
set_smob_callbacks (session_tag, _mark, _free, _equalp, _print);
#include "session-type.x"
}
/* session.c ends here */