2010-12-08 21:14:04 +00:00
|
|
|
|
2011-02-16 02:48:02 +00:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2010-12-08 21:14:04 +00:00
|
|
|
*
|
2011-02-16 02:48:02 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
2010-12-08 21:14:04 +00:00
|
|
|
*
|
2011-02-16 02:48:02 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
2010-12-08 21:14:04 +00:00
|
|
|
*
|
2011-02-16 02:48:02 +00:00
|
|
|
* The Original Code is guacd.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Michael Jumper.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2010
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2011-03-19 23:50:18 +00:00
|
|
|
#include <signal.h>
|
2010-12-08 21:14:04 +00:00
|
|
|
#include <sys/types.h>
|
2011-02-09 03:58:26 +00:00
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
2011-02-09 03:58:26 +00:00
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
#include <errno.h>
|
2011-11-26 00:30:17 +00:00
|
|
|
#include <syslog.h>
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-02-11 07:47:46 +00:00
|
|
|
#include <guacamole/client.h>
|
2011-11-26 00:30:17 +00:00
|
|
|
#include <guacamole/error.h>
|
2011-02-11 07:47:46 +00:00
|
|
|
|
2011-11-23 08:01:27 +00:00
|
|
|
#include "client.h"
|
2011-02-10 08:27:31 +00:00
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
typedef struct client_thread_data {
|
|
|
|
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
} client_thread_data;
|
|
|
|
|
|
|
|
|
|
|
|
void* start_client_thread(void* data) {
|
|
|
|
|
|
|
|
guac_client* client;
|
2011-11-26 00:30:17 +00:00
|
|
|
guac_client_plugin* plugin;
|
2010-12-08 21:14:04 +00:00
|
|
|
client_thread_data* thread_data = (client_thread_data*) data;
|
2011-11-26 00:30:17 +00:00
|
|
|
guac_socket* socket;
|
|
|
|
guac_instruction* select;
|
|
|
|
guac_instruction* connect;
|
|
|
|
|
|
|
|
/* Open guac_socket */
|
|
|
|
socket = guac_socket_open(thread_data->fd);
|
|
|
|
|
|
|
|
/* Get protocol from select instruction */
|
2011-11-26 07:28:49 +00:00
|
|
|
select = guac_protocol_expect_instruction(
|
|
|
|
socket, GUAC_USEC_TIMEOUT, "select");
|
2011-11-26 00:30:17 +00:00
|
|
|
if (select == NULL) {
|
2011-11-26 07:28:49 +00:00
|
|
|
|
|
|
|
/* Log error */
|
|
|
|
syslog(LOG_ERR, "Error reading \"select\": %s",
|
|
|
|
guac_status_string(guac_error));
|
|
|
|
|
|
|
|
/* Free resources */
|
2011-11-26 00:30:17 +00:00
|
|
|
guac_socket_close(socket);
|
|
|
|
free(data);
|
|
|
|
return NULL;
|
|
|
|
}
|
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 */
|
|
|
|
syslog(LOG_ERR, "Bad number of arguments to \"select\" (%i)",
|
|
|
|
select->argc);
|
|
|
|
|
|
|
|
/* Free resources */
|
2011-11-26 00:30:17 +00:00
|
|
|
guac_socket_close(socket);
|
|
|
|
free(data);
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2011-11-26 07:28:49 +00:00
|
|
|
syslog(LOG_INFO, "Protocol \"%s\" selected", select->argv[0]);
|
|
|
|
|
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 */
|
|
|
|
syslog(LOG_ERR, "Error loading client plugin: %s",
|
|
|
|
guac_status_string(guac_error));
|
|
|
|
|
|
|
|
/* Free resources */
|
2011-11-26 00:30:17 +00:00
|
|
|
guac_socket_close(socket);
|
2011-03-20 07:21:33 +00:00
|
|
|
free(data);
|
2010-12-08 21:14:04 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
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 */
|
|
|
|
syslog(LOG_ERR, "Error sending \"args\": %s",
|
|
|
|
guac_status_string(guac_error));
|
|
|
|
|
|
|
|
if (guac_client_plugin_close(plugin))
|
|
|
|
syslog(LOG_ERR, "Error closing client plugin");
|
2011-11-26 00:30:17 +00:00
|
|
|
|
|
|
|
guac_socket_close(socket);
|
2010-12-08 21:14:04 +00:00
|
|
|
free(data);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-11-26 00:30:17 +00:00
|
|
|
/* Get args from connect instruction */
|
2011-11-26 07:28:49 +00:00
|
|
|
connect = guac_protocol_expect_instruction(
|
|
|
|
socket, GUAC_USEC_TIMEOUT, "connect");
|
2011-11-26 00:30:17 +00:00
|
|
|
if (connect == NULL) {
|
|
|
|
|
2011-11-26 07:28:49 +00:00
|
|
|
/* Log error */
|
|
|
|
syslog(LOG_ERR, "Error reading \"connect\": %s",
|
|
|
|
guac_status_string(guac_error));
|
|
|
|
|
|
|
|
if (guac_client_plugin_close(plugin))
|
|
|
|
syslog(LOG_ERR, "Error closing client plugin");
|
2011-11-26 00:30:17 +00:00
|
|
|
|
|
|
|
guac_socket_close(socket);
|
|
|
|
free(data);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Load and init client */
|
|
|
|
client = guac_client_plugin_get_client(plugin, socket,
|
|
|
|
connect->argc, connect->argv);
|
2011-11-26 20:18:57 +00:00
|
|
|
guac_instruction_free(connect);
|
2011-11-26 00:30:17 +00:00
|
|
|
|
|
|
|
if (client == NULL) {
|
|
|
|
|
2011-11-26 07:28:49 +00:00
|
|
|
syslog(LOG_ERR, "Error instantiating client: %s",
|
|
|
|
guac_status_string(guac_error));
|
|
|
|
|
|
|
|
if (guac_client_plugin_close(plugin))
|
|
|
|
syslog(LOG_ERR, "Error closing client plugin");
|
2011-11-26 00:30:17 +00:00
|
|
|
|
|
|
|
guac_socket_close(socket);
|
|
|
|
free(data);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Start client threads */
|
2011-11-26 07:28:49 +00:00
|
|
|
syslog(LOG_INFO, "Starting client");
|
2011-11-26 00:30:17 +00:00
|
|
|
guac_start_client(client);
|
|
|
|
|
|
|
|
/* Clean up */
|
2011-11-26 07:28:49 +00:00
|
|
|
syslog(LOG_INFO, "Client finished");
|
2011-11-26 00:30:17 +00:00
|
|
|
guac_client_free(client);
|
2011-11-26 07:28:49 +00:00
|
|
|
if (guac_client_plugin_close(plugin))
|
|
|
|
syslog(LOG_ERR, "Error closing client plugin");
|
2011-11-26 00:30:17 +00:00
|
|
|
|
|
|
|
/* Close socket */
|
|
|
|
guac_socket_close(socket);
|
|
|
|
close(thread_data->fd);
|
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
free(data);
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
|
|
|
|
/* Server */
|
|
|
|
int socket_fd;
|
|
|
|
struct sockaddr_in server_addr;
|
2011-04-22 06:49:14 +00:00
|
|
|
int opt_on = 1;
|
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 */
|
|
|
|
int listen_port = 4822; /* Default port */
|
|
|
|
int opt;
|
|
|
|
|
2011-02-28 04:27:12 +00:00
|
|
|
char* pidfile = NULL;
|
|
|
|
|
2010-12-18 01:26:57 +00:00
|
|
|
/* Daemon Process */
|
|
|
|
pid_t daemon_pid;
|
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
/* Parse arguments */
|
2011-02-28 04:27:12 +00:00
|
|
|
while ((opt = getopt(argc, argv, "l:p:")) != -1) {
|
2010-12-08 21:14:04 +00:00
|
|
|
if (opt == 'l') {
|
|
|
|
listen_port = atoi(optarg);
|
|
|
|
if (listen_port <= 0) {
|
|
|
|
fprintf(stderr, "Invalid port: %s\n", optarg);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
2011-02-28 04:27:12 +00:00
|
|
|
else if (opt == 'p') {
|
|
|
|
pidfile = strdup(optarg);
|
|
|
|
}
|
2010-12-08 21:14:04 +00:00
|
|
|
else {
|
2011-02-28 04:27:12 +00:00
|
|
|
fprintf(stderr, "USAGE: %s [-l LISTENPORT] [-p PIDFILE]\n", argv[0]);
|
2010-12-08 21:14:04 +00:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get binding address */
|
|
|
|
memset(&server_addr, 0, sizeof(server_addr)); /* Zero struct */
|
|
|
|
server_addr.sin_family = AF_INET;
|
|
|
|
server_addr.sin_addr.s_addr = INADDR_ANY;
|
|
|
|
server_addr.sin_port = htons(listen_port);
|
|
|
|
|
|
|
|
/* Get socket */
|
|
|
|
socket_fd = socket(AF_INET, SOCK_STREAM, 0);
|
|
|
|
if (socket_fd < 0) {
|
2011-07-14 08:13:20 +00:00
|
|
|
fprintf(stderr, "Error opening socket: %s\n", strerror(errno));
|
2010-12-08 21:14:04 +00:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2011-07-14 08:13:20 +00:00
|
|
|
if (setsockopt(socket_fd, SOL_SOCKET, SO_REUSEADDR, (void*) &opt_on, sizeof(opt_on))) {
|
|
|
|
fprintf(stderr, "Warning: Unable to set socket options for reuse: %s\n", strerror(errno));
|
2011-01-21 18:01:49 +00:00
|
|
|
}
|
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
/* Bind socket to address */
|
|
|
|
if (bind(socket_fd, (struct sockaddr*) &server_addr,
|
|
|
|
sizeof(server_addr)) < 0) {
|
2011-07-14 08:13:20 +00:00
|
|
|
fprintf(stderr, "Error binding socket: %s\n", strerror(errno));
|
2010-12-08 21:14:04 +00:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2010-12-18 01:26:57 +00:00
|
|
|
/* Fork into background */
|
2011-02-11 07:57:38 +00:00
|
|
|
#ifdef HAVE_FORK
|
2010-12-18 01:26:57 +00:00
|
|
|
daemon_pid = fork();
|
|
|
|
|
|
|
|
/* If error, fail */
|
|
|
|
if (daemon_pid == -1) {
|
2011-07-14 08:13:20 +00:00
|
|
|
fprintf(stderr, "Error forking daemon process: %s\n", strerror(errno));
|
2010-12-18 01:26:57 +00:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2011-02-28 04:27:12 +00:00
|
|
|
/* If parent, write PID file and exit */
|
2010-12-18 01:26:57 +00:00
|
|
|
else if (daemon_pid != 0) {
|
2011-02-28 04:27:12 +00:00
|
|
|
|
|
|
|
if (pidfile != NULL) {
|
|
|
|
|
|
|
|
/* Attempt to open pidfile and write PID */
|
|
|
|
FILE* pidf = fopen(pidfile, "w");
|
|
|
|
if (pidf) {
|
|
|
|
fprintf(pidf, "%d\n", daemon_pid);
|
|
|
|
fclose(pidf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Warn on failure */
|
|
|
|
else {
|
2011-07-14 08:13:20 +00:00
|
|
|
fprintf(stderr, "WARNING: Could not write PID file: %s\n", strerror(errno));
|
2011-02-28 04:27:12 +00:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-12-18 01:26:57 +00:00
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
2011-02-09 03:58:26 +00:00
|
|
|
#else
|
2011-03-20 07:21:33 +00:00
|
|
|
daemon_pid = getpid();
|
2011-11-26 00:30:17 +00:00
|
|
|
syslog(LOG_INFO, "fork() not defined at compile time.");
|
|
|
|
syslog(LOG_INFO, "guacd running in foreground only.");
|
2011-02-09 03:58:26 +00:00
|
|
|
#endif
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2010-12-18 01:26:57 +00:00
|
|
|
/* Otherwise, this is the daemon */
|
2011-11-26 00:30:17 +00:00
|
|
|
syslog(LOG_INFO, "Started, listening on port %i", listen_port);
|
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) {
|
2011-11-26 00:30:17 +00:00
|
|
|
syslog(LOG_ERR, "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) {
|
2011-11-26 00:30:17 +00:00
|
|
|
syslog(LOG_ERR, "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
|
|
|
}
|
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
/* Daemon loop */
|
|
|
|
for (;;) {
|
|
|
|
|
2011-03-20 07:21:33 +00:00
|
|
|
#ifdef HAVE_FORK
|
|
|
|
pid_t child_pid;
|
2011-04-21 22:54:29 +00:00
|
|
|
#else
|
|
|
|
guac_thread_t thread;
|
2011-02-09 03:58:26 +00:00
|
|
|
#endif
|
2010-12-08 21:14:04 +00:00
|
|
|
client_thread_data* data;
|
|
|
|
|
|
|
|
/* Listen for connections */
|
|
|
|
if (listen(socket_fd, 5) < 0) {
|
2011-11-26 00:30:17 +00:00
|
|
|
syslog(LOG_ERR, "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);
|
|
|
|
connected_socket_fd = accept(socket_fd, (struct sockaddr*) &client_addr, &client_addr_len);
|
|
|
|
if (connected_socket_fd < 0) {
|
2011-11-26 00:30:17 +00:00
|
|
|
syslog(LOG_ERR, "Could not accept client connection: %s", strerror(errno));
|
2010-12-08 21:14:04 +00:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
data = malloc(sizeof(client_thread_data));
|
|
|
|
data->fd = connected_socket_fd;
|
|
|
|
|
2011-03-20 07:21:33 +00:00
|
|
|
/*
|
|
|
|
* Once connection is accepted, send child into background, whether through
|
|
|
|
* fork() or through creating a thread. If thead support is not present on
|
|
|
|
* the platform, guacd will still work, but will only be able to handle one
|
|
|
|
* connection at a time.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_FORK
|
|
|
|
|
|
|
|
/*** FORK ***/
|
|
|
|
|
|
|
|
/*
|
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)
|
2011-11-26 00:30:17 +00:00
|
|
|
syslog(LOG_ERR, "Error forking child process: %s\n", strerror(errno));
|
2011-03-20 07:21:33 +00:00
|
|
|
|
|
|
|
/* If child, start client, and exit when finished */
|
|
|
|
else if (child_pid == 0) {
|
|
|
|
start_client_thread(data);
|
|
|
|
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) {
|
2011-11-26 00:30:17 +00:00
|
|
|
syslog(LOG_ERR, "Error closing daemon reference to child descriptor: %s", strerror(errno));
|
2011-07-12 21:43:57 +00:00
|
|
|
}
|
|
|
|
|
2011-02-09 03:58:26 +00:00
|
|
|
#else
|
2011-03-20 07:21:33 +00:00
|
|
|
|
2011-04-21 22:54:29 +00:00
|
|
|
if (guac_thread_create(&thread, start_client_thread, (void*) data))
|
2011-11-26 00:30:17 +00:00
|
|
|
syslog(LOG_ERR, "Could not create client thread: %s", strerror(errno));
|
2011-03-20 07:21:33 +00:00
|
|
|
|
2011-02-09 03:58:26 +00:00
|
|
|
#endif
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Close socket */
|
2011-07-14 08:13:20 +00:00
|
|
|
if (close(socket_fd) < 0) {
|
2011-11-26 00:30:17 +00:00
|
|
|
syslog(LOG_ERR, "Could not close socket: %s", strerror(errno));
|
2010-12-08 21:14:04 +00:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|