server: specify port as a string
[openocd/cortex.git] / src / server / server.c
blob435ddbb7d4854234785d7a87c1c421d268b353ef
1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * Copyright (C) 2007-2010 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
7 * *
8 * Copyright (C) 2008 by Spencer Oliver *
9 * spen@spen-soft.co.uk *
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 * This program is distributed in the hope that it will be useful, *
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
19 * GNU General Public License for more details. *
20 * *
21 * You should have received a copy of the GNU General Public License *
22 * along with this program; if not, write to the *
23 * Free Software Foundation, Inc., *
24 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
25 ***************************************************************************/
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
30 #include "server.h"
31 #include <target/target.h>
32 #include "openocd.h"
33 #include "tcl_server.h"
34 #include "telnet_server.h"
36 #include <signal.h>
38 #ifndef _WIN32
39 #include <netinet/tcp.h>
40 #endif
43 static struct service *services = NULL;
45 /* shutdown_openocd == 1: exit the main event loop, and quit the debugger */
46 static int shutdown_openocd = 0;
48 /* set when using pipes rather than tcp */
49 int server_use_pipes = 0;
51 static int add_connection(struct service *service, struct command_context *cmd_ctx)
53 socklen_t address_size;
54 struct connection *c, **p;
55 int retval;
56 int flag = 1;
58 c = malloc(sizeof(struct connection));
59 c->fd = -1;
60 c->fd_out = -1;
61 memset(&c->sin, 0, sizeof(c->sin));
62 c->cmd_ctx = copy_command_context(cmd_ctx);
63 c->service = service;
64 c->input_pending = 0;
65 c->priv = NULL;
66 c->next = NULL;
68 if (service->type == CONNECTION_TCP)
70 address_size = sizeof(c->sin);
72 c->fd = accept(service->fd, (struct sockaddr *)&service->sin, &address_size);
73 c->fd_out = c->fd;
75 /* This increases performance dramatically for e.g. GDB load which
76 * does not have a sliding window protocol. */
77 retval = setsockopt(c->fd, /* socket affected */
78 IPPROTO_TCP, /* set option at TCP level */
79 TCP_NODELAY, /* name of option */
80 (char *)&flag, /* the cast is historical cruft */
81 sizeof(int)); /* length of option value */
83 LOG_INFO("accepting '%s' connection from %i", service->name, service->port);
84 if ((retval = service->new_connection(c)) != ERROR_OK)
86 close_socket(c->fd);
87 LOG_ERROR("attempted '%s' connection rejected", service->name);
88 free(c);
89 return retval;
92 else if (service->type == CONNECTION_PIPE)
94 c->fd = service->fd;
95 c->fd_out = fileno(stdout);
97 /* do not check for new connections again on stdin */
98 service->fd = -1;
100 /* do not check for new connections again on stdin */
101 service->fd = -1;
103 LOG_INFO("accepting '%s' connection from pipe", service->name);
104 if ((retval = service->new_connection(c)) != ERROR_OK)
106 LOG_ERROR("attempted '%s' connection rejected", service->name);
107 free(c);
108 return retval;
112 /* add to the end of linked list */
113 for (p = &service->connections; *p; p = &(*p)->next);
114 *p = c;
116 service->max_connections--;
118 return ERROR_OK;
121 static int remove_connection(struct service *service, struct connection *connection)
123 struct connection **p = &service->connections;
124 struct connection *c;
126 /* find connection */
127 while ((c = *p))
129 if (c->fd == connection->fd)
131 service->connection_closed(c);
132 if (service->type == CONNECTION_TCP)
133 close_socket(c->fd);
134 command_done(c->cmd_ctx);
136 /* delete connection */
137 *p = c->next;
138 free(c);
140 service->max_connections++;
141 break;
144 /* redirect p to next list pointer */
145 p = &(*p)->next;
148 return ERROR_OK;
151 int add_service(char *name, enum connection_type type, unsigned short port, int max_connections, new_connection_handler_t new_connection_handler, input_handler_t input_handler, connection_closed_handler_t connection_closed_handler, void *priv)
153 struct service *c, **p;
154 int so_reuseaddr_option = 1;
156 c = malloc(sizeof(struct service));
158 c->name = strdup(name);
159 c->type = type;
160 c->port = port;
161 c->max_connections = max_connections;
162 c->fd = -1;
163 c->connections = NULL;
164 c->new_connection = new_connection_handler;
165 c->input = input_handler;
166 c->connection_closed = connection_closed_handler;
167 c->priv = priv;
168 c->next = NULL;
170 if (type == CONNECTION_TCP)
172 if ((c->fd = socket(AF_INET, SOCK_STREAM, 0)) == -1)
174 LOG_ERROR("error creating socket: %s", strerror(errno));
175 exit(-1);
178 setsockopt(c->fd, SOL_SOCKET, SO_REUSEADDR, (void*)&so_reuseaddr_option, sizeof(int));
180 socket_nonblock(c->fd);
182 memset(&c->sin, 0, sizeof(c->sin));
183 c->sin.sin_family = AF_INET;
184 c->sin.sin_addr.s_addr = INADDR_ANY;
185 c->sin.sin_port = htons(port);
187 if (bind(c->fd, (struct sockaddr *)&c->sin, sizeof(c->sin)) == -1)
189 LOG_ERROR("couldn't bind to socket: %s", strerror(errno));
190 exit(-1);
193 #ifndef _WIN32
194 int segsize = 65536;
195 setsockopt(c->fd, IPPROTO_TCP, TCP_MAXSEG, &segsize, sizeof(int));
196 #endif
197 int window_size = 128 * 1024;
199 /* These setsockopt()s must happen before the listen() */
201 setsockopt(c->fd, SOL_SOCKET, SO_SNDBUF,
202 (char *)&window_size, sizeof(window_size));
203 setsockopt(c->fd, SOL_SOCKET, SO_RCVBUF,
204 (char *)&window_size, sizeof(window_size));
206 if (listen(c->fd, 1) == -1)
208 LOG_ERROR("couldn't listen on socket: %s", strerror(errno));
209 exit(-1);
212 else if (type == CONNECTION_PIPE)
214 c->fd = fileno(stdin);
216 #ifdef _WIN32
217 /* for win32 set stdin/stdout to binary mode */
218 if (_setmode(_fileno(stdout), _O_BINARY) < 0)
219 LOG_WARNING("cannot change stdout mode to binary");
220 if (_setmode(_fileno(stdin), _O_BINARY) < 0)
221 LOG_WARNING("cannot change stdin mode to binary");
222 if (_setmode(_fileno(stderr), _O_BINARY) < 0)
223 LOG_WARNING("cannot change stderr mode to binary");
224 #else
225 socket_nonblock(c->fd);
226 #endif
228 else
230 LOG_ERROR("unknown connection type: %d", type);
231 exit(1);
234 /* add to the end of linked list */
235 for (p = &services; *p; p = &(*p)->next);
236 *p = c;
238 return ERROR_OK;
241 int add_service_pipe(char *name, const char *port, int max_connections,
242 new_connection_handler_t new_connection_handler, input_handler_t input_handler,
243 connection_closed_handler_t connection_closed_handler, void *priv)
245 enum connection_type type = CONNECTION_TCP;
246 long portnumber;
247 char *end;
248 strtol(port, &end, 0);
249 if (!*end)
251 if ((parse_long(port, &portnumber) == ERROR_OK) && (portnumber == 0))
253 type = CONNECTION_PIPE;
255 } else
257 LOG_ERROR("Illegal port number %s", port);
258 return ERROR_FAIL;
260 return add_service(name, type, portnumber, max_connections, new_connection_handler,
261 input_handler, connection_closed_handler, priv);
264 static int remove_services(void)
266 struct service *c = services;
268 /* loop service */
269 while (c)
271 struct service *next = c->next;
273 if (c->name)
274 free(c->name);
276 if (c->type == CONNECTION_PIPE)
278 if (c->fd != -1)
279 close(c->fd);
282 if (c->priv)
283 free(c->priv);
285 /* delete service */
286 free(c);
288 /* remember the last service for unlinking */
289 c = next;
292 services = NULL;
294 return ERROR_OK;
297 int server_loop(struct command_context *command_context)
299 struct service *service;
301 bool poll_ok = true;
303 /* used in select() */
304 fd_set read_fds;
305 int fd_max;
307 /* used in accept() */
308 int retval;
310 #ifndef _WIN32
311 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
312 LOG_ERROR("couldn't set SIGPIPE to SIG_IGN");
313 #endif
315 while (!shutdown_openocd)
317 /* monitor sockets for activity */
318 fd_max = 0;
319 FD_ZERO(&read_fds);
321 /* add service and connection fds to read_fds */
322 for (service = services; service; service = service->next)
324 if (service->fd != -1)
326 /* listen for new connections */
327 FD_SET(service->fd, &read_fds);
329 if (service->fd > fd_max)
330 fd_max = service->fd;
333 if (service->connections)
335 struct connection *c;
337 for (c = service->connections; c; c = c->next)
339 /* check for activity on the connection */
340 FD_SET(c->fd, &read_fds);
341 if (c->fd > fd_max)
342 fd_max = c->fd;
347 struct timeval tv;
348 tv.tv_sec = 0;
349 if (poll_ok)
351 /* we're just polling this iteration, this is faster on embedded
352 * hosts */
353 tv.tv_usec = 0;
354 retval = socket_select(fd_max + 1, &read_fds, NULL, NULL, &tv);
355 } else
357 /* Every 100ms */
358 tv.tv_usec = 100000;
359 /* Only while we're sleeping we'll let others run */
360 openocd_sleep_prelude();
361 kept_alive();
362 retval = socket_select(fd_max + 1, &read_fds, NULL, NULL, &tv);
363 openocd_sleep_postlude();
366 if (retval == -1)
368 #ifdef _WIN32
370 errno = WSAGetLastError();
372 if (errno == WSAEINTR)
373 FD_ZERO(&read_fds);
374 else
376 LOG_ERROR("error during select: %s", strerror(errno));
377 exit(-1);
379 #else
381 if (errno == EINTR)
383 FD_ZERO(&read_fds);
385 else
387 LOG_ERROR("error during select: %s", strerror(errno));
388 exit(-1);
390 #endif
393 if (retval == 0)
395 /* We only execute these callbacks when there was nothing to do or we timed out */
396 target_call_timer_callbacks();
397 process_jim_events(command_context);
399 FD_ZERO(&read_fds); /* eCos leaves read_fds unchanged in this case! */
401 /* We timed out/there was nothing to do, timeout rather than poll next time */
402 poll_ok = false;
403 } else
405 /* There was something to do, next time we'll just poll */
406 poll_ok = true;
409 for (service = services; service; service = service->next)
411 /* handle new connections on listeners */
412 if ((service->fd != -1)
413 && (FD_ISSET(service->fd, &read_fds)))
415 if (service->max_connections > 0)
417 add_connection(service, command_context);
419 else
421 if (service->type == CONNECTION_TCP)
423 struct sockaddr_in sin;
424 socklen_t address_size = sizeof(sin);
425 int tmp_fd;
426 tmp_fd = accept(service->fd, (struct sockaddr *)&service->sin, &address_size);
427 close_socket(tmp_fd);
429 LOG_INFO("rejected '%s' connection, no more connections allowed", service->name);
433 /* handle activity on connections */
434 if (service->connections)
436 struct connection *c;
438 for (c = service->connections; c;)
440 if ((FD_ISSET(c->fd, &read_fds)) || c->input_pending)
442 if ((retval = service->input(c)) != ERROR_OK)
444 struct connection *next = c->next;
445 if (service->type == CONNECTION_PIPE)
447 /* if connection uses a pipe then shutdown openocd on error */
448 shutdown_openocd = 1;
450 remove_connection(service, c);
451 LOG_INFO("dropped '%s' connection - error %d", service->name, retval);
452 c = next;
453 continue;
456 c = c->next;
461 #ifdef _WIN32
462 MSG msg;
463 while (PeekMessage(&msg,NULL,0,0,PM_REMOVE))
465 if (msg.message == WM_QUIT)
466 shutdown_openocd = 1;
468 #endif
471 return ERROR_OK;
474 #ifdef _WIN32
475 BOOL WINAPI ControlHandler(DWORD dwCtrlType)
477 shutdown_openocd = 1;
478 return TRUE;
481 void sig_handler(int sig) {
482 shutdown_openocd = 1;
484 #endif
486 int server_preinit(void)
488 /* this currently only calls WSAStartup on native win32 systems
489 * before any socket operations are performed.
490 * This is an issue if you call init in your config script */
492 #ifdef _WIN32
493 WORD wVersionRequested;
494 WSADATA wsaData;
496 wVersionRequested = MAKEWORD(2, 2);
498 if (WSAStartup(wVersionRequested, &wsaData) != 0)
500 LOG_ERROR("Failed to Open Winsock");
501 exit(-1);
504 if (server_use_pipes == 0)
506 /* register ctrl-c handler */
507 SetConsoleCtrlHandler(ControlHandler, TRUE);
509 else
511 /* we are using pipes so ignore ctrl-c */
512 SetConsoleCtrlHandler(NULL, TRUE);
515 signal(SIGINT, sig_handler);
516 signal(SIGTERM, sig_handler);
517 signal(SIGBREAK, sig_handler);
518 signal(SIGABRT, sig_handler);
519 #endif
521 return ERROR_OK;
524 int server_init(struct command_context *cmd_ctx)
526 int ret = tcl_init();
527 if (ERROR_OK != ret)
528 return ret;
530 return telnet_init("Open On-Chip Debugger");
533 int server_quit(void)
535 remove_services();
537 #ifdef _WIN32
538 WSACleanup();
539 SetConsoleCtrlHandler(ControlHandler, FALSE);
540 #endif
542 return ERROR_OK;
545 int connection_write(struct connection *connection, const void *data, int len)
547 if (len == 0)
549 /* successful no-op. Sockets and pipes behave differently here... */
550 return 0;
552 if (connection->service->type == CONNECTION_TCP)
554 return write_socket(connection->fd_out, data, len);
555 } else
557 return write(connection->fd_out, data, len);
561 int connection_read(struct connection *connection, void *data, int len)
563 if (connection->service->type == CONNECTION_TCP)
565 return read_socket(connection->fd, data, len);
566 } else
568 return read(connection->fd, data, len);
572 /* tell the server we want to shut down */
573 COMMAND_HANDLER(handle_shutdown_command)
575 LOG_USER("shutdown command invoked");
577 shutdown_openocd = 1;
579 return ERROR_OK;
582 static const struct command_registration server_command_handlers[] = {
584 .name = "shutdown",
585 .handler = &handle_shutdown_command,
586 .mode = COMMAND_ANY,
587 .help = "shut the server down",
589 COMMAND_REGISTRATION_DONE
592 int server_register_commands(struct command_context *cmd_ctx)
594 int retval = telnet_register_commands(cmd_ctx);
595 if (ERROR_OK != retval)
596 return retval;
598 retval = tcl_register_commands(cmd_ctx);
599 if (ERROR_OK != retval)
600 return retval;
602 return register_commands(cmd_ctx, NULL, server_command_handlers);
605 SERVER_PORT_COMMAND()
607 switch (CMD_ARGC) {
608 case 0:
609 command_print(CMD_CTX, "%d", *out);
610 break;
611 case 1:
613 uint16_t port;
614 COMMAND_PARSE_NUMBER(u16, CMD_ARGV[0], port);
615 *out = port;
616 break;
618 default:
619 return ERROR_INVALID_ARGUMENTS;
621 return ERROR_OK;
624 SERVER_PIPE_COMMAND()
626 switch (CMD_ARGC) {
627 case 0:
628 command_print(CMD_CTX, "%s", *out);
629 break;
630 case 1:
632 const char * t = strdup(CMD_ARGV[0]);
633 free((void *)*out);
634 *out = t;
635 break;
637 default:
638 return ERROR_INVALID_ARGUMENTS;
640 return ERROR_OK;