Working LSB startup script.
[guacd.git] / src / daemon.c
1
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is guacd.
16  *
17  * The Initial Developer of the Original Code is
18  * Michael Jumper.
19  * Portions created by the Initial Developer are Copyright (C) 2010
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *
24  * Alternatively, the contents of this file may be used under the terms of
25  * either the GNU General Public License Version 2 or later (the "GPL"), or
26  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27  * in which case the provisions of the GPL or the LGPL are applicable instead
28  * of those above. If you wish to allow use of your version of this file only
29  * under the terms of either the GPL or the LGPL, and not to allow others to
30  * use your version of this file under the terms of the MPL, indicate your
31  * decision by deleting the provisions above and replace them with the notice
32  * and other provisions required by the GPL or the LGPL. If you do not delete
33  * the provisions above, a recipient may use your version of this file under
34  * the terms of any one of the MPL, the GPL or the LGPL.
35  *
36  * ***** END LICENSE BLOCK ***** */
37
38 #include <unistd.h>
39 #include <stdlib.h>
40 #include <stdio.h>
41 #include <string.h>
42 #include <sys/types.h>
43
44 #ifdef __MINGW32__
45 #include <winsock2.h>
46 #else
47 #include <sys/socket.h>
48 #include <netinet/in.h>
49 #endif
50
51 #ifdef HAVE_LIBPTHREAD
52 #include <pthread.h>
53 #elif defined(__MINGW32__)
54 #include <windows.h>
55 #include <process.h>
56 #endif
57
58 #include <errno.h>
59
60 #include <guacamole/client.h>
61 #include <guacamole/log.h>
62
63 /* Windows / MINGW32 handles closing sockets differently */ 
64 #ifdef __MINGW32__
65 #define CLOSE_SOCKET(socket) closesocket(socket)
66 #else
67 #define CLOSE_SOCKET(socket) close(socket)
68 #endif
69
70
71 /* Cross-platform strerror()/errno clone */
72 char error[65536];
73 char* lasterror() {
74 #ifdef __MINGW32__
75     snprintf(error, sizeof(error)-1, "ERROR #%i", GetLastError());
76     return error;
77 #else
78     return strerror(errno);
79 #endif
80 }
81
82
83 typedef struct client_thread_data {
84
85     int fd;
86
87 } client_thread_data;
88
89
90 void* start_client_thread(void* data) {
91
92     guac_client* client;
93     client_thread_data* thread_data = (client_thread_data*) data;
94
95     GUAC_LOG_INFO("Spawning client");
96
97     /* Load and start client */
98     client = guac_get_client(thread_data->fd); 
99
100     if (client == NULL) {
101         GUAC_LOG_ERROR("Client retrieval failed");
102         return NULL;
103     }
104
105     guac_start_client(client);
106
107     guac_free_client(client);
108
109     /* Close socket */
110     if (CLOSE_SOCKET(thread_data->fd) < 0) {
111         GUAC_LOG_ERROR("Error closing connection: %s", lasterror());
112         free(data);
113         return NULL;
114     }
115
116     GUAC_LOG_INFO("Client finished");
117     free(data);
118     return NULL;
119
120 }
121
122 int main(int argc, char* argv[]) {
123
124     /* Server */
125     int socket_fd;
126     struct sockaddr_in server_addr;
127     int opt_on = 1;
128
129     /* Client */
130     struct sockaddr_in client_addr;
131     unsigned int client_addr_len;
132     int connected_socket_fd;
133
134     /* Arguments */
135     int listen_port = 4822; /* Default port */
136     int opt;
137
138     char* pidfile = NULL;
139
140     /* Daemon Process */
141     pid_t daemon_pid;
142
143 #ifdef __MINGW32__
144     /* Structure for holding winsock version info */
145     WSADATA wsadata;
146 #endif
147
148     /* Parse arguments */
149     while ((opt = getopt(argc, argv, "l:p:")) != -1) {
150         if (opt == 'l') {
151             listen_port = atoi(optarg);
152             if (listen_port <= 0) {
153                 fprintf(stderr, "Invalid port: %s\n", optarg);
154                 exit(EXIT_FAILURE);
155             }
156         }
157         else if (opt == 'p') {
158             pidfile = strdup(optarg);
159         }
160         else {
161             fprintf(stderr, "USAGE: %s [-l LISTENPORT] [-p PIDFILE]\n", argv[0]);
162             exit(EXIT_FAILURE);
163         }
164     }
165
166     /* Get binding address */
167     memset(&server_addr, 0, sizeof(server_addr)); /* Zero struct */
168     server_addr.sin_family = AF_INET;
169     server_addr.sin_addr.s_addr = INADDR_ANY;
170     server_addr.sin_port = htons(listen_port);
171
172 #ifdef __MINGW32__
173     /* If compiling for Windows, init winsock. */
174     if (WSAStartup(MAKEWORD(1,1), &wsadata) == SOCKET_ERROR) {
175         fprintf(stderr, "Error creating socket.");
176         exit(EXIT_FAILURE);
177     }
178 #endif
179
180     /* Get socket */
181     socket_fd = socket(AF_INET, SOCK_STREAM, 0);
182     if (socket_fd < 0) {
183         fprintf(stderr, "Error opening socket: %s\n", lasterror());
184         exit(EXIT_FAILURE);
185     }
186
187     if (setsockopt(socket_fd, SOL_SOCKET, SO_REUSEADDR, &opt_on, sizeof(opt_on))) {
188         fprintf(stderr, "Warning: Unable to set socket options for reuse: %s\n", lasterror());
189     }
190
191     /* Bind socket to address */
192     if (bind(socket_fd, (struct sockaddr*) &server_addr,
193                 sizeof(server_addr)) < 0) {
194         fprintf(stderr, "Error binding socket: %s\n", lasterror());
195         exit(EXIT_FAILURE);
196     } 
197
198     /* Fork into background */
199 #ifdef HAVE_FORK
200     daemon_pid = fork();
201
202     /* If error, fail */
203     if (daemon_pid == -1) {
204         fprintf(stderr, "Error forking daemon process: %s\n", lasterror());
205         exit(EXIT_FAILURE);
206     }
207
208     /* If parent, write PID file and exit */
209     else if (daemon_pid != 0) {
210
211         if (pidfile != NULL) {
212
213             /* Attempt to open pidfile and write PID */
214             FILE* pidf = fopen(pidfile, "w");
215             if (pidf) {
216                 fprintf(pidf, "%d\n", daemon_pid);
217                 fclose(pidf);
218             }
219
220             /* Warn on failure */
221             else {
222                 fprintf(stderr, "WARNING: Could not write PID file: %s\n", lasterror());
223                 exit(EXIT_FAILURE);
224             }
225
226         }
227
228         exit(EXIT_SUCCESS);
229     }
230 #else
231     GUAC_LOG_INFO("fork() not defined at compile time.");
232     GUAC_LOG_INFO("guacd running in foreground only.");
233 #endif
234
235     /* Otherwise, this is the daemon */
236     GUAC_LOG_INFO("Started, listening on port %i", listen_port);
237
238     /* Daemon loop */
239     for (;;) {
240
241 #ifdef HAVE_LIBPTHREAD
242         pthread_t thread;
243 #endif
244         client_thread_data* data;
245
246         /* Listen for connections */
247         if (listen(socket_fd, 5) < 0) {
248             GUAC_LOG_ERROR("Could not listen on socket: %s", lasterror());
249             return 3;
250         }
251
252         /* Accept connection */
253         client_addr_len = sizeof(client_addr);
254         connected_socket_fd = accept(socket_fd, (struct sockaddr*) &client_addr, &client_addr_len);
255         if (connected_socket_fd < 0) {
256             GUAC_LOG_ERROR("Could not accept client connection: %s", lasterror());
257             return 3;
258         }
259
260         data = malloc(sizeof(client_thread_data));
261         data->fd = connected_socket_fd;
262
263 #ifdef HAVE_LIBPTHREAD
264         if (pthread_create(&thread, NULL, start_client_thread, (void*) data)) {
265             GUAC_LOG_ERROR("Could not create client thread: %s", lasterror());
266             return 3;
267         }
268 #elif __MINGW32__
269         if (_beginthread(start_client_thread, 0, (void*) data) == -1L) { 
270             GUAC_LOG_ERROR("Could not create client thread: %s", lasterror());
271             return 3;
272         }
273 #else
274 #warning THREAD SUPPORT NOT FOUND! guacd will only be able to handle one connection at a time.
275         GUAC_LOG_INFO("Thread support not present at compile time.");
276         GUAC_LOG_INFO("guacd handling one connection at a time.");
277         start_client_thread(data);
278 #endif
279
280     }
281
282     /* Close socket */
283     if (CLOSE_SOCKET(socket_fd) < 0) {
284         GUAC_LOG_ERROR("Could not close socket: %s", lasterror());
285         return 3;
286     }
287
288     return 0;
289
290 }
291