2013-12-29 04:53:12 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Glyptodon LLC
|
2011-08-04 18:46:21 +00:00
|
|
|
*
|
2013-12-29 04:53:12 +00:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2011-08-04 18:46:21 +00:00
|
|
|
*
|
2013-12-29 04:53:12 +00:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
2011-08-04 18:46:21 +00:00
|
|
|
*
|
2013-12-29 04:53:12 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2011-08-04 18:46:21 +00:00
|
|
|
|
|
|
|
#ifndef _SSH_GUAC_CLIENT_H
|
|
|
|
#define _SSH_GUAC_CLIENT_H
|
|
|
|
|
2014-01-01 22:44:28 +00:00
|
|
|
#include "config.h"
|
2011-08-04 18:46:21 +00:00
|
|
|
|
2013-04-09 20:54:23 +00:00
|
|
|
#include "cursor.h"
|
2014-04-09 18:40:09 +00:00
|
|
|
#include "guac_clipboard.h"
|
2013-10-28 21:11:04 +00:00
|
|
|
#include "sftp.h"
|
2013-12-01 23:39:29 +00:00
|
|
|
#include "ssh_key.h"
|
2014-01-01 22:44:28 +00:00
|
|
|
#include "terminal.h"
|
|
|
|
|
|
|
|
#include <pthread.h>
|
|
|
|
|
|
|
|
#include <libssh2.h>
|
|
|
|
#include <libssh2_sftp.h>
|
2011-08-04 18:46:21 +00:00
|
|
|
|
2013-12-03 10:22:46 +00:00
|
|
|
#ifdef ENABLE_SSH_AGENT
|
|
|
|
#include "ssh_agent.h"
|
|
|
|
#endif
|
|
|
|
|
2014-04-09 18:40:09 +00:00
|
|
|
/**
|
|
|
|
* The maximum number of bytes to allow within the clipboard.
|
|
|
|
*/
|
|
|
|
#define GUAC_SSH_CLIPBOARD_MAX_LENGTH 262144
|
|
|
|
|
2013-05-18 03:20:51 +00:00
|
|
|
/**
|
|
|
|
* SSH-specific client data.
|
|
|
|
*/
|
2011-08-04 18:46:21 +00:00
|
|
|
typedef struct ssh_guac_client_data {
|
|
|
|
|
2013-05-26 06:56:59 +00:00
|
|
|
/**
|
|
|
|
* The hostname of the SSH server to connect to.
|
|
|
|
*/
|
2013-05-20 08:23:21 +00:00
|
|
|
char hostname[1024];
|
2013-05-26 06:56:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The port of the SSH server to connect to.
|
|
|
|
*/
|
2013-12-02 00:26:41 +00:00
|
|
|
char port[64];
|
2013-05-26 06:56:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the user to login as.
|
|
|
|
*/
|
2013-05-20 08:23:21 +00:00
|
|
|
char username[1024];
|
2013-05-26 06:56:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The password to give when authenticating.
|
|
|
|
*/
|
2013-05-20 08:23:21 +00:00
|
|
|
char password[1024];
|
|
|
|
|
2013-10-31 06:19:11 +00:00
|
|
|
/**
|
|
|
|
* The private key, encoded as base64.
|
|
|
|
*/
|
|
|
|
char key_base64[4096];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The password to use to decrypt the given private key.
|
|
|
|
*/
|
|
|
|
char key_passphrase[1024];
|
|
|
|
|
2013-10-30 22:46:13 +00:00
|
|
|
/**
|
|
|
|
* The private key to use for authentication, if any.
|
|
|
|
*/
|
2013-12-01 23:39:29 +00:00
|
|
|
ssh_key* key;
|
2013-10-30 22:46:13 +00:00
|
|
|
|
2013-05-26 06:56:59 +00:00
|
|
|
/**
|
|
|
|
* The name of the font to use for display rendering.
|
|
|
|
*/
|
2013-05-26 06:50:13 +00:00
|
|
|
char font_name[1024];
|
2013-05-26 06:56:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The size of the font to use, in points.
|
|
|
|
*/
|
2013-05-26 06:50:13 +00:00
|
|
|
int font_size;
|
|
|
|
|
2013-10-18 22:37:16 +00:00
|
|
|
/**
|
|
|
|
* Whether SFTP is enabled.
|
|
|
|
*/
|
|
|
|
bool enable_sftp;
|
|
|
|
|
2013-12-02 10:07:17 +00:00
|
|
|
#ifdef ENABLE_SSH_AGENT
|
|
|
|
/**
|
|
|
|
* Whether the SSH agent is enabled.
|
|
|
|
*/
|
|
|
|
bool enable_agent;
|
2013-12-03 10:22:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The current agent, if any.
|
|
|
|
*/
|
|
|
|
ssh_auth_agent* auth_agent;
|
2013-12-02 10:07:17 +00:00
|
|
|
#endif
|
|
|
|
|
2013-05-26 06:56:59 +00:00
|
|
|
/**
|
|
|
|
* The SSH client thread.
|
|
|
|
*/
|
2013-05-18 03:58:47 +00:00
|
|
|
pthread_t client_thread;
|
2013-05-18 03:47:05 +00:00
|
|
|
|
2013-05-26 06:56:59 +00:00
|
|
|
/**
|
|
|
|
* SSH session, used by the SSH client thread.
|
|
|
|
*/
|
2013-12-01 23:39:29 +00:00
|
|
|
LIBSSH2_SESSION* session;
|
2013-05-26 06:56:59 +00:00
|
|
|
|
2013-10-19 05:05:03 +00:00
|
|
|
/**
|
|
|
|
* The distinct SSH session used for SFTP.
|
|
|
|
*/
|
2013-12-01 23:39:29 +00:00
|
|
|
LIBSSH2_SESSION* sftp_ssh_session;
|
2013-10-19 05:05:03 +00:00
|
|
|
|
2013-10-18 22:37:16 +00:00
|
|
|
/**
|
|
|
|
* SFTP session, used for file transfers.
|
|
|
|
*/
|
2013-12-01 23:39:29 +00:00
|
|
|
LIBSSH2_SFTP* sftp_session;
|
2013-10-18 22:37:16 +00:00
|
|
|
|
2013-10-28 21:11:04 +00:00
|
|
|
/**
|
|
|
|
* The path files will be sent to.
|
|
|
|
*/
|
|
|
|
char sftp_upload_path[GUAC_SFTP_MAX_PATH];
|
|
|
|
|
2013-05-26 06:56:59 +00:00
|
|
|
/**
|
|
|
|
* SSH terminal channel, used by the SSH client thread.
|
|
|
|
*/
|
2013-12-01 23:39:29 +00:00
|
|
|
LIBSSH2_CHANNEL* term_channel;
|
2011-08-04 18:46:21 +00:00
|
|
|
|
2013-05-18 03:20:51 +00:00
|
|
|
/**
|
|
|
|
* The terminal which will render all output from the SSH client.
|
|
|
|
*/
|
2012-12-09 08:35:37 +00:00
|
|
|
guac_terminal* term;
|
2013-05-18 03:20:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The current contents of the clipboard.
|
|
|
|
*/
|
2014-04-09 18:40:09 +00:00
|
|
|
guac_common_clipboard* clipboard;
|
2011-08-05 02:17:44 +00:00
|
|
|
|
2013-05-26 05:45:26 +00:00
|
|
|
/**
|
|
|
|
* Whether the alt key is currently being held down.
|
|
|
|
*/
|
|
|
|
int mod_alt;
|
|
|
|
|
2013-05-18 03:20:51 +00:00
|
|
|
/**
|
|
|
|
* Whether the control key is currently being held down.
|
|
|
|
*/
|
2011-08-22 06:24:40 +00:00
|
|
|
int mod_ctrl;
|
2013-05-18 03:20:51 +00:00
|
|
|
|
2013-05-26 07:17:31 +00:00
|
|
|
/**
|
|
|
|
* Whether the shift key is currently being held down.
|
|
|
|
*/
|
|
|
|
int mod_shift;
|
|
|
|
|
2013-05-18 03:20:51 +00:00
|
|
|
/**
|
|
|
|
* The current mouse button state.
|
|
|
|
*/
|
2011-12-30 22:34:04 +00:00
|
|
|
int mouse_mask;
|
2011-08-22 06:24:40 +00:00
|
|
|
|
2013-04-09 20:54:23 +00:00
|
|
|
/**
|
|
|
|
* The cached I-bar cursor.
|
|
|
|
*/
|
2014-05-05 23:36:49 +00:00
|
|
|
guac_terminal_cursor* ibar_cursor;
|
2013-04-09 20:54:23 +00:00
|
|
|
|
2013-04-09 21:02:52 +00:00
|
|
|
/**
|
|
|
|
* The cached invisible (blank) cursor.
|
|
|
|
*/
|
2014-05-05 23:36:49 +00:00
|
|
|
guac_terminal_cursor* blank_cursor;
|
2013-04-09 21:02:52 +00:00
|
|
|
|
2013-04-09 20:54:23 +00:00
|
|
|
/**
|
|
|
|
* The current cursor, used to avoid re-setting the cursor.
|
|
|
|
*/
|
2014-05-05 23:36:49 +00:00
|
|
|
guac_terminal_cursor* current_cursor;
|
2013-04-09 20:54:23 +00:00
|
|
|
|
2011-08-04 18:46:21 +00:00
|
|
|
} ssh_guac_client_data;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|