More renaming
[guacd.git] / src / daemon.c
1
2 /*
3  *  Guacamole - Clientless Remote Desktop
4  *  Copyright (C) 2010  Michael Jumper
5  *
6  *  This program is free software: you can redistribute it and/or modify
7  *  it under the terms of the GNU Affero General Public License as published by
8  *  the Free Software Foundation, either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU Affero General Public License for more details.
15  *
16  *  You should have received a copy of the GNU Affero General Public License
17  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include <unistd.h>
21 #include <stdlib.h>
22 #include <stdio.h>
23 #include <string.h>
24 #include <sys/types.h>
25 #include <sys/socket.h>
26 #include <netinet/in.h>
27 #include <pthread.h>
28
29 #include <errno.h>
30 #include <syslog.h>
31
32 #include <guacamole/client.h>
33
34 typedef struct client_thread_data {
35
36     int fd;
37
38 } client_thread_data;
39
40
41 void* start_client_thread(void* data) {
42
43     guac_client* client;
44     client_thread_data* thread_data = (client_thread_data*) data;
45
46     syslog(LOG_INFO, "Spawning client");
47
48     /* Load and start client */
49     client = guac_get_client(thread_data->fd); 
50
51     if (client == NULL) {
52         syslog(LOG_ERR, "Client retrieval failed");
53         return NULL;
54     }
55
56     guac_start_client(client);
57
58     guac_free_client(client);
59
60     /* Close socket */
61     if (close(thread_data->fd) < 0) {
62         syslog(LOG_ERR, "Error closing connection: %s", strerror(errno));
63         free(data);
64         return NULL;
65     }
66
67     syslog(LOG_INFO, "Client finished");
68     free(data);
69     return NULL;
70
71 }
72
73 int main(int argc, char* argv[]) {
74
75     /* Server */
76     int socket_fd;
77     struct sockaddr_in server_addr;
78
79     /* Client */
80     struct sockaddr_in client_addr;
81     unsigned int client_addr_len;
82     int connected_socket_fd;
83
84     /* Arguments */
85     int listen_port = 4822; /* Default port */
86     int opt;
87
88     /* Parse arguments */
89     while ((opt = getopt(argc, argv, "l:")) != -1) {
90         if (opt == 'l') {
91             listen_port = atoi(optarg);
92             if (listen_port <= 0) {
93                 fprintf(stderr, "Invalid port: %s\n", optarg);
94                 exit(EXIT_FAILURE);
95             }
96         }
97         else {
98             fprintf(stderr, "USAGE: %s [-l LISTENPORT]\n", argv[0]);
99             exit(EXIT_FAILURE);
100         }
101     }
102
103     /* Get binding address */
104     memset(&server_addr, 0, sizeof(server_addr)); /* Zero struct */
105     server_addr.sin_family = AF_INET;
106     server_addr.sin_addr.s_addr = INADDR_ANY;
107     server_addr.sin_port = htons(listen_port);
108
109     /* Get socket */
110     socket_fd = socket(AF_INET, SOCK_STREAM, 0);
111     if (socket_fd < 0) {
112         fprintf(stderr, "Error opening socket: %s\n", strerror(errno));
113         exit(EXIT_FAILURE);
114     }
115
116     /* Bind socket to address */
117     if (bind(socket_fd, (struct sockaddr*) &server_addr,
118                 sizeof(server_addr)) < 0) {
119         fprintf(stderr, "Error binding socket: %s\n", strerror(errno));
120         exit(EXIT_FAILURE);
121     } 
122
123     syslog(LOG_INFO, "Started, listening on port %i", listen_port);
124
125
126     /* Daemon loop */
127     for (;;) {
128
129         pthread_t thread;
130         client_thread_data* data;
131
132         /* Listen for connections */
133         if (listen(socket_fd, 5) < 0) {
134             syslog(LOG_ERR, "Could not listen on socket: %s", strerror(errno));
135             return 3;
136         }
137
138         /* Accept connection */
139         client_addr_len = sizeof(client_addr);
140         connected_socket_fd = accept(socket_fd, (struct sockaddr*) &client_addr, &client_addr_len);
141         if (connected_socket_fd < 0) {
142             syslog(LOG_ERR, "Could not accept client connection: %s", strerror(errno));
143             return 3;
144         }
145
146         data = malloc(sizeof(client_thread_data));
147         data->fd = connected_socket_fd;
148
149         if (pthread_create(&thread, NULL, start_client_thread, (void*) data)) {
150             syslog(LOG_ERR, "Could not create client thread: %s", strerror(errno));
151             return 3;
152         }
153
154     }
155
156     /* Close socket */
157     if (close(socket_fd) < 0) {
158         syslog(LOG_ERR, "Could not close socket: %s", strerror(errno));
159         return 3;
160     }
161
162     return 0;
163
164 }
165