GUAC-1171: Add SFTP filesystem support to VNC.
This commit is contained in:
parent
b26aefd487
commit
1500e63050
@ -46,6 +46,7 @@ endif
|
|||||||
libguac_client_vnc_la_CFLAGS = \
|
libguac_client_vnc_la_CFLAGS = \
|
||||||
-Werror -Wall -pedantic -Iinclude \
|
-Werror -Wall -pedantic -Iinclude \
|
||||||
@COMMON_INCLUDE@ \
|
@COMMON_INCLUDE@ \
|
||||||
|
@COMMON_SSH_INCLUDE@ \
|
||||||
@LIBGUAC_INCLUDE@
|
@LIBGUAC_INCLUDE@
|
||||||
|
|
||||||
libguac_client_vnc_la_LDFLAGS = \
|
libguac_client_vnc_la_LDFLAGS = \
|
||||||
@ -56,5 +57,6 @@ libguac_client_vnc_la_LDFLAGS = \
|
|||||||
|
|
||||||
libguac_client_vnc_la_LIBADD = \
|
libguac_client_vnc_la_LIBADD = \
|
||||||
@COMMON_LTLIB@ \
|
@COMMON_LTLIB@ \
|
||||||
|
@COMMON_SSH_LTLIB@ \
|
||||||
@LIBGUAC_LTLIB@
|
@LIBGUAC_LTLIB@
|
||||||
|
|
||||||
|
@ -28,6 +28,8 @@
|
|||||||
#include "guac_dot_cursor.h"
|
#include "guac_dot_cursor.h"
|
||||||
#include "guac_handlers.h"
|
#include "guac_handlers.h"
|
||||||
#include "guac_pointer_cursor.h"
|
#include "guac_pointer_cursor.h"
|
||||||
|
#include "guac_sftp.h"
|
||||||
|
#include "guac_ssh.h"
|
||||||
#include "vnc_handlers.h"
|
#include "vnc_handlers.h"
|
||||||
|
|
||||||
#ifdef ENABLE_PULSE
|
#ifdef ENABLE_PULSE
|
||||||
@ -71,6 +73,16 @@ const char* GUAC_CLIENT_ARGS[] = {
|
|||||||
"listen-timeout",
|
"listen-timeout",
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef ENABLE_COMMON_SSH
|
||||||
|
"enable-sftp",
|
||||||
|
"sftp-hostname",
|
||||||
|
"sftp-port",
|
||||||
|
"sftp-username",
|
||||||
|
"sftp-password",
|
||||||
|
"sftp-private-key",
|
||||||
|
"sftp-passphrase",
|
||||||
|
#endif
|
||||||
|
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -101,6 +113,16 @@ enum VNC_ARGS_IDX {
|
|||||||
IDX_LISTEN_TIMEOUT,
|
IDX_LISTEN_TIMEOUT,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef ENABLE_COMMON_SSH
|
||||||
|
IDX_ENABLE_SFTP,
|
||||||
|
IDX_SFTP_HOSTNAME,
|
||||||
|
IDX_SFTP_PORT,
|
||||||
|
IDX_SFTP_USERNAME,
|
||||||
|
IDX_SFTP_PASSWORD,
|
||||||
|
IDX_SFTP_PRIVATE_KEY,
|
||||||
|
IDX_SFTP_PASSPHRASE,
|
||||||
|
#endif
|
||||||
|
|
||||||
VNC_ARGS_COUNT
|
VNC_ARGS_COUNT
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -337,6 +359,74 @@ int guac_client_init(guac_client* client, int argc, char** argv) {
|
|||||||
} /* end if audio enabled */
|
} /* end if audio enabled */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef ENABLE_COMMON_SSH
|
||||||
|
guac_common_ssh_init(client);
|
||||||
|
|
||||||
|
/* Connect via SSH if SFTP is enabled */
|
||||||
|
if (strcmp(argv[IDX_ENABLE_SFTP], "true") == 0) {
|
||||||
|
|
||||||
|
guac_client_log(client, GUAC_LOG_DEBUG,
|
||||||
|
"Connecting via SSH for SFTP filesystem access.");
|
||||||
|
|
||||||
|
guac_common_ssh_user* user =
|
||||||
|
guac_common_ssh_create_user(argv[IDX_SFTP_USERNAME]);
|
||||||
|
|
||||||
|
/* Import private key, if given */
|
||||||
|
if (argv[IDX_SFTP_PRIVATE_KEY][0] != '\0') {
|
||||||
|
|
||||||
|
guac_client_log(client, GUAC_LOG_DEBUG,
|
||||||
|
"Authenticating with private key.");
|
||||||
|
|
||||||
|
/* Abort if private key cannot be read */
|
||||||
|
if (guac_common_ssh_user_import_key(user,
|
||||||
|
argv[IDX_SFTP_PRIVATE_KEY],
|
||||||
|
argv[IDX_SFTP_PASSPHRASE]))
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Otherwise, use specified password */
|
||||||
|
else {
|
||||||
|
guac_client_log(client, GUAC_LOG_DEBUG,
|
||||||
|
"Authenticating with password.");
|
||||||
|
guac_common_ssh_user_set_password(user, argv[IDX_SFTP_PASSWORD]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Parse hostname - use VNC hostname by default */
|
||||||
|
const char* sftp_hostname = argv[IDX_SFTP_HOSTNAME];
|
||||||
|
if (sftp_hostname[0] == '\0')
|
||||||
|
sftp_hostname = guac_client_data->hostname;
|
||||||
|
|
||||||
|
/* Parse port, defaulting to standard SSH port */
|
||||||
|
const char* sftp_port = argv[IDX_SFTP_PORT];
|
||||||
|
if (sftp_port[0] == '\0')
|
||||||
|
sftp_port = "22";
|
||||||
|
|
||||||
|
/* Attempt SSH connection */
|
||||||
|
guac_common_ssh_session* session =
|
||||||
|
guac_common_ssh_create_session(client, sftp_hostname, sftp_port,
|
||||||
|
user);
|
||||||
|
|
||||||
|
/* Fail if SSH connection does not succeed */
|
||||||
|
if (session == NULL) {
|
||||||
|
/* Already aborted within guac_common_ssh_create_session() */
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Load and expose filesystem */
|
||||||
|
guac_client_data->sftp_filesystem =
|
||||||
|
guac_common_ssh_create_sftp_filesystem(session, "/");
|
||||||
|
|
||||||
|
/* Abort if SFTP connection fails */
|
||||||
|
if (guac_client_data->sftp_filesystem == NULL)
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
guac_client_log(client, GUAC_LOG_DEBUG,
|
||||||
|
"SFTP connection succeeded.");
|
||||||
|
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Set remaining client data */
|
/* Set remaining client data */
|
||||||
guac_client_data->rfb_client = rfb_client;
|
guac_client_data->rfb_client = rfb_client;
|
||||||
guac_client_data->copy_rect_used = 0;
|
guac_client_data->copy_rect_used = 0;
|
||||||
|
@ -36,6 +36,10 @@
|
|||||||
#include <pulse/pulseaudio.h>
|
#include <pulse/pulseaudio.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef ENABLE_COMMON_SSH
|
||||||
|
#include "guac_sftp.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The maximum duration of a frame in milliseconds.
|
* The maximum duration of a frame in milliseconds.
|
||||||
*/
|
*/
|
||||||
@ -186,6 +190,13 @@ typedef struct vnc_guac_client_data {
|
|||||||
*/
|
*/
|
||||||
guac_common_surface* default_surface;
|
guac_common_surface* default_surface;
|
||||||
|
|
||||||
|
#ifdef ENABLE_COMMON_SSH
|
||||||
|
/**
|
||||||
|
* The exposed filesystem object, implemented with SFTP.
|
||||||
|
*/
|
||||||
|
guac_object* sftp_filesystem;
|
||||||
|
#endif
|
||||||
|
|
||||||
} vnc_guac_client_data;
|
} vnc_guac_client_data;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -31,6 +31,11 @@
|
|||||||
#include <guacamole/timestamp.h>
|
#include <guacamole/timestamp.h>
|
||||||
#include <rfb/rfbclient.h>
|
#include <rfb/rfbclient.h>
|
||||||
|
|
||||||
|
#ifdef ENABLE_COMMON_SSH
|
||||||
|
#include <guac_sftp.h>
|
||||||
|
#include <guac_ssh.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef ENABLE_PULSE
|
#ifdef ENABLE_PULSE
|
||||||
#include "pulse.h"
|
#include "pulse.h"
|
||||||
#endif
|
#endif
|
||||||
@ -135,6 +140,14 @@ int vnc_guac_client_free_handler(guac_client* client) {
|
|||||||
guac_pa_stop_stream(client);
|
guac_pa_stop_stream(client);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef ENABLE_COMMON_SSH
|
||||||
|
/* Free SFTP filesystem, if loaded */
|
||||||
|
if (guac_client_data->sftp_filesystem)
|
||||||
|
guac_common_ssh_destroy_sftp_filesystem(guac_client_data->sftp_filesystem);
|
||||||
|
|
||||||
|
guac_common_ssh_uninit();
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Free encodings string, if used */
|
/* Free encodings string, if used */
|
||||||
if (guac_client_data->encodings != NULL)
|
if (guac_client_data->encodings != NULL)
|
||||||
free(guac_client_data->encodings);
|
free(guac_client_data->encodings);
|
||||||
|
Loading…
Reference in New Issue
Block a user