Add enable-sftp option, init/free SFTP as needed.

This commit is contained in:
Michael Jumper 2013-10-18 15:37:16 -07:00
parent 271f7fbb2f
commit 02fece0a29
4 changed files with 50 additions and 0 deletions

View File

@ -65,6 +65,7 @@ const char* GUAC_CLIENT_ARGS[] = {
"password",
"font-name",
"font-size",
"enable-sftp",
NULL
};
@ -100,6 +101,11 @@ enum __SSH_ARGS_IDX {
*/
IDX_FONT_SIZE,
/**
* Whether SFTP should be enabled.
*/
IDX_ENABLE_SFTP,
SSH_ARGS_COUNT
};
@ -139,6 +145,10 @@ int guac_client_init(guac_client* client, int argc, char** argv) {
else
client_data->font_size = GUAC_SSH_DEFAULT_FONT_SIZE;
/* Parse SFTP enable */
client_data->enable_sftp = strcmp(argv[IDX_ENABLE_SFTP], "true") == 0;
client_data->sftp_session = NULL;
/* Read port */
if (argv[IDX_PORT][0] != 0)
client_data->port = atoi(argv[IDX_PORT]);

View File

@ -41,6 +41,7 @@
#include <pthread.h>
#include <libssh/libssh.h>
#include <libssh/sftp.h>
#include "terminal.h"
#include "cursor.h"
@ -80,6 +81,11 @@ typedef struct ssh_guac_client_data {
*/
int font_size;
/**
* Whether SFTP is enabled.
*/
bool enable_sftp;
/**
* The SSH client thread.
*/
@ -90,6 +96,11 @@ typedef struct ssh_guac_client_data {
*/
ssh_session session;
/**
* SFTP session, used for file transfers.
*/
sftp_session sftp_session;
/**
* SSH terminal channel, used by the SSH client thread.
*/

View File

@ -430,6 +430,10 @@ int ssh_guac_client_free_handler(guac_client* client) {
/* Free channels */
ssh_channel_free(guac_client_data->term_channel);
/* Clean up SFTP */
if (guac_client_data->sftp_session)
sftp_free(guac_client_data->sftp_session);
/* Free session */
ssh_free(guac_client_data->session);

View File

@ -45,6 +45,7 @@
#include <guacamole/socket.h>
#include <libssh/libssh.h>
#include <libssh/sftp.h>
#include "client.h"
#include "common.h"
@ -206,6 +207,30 @@ void* ssh_client_thread(void* data) {
return NULL;
}
/* Start SFTP session as well, if enabled */
if (client_data->enable_sftp) {
/* Request SFTP */
client_data->sftp_session = sftp_new(client_data->session);
if (client_data->sftp_session == NULL) {
guac_protocol_send_error(socket, "Unable to start SFTP session..",
GUAC_PROTOCOL_STATUS_INTERNAL_ERROR);
guac_socket_flush(socket);
return NULL;
}
/* Init SFTP */
if (sftp_init(client_data->sftp_session) != SSH_OK) {
guac_protocol_send_error(socket, "Unable to initialize SFTP session.",
GUAC_PROTOCOL_STATUS_INTERNAL_ERROR);
guac_socket_flush(socket);
return NULL;
}
guac_client_log_info(client, "SFTP session initialized");
}
/* Request PTY */
if (channel_request_pty_size(client_data->term_channel, "linux",
client_data->term->term_width, client_data->term->term_height) != SSH_OK) {