2016-03-01 05:42:57 +00:00
|
|
|
/*
|
2016-03-25 19:59:40 +00:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
* or more contributor license agreements. See the NOTICE file
|
|
|
|
* distributed with this work for additional information
|
|
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
|
|
* to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance
|
|
|
|
* with the License. You may obtain a copy of the License at
|
2016-03-01 05:42:57 +00:00
|
|
|
*
|
2016-03-25 19:59:40 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2016-03-01 05:42:57 +00:00
|
|
|
*
|
2016-03-25 19:59:40 +00:00
|
|
|
* Unless required by applicable law or agreed to in writing,
|
|
|
|
* software distributed under the License is distributed on an
|
|
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
* KIND, either express or implied. See the License for the
|
|
|
|
* specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2016-03-01 05:42:57 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GUAC_VNC_SETTINGS_H
|
|
|
|
#define __GUAC_VNC_SETTINGS_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
2016-02-29 07:51:46 +00:00
|
|
|
/**
|
|
|
|
* The filename to use for the screen recording, if not specified.
|
|
|
|
*/
|
|
|
|
#define GUAC_VNC_DEFAULT_RECORDING_NAME "recording"
|
|
|
|
|
2016-03-01 05:42:57 +00:00
|
|
|
/**
|
|
|
|
* VNC-specific client data.
|
|
|
|
*/
|
|
|
|
typedef struct guac_vnc_settings {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The hostname of the VNC server (or repeater) to connect to.
|
|
|
|
*/
|
|
|
|
char* hostname;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The port of the VNC server (or repeater) to connect to.
|
|
|
|
*/
|
|
|
|
int port;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The password given in the arguments.
|
|
|
|
*/
|
|
|
|
char* password;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Space-separated list of encodings to use within the VNC session.
|
|
|
|
*/
|
|
|
|
char* encodings;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the red and blue components of each color should be swapped.
|
|
|
|
* This is mainly used for VNC servers that do not properly handle
|
|
|
|
* colors.
|
|
|
|
*/
|
|
|
|
bool swap_red_blue;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The color depth to request, in bits.
|
|
|
|
*/
|
|
|
|
int color_depth;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether this connection is read-only, and user input should be dropped.
|
|
|
|
*/
|
|
|
|
bool read_only;
|
|
|
|
|
2016-03-03 20:58:46 +00:00
|
|
|
#ifdef ENABLE_VNC_REPEATER
|
2016-03-01 05:42:57 +00:00
|
|
|
/**
|
|
|
|
* The VNC host to connect to, if using a repeater.
|
|
|
|
*/
|
|
|
|
char* dest_host;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The VNC port to connect to, if using a repeater.
|
|
|
|
*/
|
|
|
|
int dest_port;
|
2016-03-03 20:58:46 +00:00
|
|
|
#endif
|
2016-03-01 05:42:57 +00:00
|
|
|
|
|
|
|
#ifdef ENABLE_VNC_LISTEN
|
|
|
|
/**
|
|
|
|
* Whether not actually connecting to a VNC server, but rather listening
|
|
|
|
* for a connection from the VNC server (reverse connection).
|
|
|
|
*/
|
|
|
|
bool reverse_connect;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The maximum amount of time to wait when listening for connections, in
|
|
|
|
* milliseconds.
|
|
|
|
*/
|
|
|
|
int listen_timeout;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the cursor should be rendered on the server (remote) or on the
|
|
|
|
* client (local).
|
|
|
|
*/
|
2016-03-04 01:29:20 +00:00
|
|
|
bool remote_cursor;
|
2016-03-03 20:58:46 +00:00
|
|
|
|
|
|
|
#ifdef ENABLE_PULSE
|
2016-03-01 05:42:57 +00:00
|
|
|
/**
|
|
|
|
* Whether audio is enabled.
|
|
|
|
*/
|
|
|
|
bool audio_enabled;
|
2016-03-03 20:58:46 +00:00
|
|
|
|
2016-03-01 05:42:57 +00:00
|
|
|
/**
|
|
|
|
* The name of the PulseAudio server to connect to.
|
|
|
|
*/
|
|
|
|
char* pa_servername;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The number of connection attempts to make before giving up.
|
|
|
|
*/
|
|
|
|
int retries;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The encoding to use for clipboard data sent to the VNC server, or NULL
|
|
|
|
* to use the encoding required by the VNC standard.
|
|
|
|
*/
|
|
|
|
char* clipboard_encoding;
|
|
|
|
|
|
|
|
#ifdef ENABLE_COMMON_SSH
|
2016-03-03 20:58:46 +00:00
|
|
|
/**
|
|
|
|
* Whether SFTP should be enabled for the VNC connection.
|
|
|
|
*/
|
2016-03-01 05:42:57 +00:00
|
|
|
bool enable_sftp;
|
|
|
|
|
2016-03-03 20:58:46 +00:00
|
|
|
/**
|
|
|
|
* The hostname of the SSH server to connect to for SFTP.
|
|
|
|
*/
|
2016-03-01 05:42:57 +00:00
|
|
|
char* sftp_hostname;
|
|
|
|
|
2018-04-05 12:52:16 +00:00
|
|
|
/**
|
|
|
|
* The public SSH host key.
|
|
|
|
*/
|
|
|
|
char* sftp_host_key;
|
|
|
|
|
2016-03-03 20:58:46 +00:00
|
|
|
/**
|
|
|
|
* The port of the SSH server to connect to for SFTP.
|
|
|
|
*/
|
2016-03-01 05:42:57 +00:00
|
|
|
char* sftp_port;
|
|
|
|
|
2016-03-03 20:58:46 +00:00
|
|
|
/**
|
|
|
|
* The username to provide when authenticating with the SSH server for
|
|
|
|
* SFTP.
|
|
|
|
*/
|
2016-03-01 05:42:57 +00:00
|
|
|
char* sftp_username;
|
|
|
|
|
2016-03-03 20:58:46 +00:00
|
|
|
/**
|
|
|
|
* The password to provide when authenticating with the SSH server for
|
|
|
|
* SFTP (if not using a private key).
|
|
|
|
*/
|
2016-03-01 05:42:57 +00:00
|
|
|
char* sftp_password;
|
|
|
|
|
2016-03-03 20:58:46 +00:00
|
|
|
/**
|
|
|
|
* The base64-encoded private key to use when authenticating with the SSH
|
|
|
|
* server for SFTP (if not using a password).
|
|
|
|
*/
|
2016-03-01 05:42:57 +00:00
|
|
|
char* sftp_private_key;
|
|
|
|
|
2016-03-03 20:58:46 +00:00
|
|
|
/**
|
|
|
|
* The passphrase to use to decrypt the provided base64-encoded private
|
|
|
|
* key.
|
|
|
|
*/
|
2016-03-01 05:42:57 +00:00
|
|
|
char* sftp_passphrase;
|
|
|
|
|
2016-03-03 20:58:46 +00:00
|
|
|
/**
|
|
|
|
* The default location for file uploads within the SSH server. This will
|
|
|
|
* apply only to uploads which do not use the filesystem guac_object (where
|
|
|
|
* the destination directory is otherwise ambiguous).
|
|
|
|
*/
|
2016-03-01 05:42:57 +00:00
|
|
|
char* sftp_directory;
|
2017-06-01 00:52:07 +00:00
|
|
|
|
2017-06-29 22:48:23 +00:00
|
|
|
/**
|
|
|
|
* The path of the directory within the SSH server to expose as a
|
|
|
|
* filesystem guac_object.
|
|
|
|
*/
|
|
|
|
char* sftp_root_directory;
|
|
|
|
|
2017-06-01 00:52:07 +00:00
|
|
|
/**
|
|
|
|
* The interval at which SSH keepalive messages are sent to the server for
|
|
|
|
* SFTP connections. The default is 0 (disabling keepalives), and a value
|
|
|
|
* of 1 is automatically increased to 2 by libssh2 to avoid busy loop corner
|
|
|
|
* cases.
|
|
|
|
*/
|
2017-06-25 08:49:05 +00:00
|
|
|
int sftp_server_alive_interval;
|
2016-03-01 05:42:57 +00:00
|
|
|
#endif
|
|
|
|
|
2016-02-29 07:51:46 +00:00
|
|
|
/**
|
|
|
|
* The path in which the screen recording should be saved, if enabled. If
|
|
|
|
* no screen recording should be saved, this will be NULL.
|
|
|
|
*/
|
|
|
|
char* recording_path;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The filename to use for the screen recording, if enabled.
|
|
|
|
*/
|
|
|
|
char* recording_name;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the screen recording path should be automatically created if it
|
|
|
|
* does not already exist.
|
|
|
|
*/
|
|
|
|
bool create_recording_path;
|
|
|
|
|
2017-12-08 20:06:30 +00:00
|
|
|
/**
|
|
|
|
* Whether output which is broadcast to each connected client (graphics,
|
|
|
|
* streams, etc.) should NOT be included in the session recording. Output
|
|
|
|
* is included by default, as it is necessary for any recording which must
|
|
|
|
* later be viewable as video.
|
|
|
|
*/
|
|
|
|
bool recording_exclude_output;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether changes to mouse state, such as position and buttons pressed or
|
|
|
|
* released, should NOT be included in the session recording. Mouse state
|
|
|
|
* is included by default, as it is necessary for the mouse cursor to be
|
|
|
|
* rendered in any resulting video.
|
|
|
|
*/
|
|
|
|
bool recording_exclude_mouse;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether keys pressed and released should be included in the session
|
|
|
|
* recording. Key events are NOT included by default within the recording,
|
|
|
|
* as doing so has privacy and security implications. Including key events
|
|
|
|
* may be necessary in certain auditing contexts, but should only be done
|
|
|
|
* with caution. Key events can easily contain sensitive information, such
|
|
|
|
* as passwords, credit card numbers, etc.
|
|
|
|
*/
|
|
|
|
bool recording_include_keys;
|
|
|
|
|
2016-03-01 05:42:57 +00:00
|
|
|
} guac_vnc_settings;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parses all given args, storing them in a newly-allocated settings object. If
|
|
|
|
* the args fail to parse, NULL is returned.
|
|
|
|
*
|
|
|
|
* @param user
|
|
|
|
* The user who submitted the given arguments while joining the
|
|
|
|
* connection.
|
|
|
|
*
|
|
|
|
* @param argc
|
|
|
|
* The number of arguments within the argv array.
|
|
|
|
*
|
|
|
|
* @param argv
|
|
|
|
* The values of all arguments provided by the user.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* A newly-allocated settings object which must be freed with
|
|
|
|
* guac_vnc_settings_free() when no longer needed. If the arguments fail
|
|
|
|
* to parse, NULL is returned.
|
|
|
|
*/
|
|
|
|
guac_vnc_settings* guac_vnc_parse_args(guac_user* user,
|
|
|
|
int argc, const char** argv);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Frees the given guac_vnc_settings object, having been previously allocated
|
|
|
|
* via guac_vnc_parse_args().
|
|
|
|
*
|
|
|
|
* @param settings
|
|
|
|
* The settings object to free.
|
|
|
|
*/
|
|
|
|
void guac_vnc_settings_free(guac_vnc_settings* settings);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* NULL-terminated array of accepted client args.
|
|
|
|
*/
|
|
|
|
extern const char* GUAC_VNC_CLIENT_ARGS[];
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|