1 /* Serial interface for raw TCP connections on Un*x like systems.
3 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2001, 2005, 2006,
4 2007, 2008, 2009 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
26 #include "cli/cli-decode.h"
27 #include "cli/cli-setshow.h"
29 #include <sys/types.h>
31 #ifdef HAVE_SYS_FILIO_H
32 #include <sys/filio.h> /* For FIONBIO. */
34 #ifdef HAVE_SYS_IOCTL_H
35 #include <sys/ioctl.h> /* For FIONBIO. */
42 #define ETIMEDOUT WSAETIMEDOUT
43 #define close(fd) closesocket (fd)
44 #define ioctl ioctlsocket
46 #include <netinet/in.h>
47 #include <arpa/inet.h>
49 #include <sys/socket.h>
50 #include <netinet/tcp.h>
54 #include "gdb_string.h"
55 #include "gdb_select.h"
57 #ifndef HAVE_SOCKLEN_T
58 typedef int socklen_t
;
61 void _initialize_ser_tcp (void);
63 /* For "set tcp" and "show tcp". */
65 static struct cmd_list_element
*tcp_set_cmdlist
;
66 static struct cmd_list_element
*tcp_show_cmdlist
;
68 /* Whether to auto-retry refused connections. */
70 static int tcp_auto_retry
= 1;
72 /* Timeout period for connections, in seconds. */
74 static int tcp_retry_limit
= 15;
76 /* how many times per second to poll deprecated_ui_loop_hook */
78 #define POLL_INTERVAL 5
80 /* Helper function to wait a while. If SCB is non-null, wait on its
81 file descriptor. Otherwise just wait on a timeout, updating *POLLS.
82 Returns -1 on timeout or interrupt, otherwise the value of select. */
85 wait_for_connect (struct serial
*scb
, int *polls
)
90 /* While we wait for the connect to complete,
91 poll the UI so it can update or the user can
93 if (deprecated_ui_loop_hook
&& deprecated_ui_loop_hook (0))
99 /* Check for timeout. */
100 if (*polls
> tcp_retry_limit
* POLL_INTERVAL
)
106 /* Back off to polling once per second after the first POLL_INTERVAL
108 if (*polls
< POLL_INTERVAL
)
111 t
.tv_usec
= 1000000 / POLL_INTERVAL
;
121 fd_set rset
, wset
, eset
;
123 FD_SET (scb
->fd
, &rset
);
127 /* POSIX systems return connection success or failure by signalling
128 wset. Windows systems return success in wset and failure in
131 We must call select here, rather than gdb_select, because
132 the serial structure has not yet been initialized - the
133 MinGW select wrapper will not know that this FD refers
135 n
= select (scb
->fd
+ 1, &rset
, &wset
, &eset
, &t
);
138 /* Use gdb_select here, since we have no file descriptors, and on
139 Windows, plain select doesn't work in that case. */
140 n
= gdb_select (0, NULL
, NULL
, NULL
, &t
);
142 /* If we didn't time out, only count it as one poll. */
143 if (n
> 0 || *polls
< POLL_INTERVAL
)
146 (*polls
) += POLL_INTERVAL
;
151 /* Open a tcp socket */
154 net_open (struct serial
*scb
, const char *name
)
156 char *port_str
, hostname
[100];
159 struct hostent
*hostent
;
160 struct sockaddr_in sockaddr
;
169 if (strncmp (name
, "udp:", 4) == 0)
174 else if (strncmp (name
, "tcp:", 4) == 0)
177 port_str
= strchr (name
, ':');
180 error (_("net_open: No colon in host name!")); /* Shouldn't ever happen */
182 tmp
= min (port_str
- name
, (int) sizeof hostname
- 1);
183 strncpy (hostname
, name
, tmp
); /* Don't want colon */
184 hostname
[tmp
] = '\000'; /* Tie off host name */
185 port
= atoi (port_str
+ 1);
187 /* default hostname is localhost */
189 strcpy (hostname
, "localhost");
191 hostent
= gethostbyname (hostname
);
194 fprintf_unfiltered (gdb_stderr
, "%s: unknown host\n", hostname
);
199 sockaddr
.sin_family
= PF_INET
;
200 sockaddr
.sin_port
= htons (port
);
201 memcpy (&sockaddr
.sin_addr
.s_addr
, hostent
->h_addr
,
202 sizeof (struct in_addr
));
207 scb
->fd
= socket (PF_INET
, SOCK_DGRAM
, 0);
209 scb
->fd
= socket (PF_INET
, SOCK_STREAM
, 0);
214 /* set socket nonblocking */
216 ioctl (scb
->fd
, FIONBIO
, &ioarg
);
218 /* Use Non-blocking connect. connect() will return 0 if connected already. */
219 n
= connect (scb
->fd
, (struct sockaddr
*) &sockaddr
, sizeof (sockaddr
));
224 int err
= WSAGetLastError();
229 /* Maybe we're waiting for the remote target to become ready to
230 accept connections. */
233 && err
== WSAECONNREFUSED
235 && err
== ECONNREFUSED
237 && wait_for_connect (NULL
, &polls
) >= 0)
245 /* Under Windows, calling "connect" with a non-blocking socket
246 results in WSAEWOULDBLOCK, not WSAEINPROGRESS. */
247 err
!= WSAEWOULDBLOCK
258 /* looks like we need to wait for the connect */
261 n
= wait_for_connect (scb
, &polls
);
271 /* Got something. Is it an error? */
276 /* On Windows, the fourth parameter to getsockopt is a "char *";
277 on UNIX systems it is generally "void *". The cast to "void *"
278 is OK everywhere, since in C "void *" can be implicitly
279 converted to any pointer type. */
280 res
= getsockopt (scb
->fd
, SOL_SOCKET
, SO_ERROR
, (void *) &err
, &len
);
283 /* Maybe the target still isn't ready to accept the connection. */
286 && err
== WSAECONNREFUSED
288 && err
== ECONNREFUSED
290 && wait_for_connect (NULL
, &polls
) >= 0)
302 /* turn off nonblocking */
304 ioctl (scb
->fd
, FIONBIO
, &ioarg
);
308 /* Disable Nagle algorithm. Needed in some cases. */
310 setsockopt (scb
->fd
, IPPROTO_TCP
, TCP_NODELAY
,
311 (char *)&tmp
, sizeof (tmp
));
315 /* If we don't do this, then GDB simply exits
316 when the remote side dies. */
317 signal (SIGPIPE
, SIG_IGN
);
324 net_close (struct serial
*scb
)
334 net_read_prim (struct serial
*scb
, size_t count
)
336 return recv (scb
->fd
, scb
->buf
, count
, 0);
340 net_write_prim (struct serial
*scb
, const void *buf
, size_t count
)
342 return send (scb
->fd
, buf
, count
, 0);
346 ser_tcp_send_break (struct serial
*scb
)
348 /* Send telnet IAC and BREAK characters. */
349 return (serial_write (scb
, "\377\363", 2));
352 /* Support for "set tcp" and "show tcp" commands. */
355 set_tcp_cmd (char *args
, int from_tty
)
357 help_list (tcp_set_cmdlist
, "set tcp ", -1, gdb_stdout
);
361 show_tcp_cmd (char *args
, int from_tty
)
363 help_list (tcp_show_cmdlist
, "show tcp ", -1, gdb_stdout
);
368 _initialize_ser_tcp (void)
371 /* Do nothing; the TCP serial operations will be initialized in
374 struct serial_ops
*ops
;
375 ops
= XMALLOC (struct serial_ops
);
376 memset (ops
, 0, sizeof (struct serial_ops
));
379 ops
->open
= net_open
;
380 ops
->close
= net_close
;
381 ops
->readchar
= ser_base_readchar
;
382 ops
->write
= ser_base_write
;
383 ops
->flush_output
= ser_base_flush_output
;
384 ops
->flush_input
= ser_base_flush_input
;
385 ops
->send_break
= ser_tcp_send_break
;
386 ops
->go_raw
= ser_base_raw
;
387 ops
->get_tty_state
= ser_base_get_tty_state
;
388 ops
->set_tty_state
= ser_base_set_tty_state
;
389 ops
->print_tty_state
= ser_base_print_tty_state
;
390 ops
->noflush_set_tty_state
= ser_base_noflush_set_tty_state
;
391 ops
->setbaudrate
= ser_base_setbaudrate
;
392 ops
->setstopbits
= ser_base_setstopbits
;
393 ops
->drain_output
= ser_base_drain_output
;
394 ops
->async
= ser_base_async
;
395 ops
->read_prim
= net_read_prim
;
396 ops
->write_prim
= net_write_prim
;
397 serial_add_interface (ops
);
398 #endif /* USE_WIN32API */
400 add_prefix_cmd ("tcp", class_maintenance
, set_tcp_cmd
, _("\
401 TCP protocol specific variables\n\
402 Configure variables specific to remote TCP connections"),
403 &tcp_set_cmdlist
, "set tcp ",
404 0 /* allow-unknown */, &setlist
);
405 add_prefix_cmd ("tcp", class_maintenance
, show_tcp_cmd
, _("\
406 TCP protocol specific variables\n\
407 Configure variables specific to remote TCP connections"),
408 &tcp_show_cmdlist
, "show tcp ",
409 0 /* allow-unknown */, &showlist
);
411 add_setshow_boolean_cmd ("auto-retry", class_obscure
,
412 &tcp_auto_retry
, _("\
413 Set auto-retry on socket connect"), _("\
414 Show auto-retry on socket connect"),
416 &tcp_set_cmdlist
, &tcp_show_cmdlist
);
418 add_setshow_uinteger_cmd ("connect-timeout", class_obscure
,
419 &tcp_retry_limit
, _("\
420 Set timeout limit for socket connection"), _("\
421 Show timeout limit for socket connection"),
423 &tcp_set_cmdlist
, &tcp_show_cmdlist
);