2013-12-29 04:53:12 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Glyptodon LLC
|
2011-02-16 02:48:02 +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-02-16 02:48:02 +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-02-16 02:48:02 +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.
|
|
|
|
*/
|
|
|
|
|
2014-01-01 22:44:28 +00:00
|
|
|
#include "config.h"
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2014-01-01 22:44:28 +00:00
|
|
|
#include "client.h"
|
|
|
|
#include "log.h"
|
2011-02-09 03:58:26 +00:00
|
|
|
|
2014-06-11 00:25:40 +00:00
|
|
|
#include <guacamole/client.h>
|
|
|
|
#include <guacamole/error.h>
|
|
|
|
#include <guacamole/instruction.h>
|
|
|
|
#include <guacamole/plugin.h>
|
|
|
|
#include <guacamole/protocol.h>
|
|
|
|
#include <guacamole/socket.h>
|
|
|
|
|
|
|
|
#ifdef ENABLE_SSL
|
|
|
|
#include <openssl/ssl.h>
|
|
|
|
#include "socket-ssl.h"
|
|
|
|
#endif
|
|
|
|
|
2014-01-01 22:44:28 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2014-06-11 00:25:40 +00:00
|
|
|
#include <getopt.h>
|
2014-01-01 22:44:28 +00:00
|
|
|
#include <libgen.h>
|
2011-12-11 07:17:25 +00:00
|
|
|
#include <netdb.h>
|
2010-12-08 21:14:04 +00:00
|
|
|
#include <netinet/in.h>
|
2014-01-01 22:44:28 +00:00
|
|
|
#include <signal.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2011-11-26 00:30:17 +00:00
|
|
|
#include <syslog.h>
|
2014-01-01 22:44:28 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
2013-07-22 20:37:30 +00:00
|
|
|
|
2012-10-03 16:21:39 +00:00
|
|
|
#define GUACD_DEV_NULL "/dev/null"
|
|
|
|
#define GUACD_ROOT "/"
|
|
|
|
|
2013-07-22 20:37:30 +00:00
|
|
|
void guacd_handle_connection(guac_socket* socket) {
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
guac_client* client;
|
2011-11-26 00:30:17 +00:00
|
|
|
guac_client_plugin* plugin;
|
|
|
|
guac_instruction* select;
|
2012-10-22 22:06:07 +00:00
|
|
|
guac_instruction* size;
|
|
|
|
guac_instruction* audio;
|
|
|
|
guac_instruction* video;
|
2011-11-26 00:30:17 +00:00
|
|
|
guac_instruction* connect;
|
2012-08-29 18:32:19 +00:00
|
|
|
int init_result;
|
2011-11-26 00:30:17 +00:00
|
|
|
|
2014-04-14 19:01:36 +00:00
|
|
|
/* Reset guac_error */
|
|
|
|
guac_error = GUAC_STATUS_SUCCESS;
|
|
|
|
guac_error_message = NULL;
|
|
|
|
|
2011-11-26 00:30:17 +00:00
|
|
|
/* Get protocol from select instruction */
|
2012-09-07 03:45:21 +00:00
|
|
|
select = guac_instruction_expect(
|
2011-11-30 20:03:27 +00:00
|
|
|
socket, GUACD_USEC_TIMEOUT, "select");
|
2011-11-26 00:30:17 +00:00
|
|
|
if (select == NULL) {
|
2011-11-26 07:28:49 +00:00
|
|
|
|
|
|
|
/* Log error */
|
2011-11-28 00:07:04 +00:00
|
|
|
guacd_log_guac_error("Error reading \"select\"");
|
2011-11-26 07:28:49 +00:00
|
|
|
|
|
|
|
/* Free resources */
|
2012-10-20 01:48:04 +00:00
|
|
|
guac_socket_free(socket);
|
2011-12-06 08:53:18 +00:00
|
|
|
return;
|
2011-11-26 00:30:17 +00:00
|
|
|
}
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-26 00:30:17 +00:00
|
|
|
/* Validate args to select */
|
|
|
|
if (select->argc != 1) {
|
2011-11-26 07:28:49 +00:00
|
|
|
|
|
|
|
/* Log error */
|
2012-03-16 02:11:51 +00:00
|
|
|
guacd_log_error("Bad number of arguments to \"select\" (%i)",
|
2011-11-26 07:28:49 +00:00
|
|
|
select->argc);
|
|
|
|
|
|
|
|
/* Free resources */
|
2012-10-20 01:48:04 +00:00
|
|
|
guac_socket_free(socket);
|
2011-12-06 08:53:18 +00:00
|
|
|
return;
|
2011-11-26 00:30:17 +00:00
|
|
|
}
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2012-03-16 02:11:51 +00:00
|
|
|
guacd_log_info("Protocol \"%s\" selected", select->argv[0]);
|
2011-11-26 07:28:49 +00:00
|
|
|
|
2011-11-26 00:30:17 +00:00
|
|
|
/* Get plugin from protocol in select */
|
|
|
|
plugin = guac_client_plugin_open(select->argv[0]);
|
|
|
|
guac_instruction_free(select);
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-26 00:30:17 +00:00
|
|
|
if (plugin == NULL) {
|
2011-11-26 07:28:49 +00:00
|
|
|
|
|
|
|
/* Log error */
|
2011-11-28 00:07:04 +00:00
|
|
|
guacd_log_guac_error("Error loading client plugin");
|
2011-11-26 07:28:49 +00:00
|
|
|
|
|
|
|
/* Free resources */
|
2012-10-20 01:48:04 +00:00
|
|
|
guac_socket_free(socket);
|
2011-12-06 08:53:18 +00:00
|
|
|
return;
|
2010-12-08 21:14:04 +00:00
|
|
|
}
|
|
|
|
|
2011-11-26 00:30:17 +00:00
|
|
|
/* Send args response */
|
2011-11-26 00:42:46 +00:00
|
|
|
if (guac_protocol_send_args(socket, plugin->args)
|
|
|
|
|| guac_socket_flush(socket)) {
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-26 07:28:49 +00:00
|
|
|
/* Log error */
|
2011-11-28 00:07:04 +00:00
|
|
|
guacd_log_guac_error("Error sending \"args\"");
|
2011-11-26 07:28:49 +00:00
|
|
|
|
|
|
|
if (guac_client_plugin_close(plugin))
|
2011-11-28 00:07:04 +00:00
|
|
|
guacd_log_guac_error("Error closing client plugin");
|
2011-11-26 00:30:17 +00:00
|
|
|
|
2012-10-20 01:48:04 +00:00
|
|
|
guac_socket_free(socket);
|
2011-12-06 08:53:18 +00:00
|
|
|
return;
|
2010-12-08 21:14:04 +00:00
|
|
|
}
|
|
|
|
|
2012-10-22 22:06:07 +00:00
|
|
|
/* Get optimal screen size */
|
|
|
|
size = guac_instruction_expect(
|
|
|
|
socket, GUACD_USEC_TIMEOUT, "size");
|
|
|
|
if (size == NULL) {
|
|
|
|
|
|
|
|
/* Log error */
|
|
|
|
guacd_log_guac_error("Error reading \"size\"");
|
|
|
|
|
|
|
|
/* Free resources */
|
|
|
|
guac_socket_free(socket);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get supported audio formats */
|
|
|
|
audio = guac_instruction_expect(
|
|
|
|
socket, GUACD_USEC_TIMEOUT, "audio");
|
|
|
|
if (audio == NULL) {
|
|
|
|
|
|
|
|
/* Log error */
|
|
|
|
guacd_log_guac_error("Error reading \"audio\"");
|
|
|
|
|
|
|
|
/* Free resources */
|
|
|
|
guac_socket_free(socket);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get supported video formats */
|
|
|
|
video = guac_instruction_expect(
|
|
|
|
socket, GUACD_USEC_TIMEOUT, "video");
|
|
|
|
if (video == NULL) {
|
|
|
|
|
|
|
|
/* Log error */
|
|
|
|
guacd_log_guac_error("Error reading \"video\"");
|
|
|
|
|
|
|
|
/* Free resources */
|
|
|
|
guac_socket_free(socket);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-26 00:30:17 +00:00
|
|
|
/* Get args from connect instruction */
|
2012-09-07 03:45:21 +00:00
|
|
|
connect = guac_instruction_expect(
|
2011-11-30 20:03:27 +00:00
|
|
|
socket, GUACD_USEC_TIMEOUT, "connect");
|
2011-11-26 00:30:17 +00:00
|
|
|
if (connect == NULL) {
|
|
|
|
|
2011-11-26 07:28:49 +00:00
|
|
|
/* Log error */
|
2011-11-28 00:07:04 +00:00
|
|
|
guacd_log_guac_error("Error reading \"connect\"");
|
2011-11-26 07:28:49 +00:00
|
|
|
|
|
|
|
if (guac_client_plugin_close(plugin))
|
2011-11-28 00:07:04 +00:00
|
|
|
guacd_log_guac_error("Error closing client plugin");
|
2011-11-26 00:30:17 +00:00
|
|
|
|
2012-10-20 01:48:04 +00:00
|
|
|
guac_socket_free(socket);
|
2011-12-06 08:53:18 +00:00
|
|
|
return;
|
2011-11-26 00:30:17 +00:00
|
|
|
}
|
|
|
|
|
2012-08-29 18:32:19 +00:00
|
|
|
/* Get client */
|
|
|
|
client = guac_client_alloc();
|
2014-06-26 22:09:44 +00:00
|
|
|
if (client == NULL) {
|
|
|
|
guacd_log_guac_error("Client could not be allocated");
|
|
|
|
guac_socket_free(socket);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-08-29 18:32:19 +00:00
|
|
|
client->socket = socket;
|
|
|
|
client->log_info_handler = guacd_client_log_info;
|
|
|
|
client->log_error_handler = guacd_client_log_error;
|
|
|
|
|
2012-10-22 22:06:07 +00:00
|
|
|
/* Parse optimal screen dimensions from size instruction */
|
|
|
|
client->info.optimal_width = atoi(size->argv[0]);
|
|
|
|
client->info.optimal_height = atoi(size->argv[1]);
|
|
|
|
|
2013-12-27 08:07:17 +00:00
|
|
|
/* If DPI given, set the client resolution */
|
|
|
|
if (size->argc >= 3)
|
|
|
|
client->info.optimal_resolution = atoi(size->argv[2]);
|
|
|
|
|
|
|
|
/* Otherwise, use a safe default for rough backwards compatibility */
|
|
|
|
else
|
|
|
|
client->info.optimal_resolution = 96;
|
|
|
|
|
2012-10-30 23:16:59 +00:00
|
|
|
/* Store audio mimetypes */
|
|
|
|
client->info.audio_mimetypes = malloc(sizeof(char*) * (audio->argc+1));
|
|
|
|
memcpy(client->info.audio_mimetypes, audio->argv,
|
|
|
|
sizeof(char*) * audio->argc);
|
|
|
|
client->info.audio_mimetypes[audio->argc] = NULL;
|
|
|
|
|
|
|
|
/* Store video mimetypes */
|
|
|
|
client->info.video_mimetypes = malloc(sizeof(char*) * (video->argc+1));
|
|
|
|
memcpy(client->info.video_mimetypes, video->argv,
|
|
|
|
sizeof(char*) * video->argc);
|
|
|
|
client->info.video_mimetypes[video->argc] = NULL;
|
|
|
|
|
2014-06-26 22:32:35 +00:00
|
|
|
/* Send connection ID */
|
|
|
|
guacd_log_info("Connection ID is \"%s\"", client->connection_id);
|
|
|
|
guac_protocol_send_ready(socket, client->connection_id);
|
|
|
|
|
2012-08-29 18:32:19 +00:00
|
|
|
/* Init client */
|
2012-08-29 18:37:35 +00:00
|
|
|
init_result = guac_client_plugin_init_client(plugin,
|
|
|
|
client, connect->argc, connect->argv);
|
2012-03-13 22:53:08 +00:00
|
|
|
|
2011-11-26 20:18:57 +00:00
|
|
|
guac_instruction_free(connect);
|
2011-11-26 00:30:17 +00:00
|
|
|
|
2012-08-29 18:32:19 +00:00
|
|
|
/* If client could not be started, free everything and fail */
|
|
|
|
if (init_result) {
|
|
|
|
|
|
|
|
guac_client_free(client);
|
2011-11-26 00:30:17 +00:00
|
|
|
|
2011-11-28 00:07:04 +00:00
|
|
|
guacd_log_guac_error("Error instantiating client");
|
2011-11-26 07:28:49 +00:00
|
|
|
|
|
|
|
if (guac_client_plugin_close(plugin))
|
2011-11-28 00:07:04 +00:00
|
|
|
guacd_log_guac_error("Error closing client plugin");
|
2011-11-26 00:30:17 +00:00
|
|
|
|
2012-10-20 01:48:04 +00:00
|
|
|
guac_socket_free(socket);
|
2011-12-06 08:53:18 +00:00
|
|
|
return;
|
2011-11-26 00:30:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Start client threads */
|
2012-03-16 02:11:51 +00:00
|
|
|
guacd_log_info("Starting client");
|
2011-12-06 08:41:08 +00:00
|
|
|
if (guacd_client_start(client))
|
2012-03-16 02:11:51 +00:00
|
|
|
guacd_log_error("Client finished abnormally");
|
2011-11-27 06:26:39 +00:00
|
|
|
else
|
2012-03-16 02:11:51 +00:00
|
|
|
guacd_log_info("Client finished normally");
|
2011-11-26 00:30:17 +00:00
|
|
|
|
2012-10-30 23:16:59 +00:00
|
|
|
/* Free mimetype lists */
|
|
|
|
free(client->info.audio_mimetypes);
|
|
|
|
free(client->info.video_mimetypes);
|
|
|
|
|
2012-11-30 04:02:39 +00:00
|
|
|
/* Free remaining instructions */
|
|
|
|
guac_instruction_free(audio);
|
|
|
|
guac_instruction_free(video);
|
|
|
|
guac_instruction_free(size);
|
|
|
|
|
2011-11-26 00:30:17 +00:00
|
|
|
/* Clean up */
|
|
|
|
guac_client_free(client);
|
2011-11-26 07:28:49 +00:00
|
|
|
if (guac_client_plugin_close(plugin))
|
2012-03-16 02:11:51 +00:00
|
|
|
guacd_log_error("Error closing client plugin");
|
2011-11-26 00:30:17 +00:00
|
|
|
|
|
|
|
/* Close socket */
|
2012-10-20 01:48:04 +00:00
|
|
|
guac_socket_free(socket);
|
2011-11-26 00:30:17 +00:00
|
|
|
|
2012-10-03 16:21:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int redirect_fd(int fd, int flags) {
|
|
|
|
|
|
|
|
/* Attempt to open bit bucket */
|
|
|
|
int new_fd = open(GUACD_DEV_NULL, flags);
|
|
|
|
if (new_fd < 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
/* If descriptor is different, redirect old to new and close new */
|
|
|
|
if (new_fd != fd) {
|
|
|
|
dup2(new_fd, fd);
|
|
|
|
close(new_fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int daemonize() {
|
|
|
|
|
|
|
|
pid_t pid;
|
|
|
|
|
|
|
|
/* Fork once to ensure we aren't the process group leader */
|
|
|
|
pid = fork();
|
|
|
|
if (pid < 0) {
|
|
|
|
guacd_log_error("Could not fork() parent: %s", strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Exit if we are the parent */
|
2012-10-03 17:03:20 +00:00
|
|
|
if (pid > 0) {
|
|
|
|
guacd_log_info("Exiting and passing control to PID %i", pid);
|
|
|
|
_exit(0);
|
|
|
|
}
|
2012-10-03 16:21:39 +00:00
|
|
|
|
|
|
|
/* Start a new session (if not already group leader) */
|
|
|
|
setsid();
|
|
|
|
|
|
|
|
/* Fork again so the session group leader exits */
|
|
|
|
pid = fork();
|
|
|
|
if (pid < 0) {
|
|
|
|
guacd_log_error("Could not fork() group leader: %s", strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Exit if we are the parent */
|
2012-10-03 17:03:20 +00:00
|
|
|
if (pid > 0) {
|
|
|
|
guacd_log_info("Exiting and passing control to PID %i", pid);
|
|
|
|
_exit(0);
|
|
|
|
}
|
2012-10-03 16:21:39 +00:00
|
|
|
|
|
|
|
/* Change to root directory */
|
|
|
|
if (chdir(GUACD_ROOT) < 0) {
|
|
|
|
guacd_log_error(
|
|
|
|
"Unable to change working directory to "
|
|
|
|
GUACD_ROOT);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reopen the 3 stdxxx to /dev/null */
|
|
|
|
|
|
|
|
if (redirect_fd(STDIN_FILENO, O_RDONLY)
|
|
|
|
|| redirect_fd(STDOUT_FILENO, O_WRONLY)
|
|
|
|
|| redirect_fd(STDERR_FILENO, O_WRONLY)) {
|
|
|
|
|
|
|
|
guacd_log_error(
|
|
|
|
"Unable to redirect standard file descriptors to "
|
|
|
|
GUACD_DEV_NULL);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Success */
|
|
|
|
return 0;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
|
|
|
|
/* Server */
|
|
|
|
int socket_fd;
|
2011-12-11 07:17:25 +00:00
|
|
|
struct addrinfo* addresses;
|
|
|
|
struct addrinfo* current_address;
|
|
|
|
char bound_address[1024];
|
|
|
|
char bound_port[64];
|
2011-04-22 06:49:14 +00:00
|
|
|
int opt_on = 1;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2012-03-01 22:05:12 +00:00
|
|
|
struct addrinfo hints = {
|
|
|
|
.ai_family = AF_UNSPEC,
|
|
|
|
.ai_socktype = SOCK_STREAM,
|
|
|
|
.ai_protocol = IPPROTO_TCP
|
|
|
|
};
|
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
/* Client */
|
|
|
|
struct sockaddr_in client_addr;
|
2011-04-21 22:54:29 +00:00
|
|
|
socklen_t client_addr_len;
|
2010-12-08 21:14:04 +00:00
|
|
|
int connected_socket_fd;
|
|
|
|
|
|
|
|
/* Arguments */
|
2011-12-11 07:17:25 +00:00
|
|
|
char* listen_address = NULL; /* Default address of INADDR_ANY */
|
|
|
|
char* listen_port = "4822"; /* Default port */
|
|
|
|
char* pidfile = NULL;
|
2010-12-08 21:14:04 +00:00
|
|
|
int opt;
|
2012-05-23 09:56:49 +00:00
|
|
|
int foreground = 0;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2013-07-22 20:37:30 +00:00
|
|
|
#ifdef ENABLE_SSL
|
|
|
|
/* SSL */
|
|
|
|
char* cert_file = NULL;
|
2013-07-22 21:49:28 +00:00
|
|
|
char* key_file = NULL;
|
2013-07-22 20:37:30 +00:00
|
|
|
SSL_CTX* ssl_context = NULL;
|
|
|
|
#endif
|
|
|
|
|
2011-12-11 07:17:25 +00:00
|
|
|
/* General */
|
|
|
|
int retval;
|
2011-02-28 04:27:12 +00:00
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
/* Parse arguments */
|
2013-07-22 22:47:13 +00:00
|
|
|
while ((opt = getopt(argc, argv, "l:b:p:C:K:f")) != -1) {
|
2010-12-08 21:14:04 +00:00
|
|
|
if (opt == 'l') {
|
2011-12-11 07:17:25 +00:00
|
|
|
listen_port = strdup(optarg);
|
|
|
|
}
|
|
|
|
else if (opt == 'b') {
|
|
|
|
listen_address = strdup(optarg);
|
2010-12-08 21:14:04 +00:00
|
|
|
}
|
2012-05-23 09:56:49 +00:00
|
|
|
else if (opt == 'f') {
|
|
|
|
foreground = 1;
|
|
|
|
}
|
2011-02-28 04:27:12 +00:00
|
|
|
else if (opt == 'p') {
|
|
|
|
pidfile = strdup(optarg);
|
|
|
|
}
|
2013-07-22 20:37:30 +00:00
|
|
|
#ifdef ENABLE_SSL
|
|
|
|
else if (opt == 'C') {
|
|
|
|
cert_file = strdup(optarg);
|
|
|
|
}
|
2013-07-22 21:49:28 +00:00
|
|
|
else if (opt == 'K') {
|
|
|
|
key_file = strdup(optarg);
|
|
|
|
}
|
2013-07-22 20:37:30 +00:00
|
|
|
#else
|
2013-07-22 22:47:13 +00:00
|
|
|
else if (opt == 'C' || opt == 'K') {
|
2013-07-22 20:37:30 +00:00
|
|
|
fprintf(stderr,
|
2013-07-22 23:12:39 +00:00
|
|
|
"This guacd does not have SSL/TLS support compiled in.\n\n"
|
|
|
|
|
|
|
|
"If you wish to enable support for the -%c option, please install libssl and\n"
|
|
|
|
"recompile guacd.\n",
|
|
|
|
opt);
|
2013-07-22 20:37:30 +00:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
#endif
|
2010-12-08 21:14:04 +00:00
|
|
|
else {
|
2011-12-11 07:17:25 +00:00
|
|
|
|
|
|
|
fprintf(stderr, "USAGE: %s"
|
|
|
|
" [-l LISTENPORT]"
|
|
|
|
" [-b LISTENADDRESS]"
|
2012-05-25 06:49:40 +00:00
|
|
|
" [-p PIDFILE]"
|
2013-07-22 20:37:30 +00:00
|
|
|
#ifdef ENABLE_SSL
|
2013-07-22 20:39:37 +00:00
|
|
|
" [-C CERTIFICATE_FILE]"
|
2013-07-22 21:49:28 +00:00
|
|
|
" [-K PEM_FILE]"
|
2013-07-22 20:37:30 +00:00
|
|
|
#endif
|
2012-05-25 06:44:50 +00:00
|
|
|
" [-f]\n", argv[0]);
|
2011-12-11 07:17:25 +00:00
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-16 05:23:55 +00:00
|
|
|
/* Set up logging prefix */
|
|
|
|
strncpy(log_prefix, basename(argv[0]), sizeof(log_prefix));
|
|
|
|
|
2012-10-03 16:21:39 +00:00
|
|
|
/* Open log as early as we can */
|
|
|
|
openlog(NULL, LOG_PID, LOG_DAEMON);
|
2012-03-16 05:23:55 +00:00
|
|
|
|
2012-10-03 17:15:20 +00:00
|
|
|
/* Log start */
|
|
|
|
guacd_log_info("Guacamole proxy daemon (guacd) version " VERSION);
|
|
|
|
|
2011-12-11 07:17:25 +00:00
|
|
|
/* Get addresses for binding */
|
2012-10-03 16:21:39 +00:00
|
|
|
if ((retval = getaddrinfo(listen_address, listen_port,
|
|
|
|
&hints, &addresses))) {
|
|
|
|
|
2012-03-16 02:25:46 +00:00
|
|
|
guacd_log_error("Error parsing given address or port: %s",
|
2011-12-11 07:17:25 +00:00
|
|
|
gai_strerror(retval));
|
|
|
|
exit(EXIT_FAILURE);
|
2012-10-03 16:21:39 +00:00
|
|
|
|
2011-12-11 07:17:25 +00:00
|
|
|
}
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
/* Get socket */
|
|
|
|
socket_fd = socket(AF_INET, SOCK_STREAM, 0);
|
|
|
|
if (socket_fd < 0) {
|
2012-03-16 02:25:46 +00:00
|
|
|
guacd_log_error("Error opening socket: %s", strerror(errno));
|
2010-12-08 21:14:04 +00:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2011-12-11 07:17:25 +00:00
|
|
|
/* Allow socket reuse */
|
2012-10-03 16:21:39 +00:00
|
|
|
if (setsockopt(socket_fd, SOL_SOCKET, SO_REUSEADDR,
|
|
|
|
(void*) &opt_on, sizeof(opt_on))) {
|
|
|
|
guacd_log_info("Unable to set socket options for reuse: %s",
|
|
|
|
strerror(errno));
|
2011-01-21 18:01:49 +00:00
|
|
|
}
|
|
|
|
|
2011-12-11 07:17:25 +00:00
|
|
|
/* Attempt binding of each address until success */
|
|
|
|
current_address = addresses;
|
|
|
|
while (current_address != NULL) {
|
|
|
|
|
2012-03-01 22:05:12 +00:00
|
|
|
int retval;
|
|
|
|
|
|
|
|
/* Resolve hostname */
|
|
|
|
if ((retval = getnameinfo(current_address->ai_addr,
|
|
|
|
current_address->ai_addrlen,
|
|
|
|
bound_address, sizeof(bound_address),
|
|
|
|
bound_port, sizeof(bound_port),
|
|
|
|
NI_NUMERICHOST | NI_NUMERICSERV)))
|
2012-03-16 02:25:46 +00:00
|
|
|
guacd_log_error("Unable to resolve host: %s",
|
2012-03-01 22:05:12 +00:00
|
|
|
gai_strerror(retval));
|
|
|
|
|
2011-12-11 07:17:25 +00:00
|
|
|
/* Attempt to bind socket to address */
|
|
|
|
if (bind(socket_fd,
|
|
|
|
current_address->ai_addr,
|
|
|
|
current_address->ai_addrlen) == 0) {
|
|
|
|
|
2012-03-16 02:29:02 +00:00
|
|
|
guacd_log_info("Successfully bound socket to "
|
2012-03-16 02:25:46 +00:00
|
|
|
"host %s, port %s", bound_address, bound_port);
|
2012-03-01 22:05:12 +00:00
|
|
|
|
2011-12-11 07:17:25 +00:00
|
|
|
/* Done if successful bind */
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-03-16 02:29:02 +00:00
|
|
|
/* Otherwise log information regarding bind failure */
|
2011-12-11 07:17:25 +00:00
|
|
|
else
|
2012-03-16 02:29:02 +00:00
|
|
|
guacd_log_info("Unable to bind socket to "
|
2012-03-16 02:25:46 +00:00
|
|
|
"host %s, port %s: %s",
|
2012-03-01 22:05:12 +00:00
|
|
|
bound_address, bound_port, strerror(errno));
|
2011-12-11 07:17:25 +00:00
|
|
|
|
|
|
|
current_address = current_address->ai_next;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If unable to bind to anything, fail */
|
|
|
|
if (current_address == NULL) {
|
2012-03-16 02:25:46 +00:00
|
|
|
guacd_log_error("Unable to bind socket to any addresses.");
|
2010-12-08 21:14:04 +00:00
|
|
|
exit(EXIT_FAILURE);
|
2011-12-11 07:17:25 +00:00
|
|
|
}
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2013-07-22 20:37:30 +00:00
|
|
|
#ifdef ENABLE_SSL
|
|
|
|
/* Init SSL if enabled */
|
2013-07-22 22:42:11 +00:00
|
|
|
if (key_file != NULL || cert_file != NULL) {
|
2013-07-22 20:37:30 +00:00
|
|
|
|
2013-07-22 21:49:28 +00:00
|
|
|
/* Init SSL */
|
2013-07-22 22:42:11 +00:00
|
|
|
guacd_log_info("Communication will require SSL/TLS.");
|
2013-07-22 20:37:30 +00:00
|
|
|
SSL_library_init();
|
|
|
|
SSL_load_error_strings();
|
|
|
|
ssl_context = SSL_CTX_new(SSLv23_server_method());
|
|
|
|
|
2013-07-22 21:49:28 +00:00
|
|
|
/* Load key */
|
2013-07-22 22:42:11 +00:00
|
|
|
if (key_file != NULL) {
|
|
|
|
guacd_log_info("Using PEM keyfile %s", key_file);
|
|
|
|
if (!SSL_CTX_use_PrivateKey_file(ssl_context, key_file, SSL_FILETYPE_PEM)) {
|
|
|
|
guacd_log_error("Unable to load keyfile.");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2013-07-22 21:49:28 +00:00
|
|
|
}
|
2013-07-22 22:42:11 +00:00
|
|
|
else
|
|
|
|
guacd_log_info("No PEM keyfile given - SSL/TLS may not work.");
|
2013-07-22 21:49:28 +00:00
|
|
|
|
|
|
|
/* Load cert file if specified */
|
|
|
|
if (cert_file != NULL) {
|
|
|
|
guacd_log_info("Using certificate file %s", cert_file);
|
2014-04-07 22:16:25 +00:00
|
|
|
if (!SSL_CTX_use_certificate_chain_file(ssl_context, cert_file)) {
|
2013-07-22 21:49:28 +00:00
|
|
|
guacd_log_error("Unable to load certificate.");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
2013-07-22 22:42:11 +00:00
|
|
|
else
|
|
|
|
guacd_log_info("No certificate file given - SSL/TLS may not work.");
|
2013-07-22 21:49:28 +00:00
|
|
|
|
2013-07-22 20:37:30 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-10-03 16:21:39 +00:00
|
|
|
/* Daemonize if requested */
|
2012-05-23 09:56:49 +00:00
|
|
|
if (!foreground) {
|
2012-05-25 06:44:50 +00:00
|
|
|
|
2012-10-03 16:21:39 +00:00
|
|
|
/* Attempt to daemonize process */
|
|
|
|
if (daemonize()) {
|
|
|
|
guacd_log_error("Could not become a daemon.");
|
2012-05-23 09:56:49 +00:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2010-12-18 01:26:57 +00:00
|
|
|
|
2012-10-03 16:21:39 +00:00
|
|
|
}
|
2011-02-28 04:27:12 +00:00
|
|
|
|
2012-10-03 16:21:39 +00:00
|
|
|
/* Write PID file if requested */
|
|
|
|
if (pidfile != NULL) {
|
2011-02-28 04:27:12 +00:00
|
|
|
|
2012-10-03 16:21:39 +00:00
|
|
|
/* Attempt to open pidfile and write PID */
|
|
|
|
FILE* pidf = fopen(pidfile, "w");
|
|
|
|
if (pidf) {
|
|
|
|
fprintf(pidf, "%d\n", getpid());
|
|
|
|
fclose(pidf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fail if could not write PID file*/
|
|
|
|
else {
|
|
|
|
guacd_log_error("Could not write PID file: %s", strerror(errno));
|
|
|
|
exit(EXIT_FAILURE);
|
2011-02-28 04:27:12 +00:00
|
|
|
}
|
2011-11-30 20:03:27 +00:00
|
|
|
|
2012-10-03 16:21:39 +00:00
|
|
|
}
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-03-19 23:50:18 +00:00
|
|
|
/* Ignore SIGPIPE */
|
|
|
|
if (signal(SIGPIPE, SIG_IGN) == SIG_ERR) {
|
2012-10-03 16:21:39 +00:00
|
|
|
guacd_log_info("Could not set handler for SIGPIPE to ignore. "
|
|
|
|
"SIGPIPE may cause termination of the daemon.");
|
2011-03-20 07:21:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Ignore SIGCHLD (force automatic removal of children) */
|
|
|
|
if (signal(SIGCHLD, SIG_IGN) == SIG_ERR) {
|
2012-10-03 16:21:39 +00:00
|
|
|
guacd_log_info("Could not set handler for SIGCHLD to ignore. "
|
|
|
|
"Child processes may pile up in the process table.");
|
2011-03-19 23:50:18 +00:00
|
|
|
}
|
|
|
|
|
2012-03-01 22:05:12 +00:00
|
|
|
/* Log listening status */
|
2012-10-03 16:21:39 +00:00
|
|
|
guacd_log_info("Listening on host %s, port %s", bound_address, bound_port);
|
2011-12-11 07:17:25 +00:00
|
|
|
|
|
|
|
/* Free addresses */
|
|
|
|
freeaddrinfo(addresses);
|
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
/* Daemon loop */
|
|
|
|
for (;;) {
|
|
|
|
|
2011-03-20 07:21:33 +00:00
|
|
|
pid_t child_pid;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
/* Listen for connections */
|
|
|
|
if (listen(socket_fd, 5) < 0) {
|
2012-03-16 02:11:51 +00:00
|
|
|
guacd_log_error("Could not listen on socket: %s", strerror(errno));
|
2010-12-08 21:14:04 +00:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Accept connection */
|
|
|
|
client_addr_len = sizeof(client_addr);
|
2012-10-03 16:21:39 +00:00
|
|
|
connected_socket_fd = accept(socket_fd,
|
|
|
|
(struct sockaddr*) &client_addr, &client_addr_len);
|
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
if (connected_socket_fd < 0) {
|
2012-10-03 16:21:39 +00:00
|
|
|
guacd_log_error("Could not accept client connection: %s",
|
|
|
|
strerror(errno));
|
2010-12-08 21:14:04 +00:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
2011-03-20 07:21:33 +00:00
|
|
|
/*
|
2011-11-30 20:03:27 +00:00
|
|
|
* Once connection is accepted, send child into background.
|
|
|
|
*
|
2011-04-21 22:54:29 +00:00
|
|
|
* Note that we prefer fork() over threads for connection-handling
|
2011-03-20 07:21:33 +00:00
|
|
|
* processes as they give each connection its own memory area, and
|
|
|
|
* isolate the main daemon and other connections from errors in any
|
|
|
|
* particular client plugin.
|
|
|
|
*/
|
|
|
|
|
|
|
|
child_pid = fork();
|
|
|
|
|
|
|
|
/* If error, log */
|
|
|
|
if (child_pid == -1)
|
2012-03-16 02:25:46 +00:00
|
|
|
guacd_log_error("Error forking child process: %s", strerror(errno));
|
2011-03-20 07:21:33 +00:00
|
|
|
|
|
|
|
/* If child, start client, and exit when finished */
|
|
|
|
else if (child_pid == 0) {
|
2013-07-22 20:37:30 +00:00
|
|
|
|
|
|
|
guac_socket* socket;
|
|
|
|
|
|
|
|
#ifdef ENABLE_SSL
|
|
|
|
|
|
|
|
/* If SSL chosen, use it */
|
2013-07-22 21:49:28 +00:00
|
|
|
if (ssl_context != NULL) {
|
2013-07-22 21:24:37 +00:00
|
|
|
socket = guac_socket_open_secure(ssl_context, connected_socket_fd);
|
2013-07-22 21:49:28 +00:00
|
|
|
if (socket == NULL) {
|
2013-07-22 22:42:11 +00:00
|
|
|
guacd_log_guac_error("Error opening secure connection");
|
2013-07-22 21:49:28 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2013-07-22 21:24:37 +00:00
|
|
|
else
|
|
|
|
socket = guac_socket_open(connected_socket_fd);
|
2013-07-22 20:37:30 +00:00
|
|
|
#else
|
|
|
|
/* Open guac_socket */
|
|
|
|
socket = guac_socket_open(connected_socket_fd);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
guacd_handle_connection(socket);
|
2011-12-06 08:53:18 +00:00
|
|
|
close(connected_socket_fd);
|
2011-03-20 07:21:33 +00:00
|
|
|
return 0;
|
2010-12-08 21:14:04 +00:00
|
|
|
}
|
2011-03-19 07:59:14 +00:00
|
|
|
|
2011-07-12 21:43:57 +00:00
|
|
|
/* If parent, close reference to child's descriptor */
|
2011-07-14 08:13:20 +00:00
|
|
|
else if (close(connected_socket_fd) < 0) {
|
2012-10-03 16:21:39 +00:00
|
|
|
guacd_log_error("Error closing daemon reference to "
|
|
|
|
"child descriptor: %s", strerror(errno));
|
2011-07-12 21:43:57 +00:00
|
|
|
}
|
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Close socket */
|
2011-07-14 08:13:20 +00:00
|
|
|
if (close(socket_fd) < 0) {
|
2012-03-16 02:11:51 +00:00
|
|
|
guacd_log_error("Could not close socket: %s", strerror(errno));
|
2010-12-08 21:14:04 +00:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|