2016-03-15 02:47:36 +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-15 02:47:36 +00:00
|
|
|
*
|
2016-03-25 19:59:40 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2016-03-15 02:47:36 +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-15 02:47:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "clipboard.h"
|
|
|
|
#include "input.h"
|
|
|
|
#include "settings.h"
|
|
|
|
#include "telnet.h"
|
|
|
|
#include "terminal.h"
|
|
|
|
#include "user.h"
|
|
|
|
|
|
|
|
#include <guacamole/client.h>
|
|
|
|
#include <guacamole/socket.h>
|
|
|
|
#include <guacamole/user.h>
|
|
|
|
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
int guac_telnet_user_join_handler(guac_user* user, int argc, char** argv) {
|
|
|
|
|
|
|
|
guac_client* client = user->client;
|
|
|
|
guac_telnet_client* telnet_client = (guac_telnet_client*) client->data;
|
|
|
|
|
2016-07-25 04:34:21 +00:00
|
|
|
/* Parse provided arguments */
|
|
|
|
guac_telnet_settings* settings = guac_telnet_parse_args(user,
|
|
|
|
argc, (const char**) argv);
|
|
|
|
|
|
|
|
/* Fail if settings cannot be parsed */
|
|
|
|
if (settings == NULL) {
|
|
|
|
guac_user_log(user, GUAC_LOG_INFO,
|
|
|
|
"Badly formatted client arguments.");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Store settings at user level */
|
|
|
|
user->data = settings;
|
|
|
|
|
2016-03-15 02:47:36 +00:00
|
|
|
/* Connect via telnet if owner */
|
|
|
|
if (user->owner) {
|
|
|
|
|
2016-07-25 04:34:21 +00:00
|
|
|
/* Store owner's settings at client level */
|
|
|
|
telnet_client->settings = settings;
|
2016-03-15 02:47:36 +00:00
|
|
|
|
|
|
|
/* Start client thread */
|
|
|
|
if (pthread_create(&(telnet_client->client_thread), NULL,
|
|
|
|
guac_telnet_client_thread, (void*) client)) {
|
|
|
|
guac_client_abort(client, GUAC_PROTOCOL_STATUS_SERVER_ERROR,
|
|
|
|
"Unable to start telnet client thread");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If not owner, synchronize with current display */
|
|
|
|
else {
|
|
|
|
guac_terminal_dup(telnet_client->term, user, user->socket);
|
|
|
|
guac_socket_flush(user->socket);
|
|
|
|
}
|
|
|
|
|
2016-07-25 05:03:08 +00:00
|
|
|
/* Only handle events if not read-only */
|
|
|
|
if (!settings->read_only) {
|
|
|
|
|
|
|
|
/* General mouse/keyboard/clipboard events */
|
|
|
|
user->key_handler = guac_telnet_user_key_handler;
|
|
|
|
user->mouse_handler = guac_telnet_user_mouse_handler;
|
|
|
|
user->clipboard_handler = guac_telnet_clipboard_handler;
|
|
|
|
|
|
|
|
/* Display size change events */
|
|
|
|
user->size_handler = guac_telnet_user_size_handler;
|
|
|
|
|
|
|
|
}
|
2016-03-15 02:47:36 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-04-19 02:03:38 +00:00
|
|
|
int guac_telnet_user_leave_handler(guac_user* user) {
|
|
|
|
|
|
|
|
guac_telnet_client* telnet_client =
|
|
|
|
(guac_telnet_client*) user->client->data;
|
|
|
|
|
2016-07-25 04:34:21 +00:00
|
|
|
/* Update shared cursor state */
|
2016-04-19 02:03:38 +00:00
|
|
|
guac_common_cursor_remove_user(telnet_client->term->cursor, user);
|
|
|
|
|
2016-07-25 04:34:21 +00:00
|
|
|
/* Free settings if not owner (owner settings will be freed with client) */
|
|
|
|
if (!user->owner) {
|
|
|
|
guac_telnet_settings* settings = (guac_telnet_settings*) user->data;
|
|
|
|
guac_telnet_settings_free(settings);
|
|
|
|
}
|
|
|
|
|
2016-04-19 02:03:38 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|