2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Guacamole - Clientless Remote Desktop
|
|
|
|
* Copyright (C) 2010 Michael Jumper
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
2011-02-09 03:58:26 +00:00
|
|
|
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
#include <winsock2.h>
|
|
|
|
#else
|
2010-12-08 21:14:04 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
2011-02-09 03:58:26 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __HAVE_PTHREAD_H__
|
2010-12-08 21:14:04 +00:00
|
|
|
#include <pthread.h>
|
2011-02-09 03:58:26 +00:00
|
|
|
#endif
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <guacamole/client.h>
|
2011-02-09 03:58:26 +00:00
|
|
|
#include <guacamole/guaclog.h>
|
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;
|
|
|
|
client_thread_data* thread_data = (client_thread_data*) data;
|
|
|
|
|
2011-02-09 03:58:26 +00:00
|
|
|
GUAC_LOG_INFO("Spawning client");
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
/* Load and start client */
|
|
|
|
client = guac_get_client(thread_data->fd);
|
|
|
|
|
|
|
|
if (client == NULL) {
|
2011-02-09 03:58:26 +00:00
|
|
|
GUAC_LOG_ERROR("Client retrieval failed");
|
2010-12-08 21:14:04 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
guac_start_client(client);
|
|
|
|
|
|
|
|
guac_free_client(client);
|
|
|
|
|
|
|
|
/* Close socket */
|
|
|
|
if (close(thread_data->fd) < 0) {
|
2011-02-09 03:58:26 +00:00
|
|
|
GUAC_LOG_ERROR("Error closing connection: %s", strerror(errno));
|
2010-12-08 21:14:04 +00:00
|
|
|
free(data);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-02-09 03:58:26 +00:00
|
|
|
GUAC_LOG_INFO("Client finished");
|
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-01-21 18:01:49 +00:00
|
|
|
int opt_on = 1;
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
/* Client */
|
|
|
|
struct sockaddr_in client_addr;
|
|
|
|
unsigned int client_addr_len;
|
|
|
|
int connected_socket_fd;
|
|
|
|
|
|
|
|
/* Arguments */
|
|
|
|
int listen_port = 4822; /* Default port */
|
|
|
|
int opt;
|
|
|
|
|
2010-12-18 01:26:57 +00:00
|
|
|
/* Daemon Process */
|
|
|
|
pid_t daemon_pid;
|
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
/* Parse arguments */
|
|
|
|
while ((opt = getopt(argc, argv, "l:")) != -1) {
|
|
|
|
if (opt == 'l') {
|
|
|
|
listen_port = atoi(optarg);
|
|
|
|
if (listen_port <= 0) {
|
|
|
|
fprintf(stderr, "Invalid port: %s\n", optarg);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fprintf(stderr, "USAGE: %s [-l LISTENPORT]\n", argv[0]);
|
|
|
|
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) {
|
|
|
|
fprintf(stderr, "Error opening socket: %s\n", strerror(errno));
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2011-01-21 18:01:49 +00:00
|
|
|
if (setsockopt(socket_fd, SOL_SOCKET, SO_REUSEADDR, &opt_on, sizeof(opt_on))) {
|
|
|
|
fprintf(stderr, "Warning: Unable to set socket options for reuse: %s\n", strerror(errno));
|
|
|
|
}
|
|
|
|
|
2010-12-08 21:14:04 +00:00
|
|
|
/* Bind socket to address */
|
|
|
|
if (bind(socket_fd, (struct sockaddr*) &server_addr,
|
|
|
|
sizeof(server_addr)) < 0) {
|
|
|
|
fprintf(stderr, "Error binding socket: %s\n", strerror(errno));
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2010-12-18 01:26:57 +00:00
|
|
|
/* Fork into background */
|
2011-02-09 03:58:26 +00:00
|
|
|
#ifdef fork
|
2010-12-18 01:26:57 +00:00
|
|
|
daemon_pid = fork();
|
|
|
|
|
|
|
|
/* If error, fail */
|
|
|
|
if (daemon_pid == -1) {
|
|
|
|
fprintf(stderr, "Error forking daemon process: %s\n", strerror(errno));
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If parent, exit */
|
|
|
|
else if (daemon_pid != 0) {
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
2011-02-09 03:58:26 +00:00
|
|
|
#else
|
|
|
|
GUAC_LOG_INFO("fork() not defined at compile time.");
|
|
|
|
GUAC_LOG_INFO("guacd running in foreground only.");
|
|
|
|
#endif
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2010-12-18 01:26:57 +00:00
|
|
|
/* Otherwise, this is the daemon */
|
2011-02-09 03:58:26 +00:00
|
|
|
GUAC_LOG_INFO("Started, listening on port %i", listen_port);
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
/* Daemon loop */
|
|
|
|
for (;;) {
|
|
|
|
|
2011-02-09 03:58:26 +00:00
|
|
|
#ifdef pthread_t
|
2010-12-08 21:14:04 +00:00
|
|
|
pthread_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-02-09 03:58:26 +00:00
|
|
|
GUAC_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);
|
|
|
|
connected_socket_fd = accept(socket_fd, (struct sockaddr*) &client_addr, &client_addr_len);
|
|
|
|
if (connected_socket_fd < 0) {
|
2011-02-09 03:58:26 +00:00
|
|
|
GUAC_LOG_ERROR("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-02-09 03:58:26 +00:00
|
|
|
#ifdef pthread_t
|
2010-12-08 21:14:04 +00:00
|
|
|
if (pthread_create(&thread, NULL, start_client_thread, (void*) data)) {
|
2011-02-09 03:58:26 +00:00
|
|
|
GUAC_LOG_ERROR("Could not create client thread: %s", strerror(errno));
|
2010-12-08 21:14:04 +00:00
|
|
|
return 3;
|
|
|
|
}
|
2011-02-09 03:58:26 +00:00
|
|
|
#else
|
|
|
|
GUAC_LOG_INFO("POSIX threads support not present at compile time.");
|
|
|
|
GUAC_LOG_INFO("guacd handling one connection at a time.");
|
|
|
|
start_client_thread(data);
|
|
|
|
#endif
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Close socket */
|
|
|
|
if (close(socket_fd) < 0) {
|
2011-02-09 03:58:26 +00:00
|
|
|
GUAC_LOG_ERROR("Could not close socket: %s", strerror(errno));
|
2010-12-08 21:14:04 +00:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|