ce0ee6cd231863a41fbbe973042d608a2860f4a3
[openocd.git] / src / server / server.c
1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23
24 #include "replacements.h"
25
26 #include "server.h"
27
28 #include "log.h"
29 #include "telnet_server.h"
30 #include "target.h"
31
32 #include <command.h>
33 #include <string.h>
34 #include <stdlib.h>
35 #include <errno.h>
36 #include <unistd.h>
37 #include <sys/types.h>
38 #include <fcntl.h>
39 #include <signal.h>
40 #ifndef _WIN32
41 #include <netinet/tcp.h>
42 #endif
43
44 service_t *services = NULL;
45
46 /* shutdown_openocd == 1: exit the main event loop, and quit the debugger */
47 static int shutdown_openocd = 0;
48 int handle_shutdown_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
49
50 int add_connection(service_t *service, command_context_t *cmd_ctx)
51 {
52 unsigned int address_size;
53 connection_t *c, **p;
54 int retval;
55 int flag=1;
56
57 c = malloc(sizeof(connection_t));
58 c->fd = -1;
59 memset(&c->sin, 0, sizeof(c->sin));
60 c->cmd_ctx = copy_command_context(cmd_ctx);
61 c->service = service;
62 c->input_pending = 0;
63 c->priv = NULL;
64 c->next = NULL;
65
66 address_size = sizeof(c->sin);
67
68 c->fd = accept(service->fd, (struct sockaddr *)&service->sin, &address_size);
69
70 /* This increases performance dramatically for e.g. GDB load which
71 * does not have a sliding window protocol. */
72 retval=setsockopt(c->fd, /* socket affected */
73 IPPROTO_TCP, /* set option at TCP level */
74 TCP_NODELAY, /* name of option */
75 (char *)&flag, /* the cast is historical cruft */
76 sizeof(int)); /* length of option value */
77
78 LOG_INFO("accepting '%s' connection from %i", service->name, c->sin.sin_port);
79 if ((retval = service->new_connection(c)) == ERROR_OK)
80 {
81 }
82 else
83 {
84 close_socket(c->fd);
85 LOG_ERROR("attempted '%s' connection rejected", service->name);
86 free(c);
87 return retval;
88 }
89
90 /* add to the end of linked list */
91 for (p = &service->connections; *p; p = &(*p)->next);
92 *p = c;
93
94 service->max_connections--;
95
96 return ERROR_OK;
97 }
98
99 int remove_connection(service_t *service, connection_t *connection)
100 {
101 connection_t **p = &service->connections;
102 connection_t *c;
103
104 /* find connection */
105 while((c = *p))
106 {
107 if (c->fd == connection->fd)
108 {
109 service->connection_closed(c);
110 close_socket(c->fd);
111 command_done(c->cmd_ctx);
112
113 /* delete connection */
114 *p = c->next;
115 free(c);
116
117 service->max_connections++;
118 break;
119 }
120
121 /* redirect p to next list pointer */
122 p = &(*p)->next;
123 }
124
125 return ERROR_OK;
126 }
127
128 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)
129 {
130 service_t *c, **p;
131 int so_reuseaddr_option = 1;
132
133 c = malloc(sizeof(service_t));
134
135 c->name = strdup(name);
136 c->type = type;
137 c->port = port;
138 c->max_connections = max_connections;
139 c->fd = -1;
140 c->connections = NULL;
141 c->new_connection = new_connection_handler;
142 c->input = input_handler;
143 c->connection_closed = connection_closed_handler;
144 c->priv = priv;
145 c->next = NULL;
146
147 if ((c->fd = socket(AF_INET, SOCK_STREAM, 0)) == -1)
148 {
149 LOG_ERROR("error creating socket: %s", strerror(errno));
150 exit(-1);
151 }
152
153 setsockopt(c->fd, SOL_SOCKET, SO_REUSEADDR, (void*)&so_reuseaddr_option, sizeof(int));
154
155 socket_nonblock(c->fd);
156
157 memset(&c->sin, 0, sizeof(c->sin));
158 c->sin.sin_family = AF_INET;
159 c->sin.sin_addr.s_addr = INADDR_ANY;
160 c->sin.sin_port = htons(port);
161
162 if (bind(c->fd, (struct sockaddr *)&c->sin, sizeof(c->sin)) == -1)
163 {
164 LOG_ERROR("couldn't bind to socket: %s", strerror(errno));
165 exit(-1);
166 }
167
168 #ifndef _WIN32
169 int segsize=65536;
170 setsockopt(c->fd, IPPROTO_TCP, TCP_MAXSEG, &segsize, sizeof(int));
171 #endif
172 int window_size = 128 * 1024;
173
174 /* These setsockopt()s must happen before the listen() */
175
176 setsockopt(c->fd, SOL_SOCKET, SO_SNDBUF,
177 (char *)&window_size, sizeof(window_size));
178 setsockopt(c->fd, SOL_SOCKET, SO_RCVBUF,
179 (char *)&window_size, sizeof(window_size));
180
181 if (listen(c->fd, 1) == -1)
182 {
183 LOG_ERROR("couldn't listen on socket: %s", strerror(errno));
184 exit(-1);
185 }
186
187 /* add to the end of linked list */
188 for (p = &services; *p; p = &(*p)->next);
189 *p = c;
190
191 return ERROR_OK;
192 }
193
194 int remove_service(unsigned short port)
195 {
196 service_t **p = &services;
197 service_t *c;
198
199 /* find service */
200 while((c = *p))
201 {
202 if (c->port == port)
203 {
204 if (c->name)
205 free(c->name);
206
207 if (c->priv)
208 free(c->priv);
209
210 /* delete service */
211 *p = c->next;
212 free(c);
213 }
214
215 /* redirect p to next list pointer */
216 p = &(*p)->next;
217 }
218
219 return ERROR_OK;
220 }
221
222 int remove_services()
223 {
224 service_t *c = services;
225
226 /* loop service */
227 while(c)
228 {
229 service_t *next = c->next;
230
231 if (c->name)
232 free(c->name);
233
234 if (c->priv)
235 free(c->priv);
236
237 /* delete service */
238 free(c);
239
240 /* remember the last service for unlinking */
241 c = next;
242 }
243
244 services = NULL;
245
246 return ERROR_OK;
247 }
248
249 extern void openocd_sleep_prelude();
250 extern void openocd_sleep_postlude();
251
252 int server_loop(command_context_t *command_context)
253 {
254 service_t *service;
255
256 /* used in select() */
257 fd_set read_fds;
258 struct timeval tv;
259 int fd_max;
260
261 /* used in accept() */
262 int retval;
263
264 #ifndef _WIN32
265 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
266 LOG_ERROR("couldn't set SIGPIPE to SIG_IGN");
267 #endif
268
269 /* do regular tasks after at most 10ms */
270 tv.tv_sec = 0;
271 tv.tv_usec = 10000;
272
273 while(!shutdown_openocd)
274 {
275 /* monitor sockets for acitvity */
276 fd_max = 0;
277 FD_ZERO(&read_fds);
278
279 /* add service and connection fds to read_fds */
280 for (service = services; service; service = service->next)
281 {
282 if (service->fd != -1)
283 {
284 /* listen for new connections */
285 FD_SET(service->fd, &read_fds);
286
287 if (service->fd > fd_max)
288 fd_max = service->fd;
289 }
290
291 if (service->connections)
292 {
293 connection_t *c;
294
295 for (c = service->connections; c; c = c->next)
296 {
297 /* check for activity on the connection */
298 FD_SET(c->fd, &read_fds);
299 if (c->fd > fd_max)
300 fd_max = c->fd;
301 }
302 }
303 }
304
305 #ifndef _WIN32
306 #ifndef BUILD_ECOSBOARD
307 /* add STDIN to read_fds */
308 FD_SET(fileno(stdin), &read_fds);
309 #endif
310 #endif
311
312 openocd_sleep_prelude();
313 kept_alive();
314 // Only while we're sleeping we'll let others run
315 retval = select(fd_max + 1, &read_fds, NULL, NULL, &tv);
316 openocd_sleep_postlude();
317
318 if (retval == -1)
319 {
320 #ifdef _WIN32
321
322 errno = WSAGetLastError();
323
324 if (errno == WSAEINTR)
325 FD_ZERO(&read_fds);
326 else
327 {
328 LOG_ERROR("error during select: %s", strerror(errno));
329 exit(-1);
330 }
331 #else
332
333 if (errno == EINTR)
334 {
335 FD_ZERO(&read_fds);
336 }
337 else
338 {
339 LOG_ERROR("error during select: %s", strerror(errno));
340 exit(-1);
341 }
342 #endif
343 }
344
345 target_call_timer_callbacks();
346
347 if (retval == 0)
348 {
349 /* do regular tasks after at most 100ms */
350 tv.tv_sec = 0;
351 tv.tv_usec = 10000;
352 FD_ZERO(&read_fds); /* eCos leaves read_fds unchanged in this case! */
353 }
354
355 for (service = services; service; service = service->next)
356 {
357 /* handle new connections on listeners */
358 if ((service->fd != -1)
359 && (FD_ISSET(service->fd, &read_fds)))
360 {
361 if (service->max_connections > 0)
362 {
363 add_connection(service, command_context);
364 }
365 else
366 {
367 struct sockaddr_in sin;
368 unsigned int address_size = sizeof(sin);
369 int tmp_fd;
370 tmp_fd = accept(service->fd, (struct sockaddr *)&service->sin, &address_size);
371 close_socket(tmp_fd);
372 LOG_INFO("rejected '%s' connection, no more connections allowed", service->name);
373 }
374 }
375
376 /* handle activity on connections */
377 if (service->connections)
378 {
379 connection_t *c;
380
381 for (c = service->connections; c;)
382 {
383 if ((FD_ISSET(c->fd, &read_fds)) || c->input_pending)
384 {
385 if (service->input(c) != ERROR_OK)
386 {
387 connection_t *next = c->next;
388 remove_connection(service, c);
389 LOG_INFO("dropped '%s' connection", service->name);
390 c = next;
391 continue;
392 }
393 }
394 c = c->next;
395 }
396 }
397 }
398
399 #ifndef _WIN32
400 #ifndef BUILD_ECOSBOARD
401 if (FD_ISSET(fileno(stdin), &read_fds))
402 {
403 if (getc(stdin) == 'x')
404 {
405 shutdown_openocd = 1;
406 }
407 }
408 #endif
409 #else
410 MSG msg;
411 while (PeekMessage(&msg,NULL,0,0,PM_REMOVE))
412 {
413 if (msg.message == WM_QUIT)
414 shutdown_openocd = 1;
415 }
416 #endif
417 }
418
419 return ERROR_OK;
420 }
421
422 #ifdef _WIN32
423 BOOL WINAPI ControlHandler(DWORD dwCtrlType)
424 {
425 shutdown_openocd = 1;
426 return TRUE;
427 }
428
429 void sig_handler(int sig) {
430 shutdown_openocd = 1;
431 }
432 #endif
433
434 int server_init()
435 {
436 #ifdef _WIN32
437 WORD wVersionRequested;
438 WSADATA wsaData;
439
440 wVersionRequested = MAKEWORD( 2, 2 );
441
442 if (WSAStartup(wVersionRequested, &wsaData) != 0)
443 {
444 LOG_ERROR("Failed to Open Winsock");
445 exit(-1);
446 }
447
448 SetConsoleCtrlHandler( ControlHandler, TRUE );
449
450 signal(SIGINT, sig_handler);
451 signal(SIGTERM, sig_handler);
452 signal(SIGBREAK, sig_handler);
453 signal(SIGABRT, sig_handler);
454 #endif
455
456
457 return ERROR_OK;
458 }
459
460 int server_quit()
461 {
462 remove_services();
463
464 #ifdef _WIN32
465 WSACleanup();
466 SetConsoleCtrlHandler( ControlHandler, FALSE );
467 #endif
468
469 return ERROR_OK;
470 }
471
472 int server_register_commands(command_context_t *context)
473 {
474 register_command(context, NULL, "shutdown", handle_shutdown_command,
475 COMMAND_ANY, "shut the server down");
476
477 return ERROR_OK;
478 }
479
480 /* tell the server we want to shut down */
481 int handle_shutdown_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
482 {
483 shutdown_openocd = 1;
484
485 return ERROR_COMMAND_CLOSE_CONNECTION;
486 }
487
488

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)