+2015-03-07 Pedro Alves <palves@redhat.com>
+
+ * common/gdb_socket.h: New file.
+ * ser-tcp.c: Include gdb_socket.h. Don't include netinet/in.h nor
+ sys/socket.h.
+ (net_open): Use union gdb_sockaddr_u.
+
2015-03-07 Pedro Alves <palves@redhat.com>
* common/common-exceptions.c [!__cplusplus] (enum catcher_state)
--- /dev/null
+/* Copyright (C) 2015 Free Software Foundation, Inc.
+
+ This file is part of GDB.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+#ifndef GDB_SOCKET_H
+#define GDB_SOCKET_H
+
+#if USE_WIN32API
+#include <winsock2.h>
+#else
+#include <sys/socket.h>
+#include <netinet/in.h>
+#if HAVE_SYS_UN_H
+#include <sys/un.h>
+#endif
+#endif
+
+/* Use this union instead of casts between struct sockaddr <-> struct
+ sockaddr_foo to avoid strict aliasing violations. */
+
+union gdb_sockaddr_u
+{
+ struct sockaddr sa;
+ struct sockaddr_in sa_in;
+#if HAVE_SYS_UN_H
+ struct sockaddr_un sa_un;
+#endif
+};
+
+#endif /* GDB_SOCKET_H */
+2015-03-07 Pedro Alves <palves@redhat.com>
+
+ * gdbreplay.c: No longer include <netinet/in.h>, <sys/socket.h>,
+ or <winsock2.h> here. Instead include "gdb_socket.h".
+ (remote_open): Use union gdb_sockaddr_u.
+ * remote-utils.c: No longer include <netinet/in.h>, <sys/socket.h>
+ or <winsock2.h> here. Instead include "gdb_socket.h".
+ (handle_accept_event, remote_prepare): Use union gdb_sockaddr_u.
+ * tracepoint.c: Include "gdb_socket.h" instead of <sys/socket.h>
+ or <sys/un.h>.
+ (init_named_socket, gdb_agent_helper_thread): Use union
+ gdb_sockaddr_u.
+
2015-03-07 Pedro Alves <palves@redhat.com>
Adjust all callers of TRY_CATCH to use TRY/CATCH/END_CATCH
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
-#ifdef HAVE_NETINET_IN_H
-#include <netinet/in.h>
-#endif
-#ifdef HAVE_SYS_SOCKET_H
-#include <sys/socket.h>
-#endif
#if HAVE_NETDB_H
#include <netdb.h>
#endif
#if HAVE_NETINET_TCP_H
#include <netinet/tcp.h>
#endif
+#include "gdb_socket.h"
#include <alloca.h>
-#if USE_WIN32API
-#include <winsock2.h>
-#endif
#ifndef HAVE_SOCKLEN_T
typedef int socklen_t;
#endif
char *port_str;
int port;
- struct sockaddr_in sockaddr;
+ union gdb_sockaddr_u sockaddr;
socklen_t tmp;
int tmp_desc;
setsockopt (tmp_desc, SOL_SOCKET, SO_REUSEADDR, (char *) &tmp,
sizeof (tmp));
- sockaddr.sin_family = PF_INET;
- sockaddr.sin_port = htons (port);
- sockaddr.sin_addr.s_addr = INADDR_ANY;
+ sockaddr.sa_in.sin_family = PF_INET;
+ sockaddr.sa_in.sin_port = htons (port);
+ sockaddr.sa_in.sin_addr.s_addr = INADDR_ANY;
- if (bind (tmp_desc, (struct sockaddr *) &sockaddr, sizeof (sockaddr))
+ if (bind (tmp_desc, &sockaddr.sa, sizeof (sockaddr.sa_in))
|| listen (tmp_desc, 1))
perror_with_name ("Can't bind address");
- tmp = sizeof (sockaddr);
- remote_desc = accept (tmp_desc, (struct sockaddr *) &sockaddr, &tmp);
+ tmp = sizeof (sockaddr.sa_in);
+ remote_desc = accept (tmp_desc, &sockaddr.sa, &tmp);
if (remote_desc == -1)
perror_with_name ("Accept failed");
#if HAVE_SYS_FILE_H
#include <sys/file.h>
#endif
-#if HAVE_NETINET_IN_H
-#include <netinet/in.h>
-#endif
-#if HAVE_SYS_SOCKET_H
-#include <sys/socket.h>
-#endif
#if HAVE_NETDB_H
#include <netdb.h>
#endif
#include <arpa/inet.h>
#endif
#include <sys/stat.h>
-
-#if USE_WIN32API
-#include <winsock2.h>
-#endif
+#include "gdb_socket.h"
#if __QNX__
#include <sys/iomgr.h>
static int
handle_accept_event (int err, gdb_client_data client_data)
{
- struct sockaddr_in sockaddr;
+ union gdb_sockaddr_u sockaddr;
socklen_t tmp;
if (debug_threads)
debug_printf ("handling possible accept event\n");
- tmp = sizeof (sockaddr);
- remote_desc = accept (listen_desc, (struct sockaddr *) &sockaddr, &tmp);
+ tmp = sizeof (sockaddr.sa_in);
+ remote_desc = accept (listen_desc, &sockaddr.sa, &tmp);
if (remote_desc == -1)
perror_with_name ("Accept failed");
/* Convert IP address to string. */
fprintf (stderr, "Remote debugging from host %s\n",
- inet_ntoa (sockaddr.sin_addr));
+ inet_ntoa (sockaddr.sa_in.sin_addr));
enable_async_notification (remote_desc);
static int winsock_initialized;
#endif
int port;
- struct sockaddr_in sockaddr;
+ union gdb_sockaddr_u sockaddr;
socklen_t tmp;
char *port_end;
setsockopt (listen_desc, SOL_SOCKET, SO_REUSEADDR, (char *) &tmp,
sizeof (tmp));
- sockaddr.sin_family = PF_INET;
- sockaddr.sin_port = htons (port);
- sockaddr.sin_addr.s_addr = INADDR_ANY;
+ sockaddr.sa_in.sin_family = PF_INET;
+ sockaddr.sa_in.sin_port = htons (port);
+ sockaddr.sa_in.sin_addr.s_addr = INADDR_ANY;
- if (bind (listen_desc, (struct sockaddr *) &sockaddr, sizeof (sockaddr))
+ if (bind (listen_desc, &sockaddr.sa, sizeof (sockaddr.sa_in))
|| listen (listen_desc, 1))
perror_with_name ("Can't bind address");
#else /* !IN_PROCESS_AGENT */
-#include <sys/socket.h>
-#include <sys/un.h>
+#include "gdb_socket.h"
#ifndef UNIX_PATH_MAX
#define UNIX_PATH_MAX sizeof(((struct sockaddr_un *) NULL)->sun_path)
init_named_socket (const char *name)
{
int result, fd;
- struct sockaddr_un addr;
+ union gdb_sockaddr_u addr;
result = fd = socket (PF_UNIX, SOCK_STREAM, 0);
if (result == -1)
return -1;
}
- addr.sun_family = AF_UNIX;
+ addr.sa_un.sun_family = AF_UNIX;
- strncpy (addr.sun_path, name, UNIX_PATH_MAX);
- addr.sun_path[UNIX_PATH_MAX - 1] = '\0';
+ strncpy (addr.sa_un.sun_path, name, UNIX_PATH_MAX);
+ addr.sa_un.sun_path[UNIX_PATH_MAX - 1] = '\0';
result = access (name, F_OK);
if (result == 0)
warning ("socket %s already exists; overwriting", name);
}
- result = bind (fd, (struct sockaddr *) &addr, sizeof (addr));
+ result = bind (fd, &addr.sa, sizeof (addr.sa_un));
if (result == -1)
{
warning ("bind failed: %s", strerror (errno));
while (1)
{
socklen_t tmp;
- struct sockaddr_un sockaddr;
+ union gdb_sockaddr_u sockaddr;
int fd;
char buf[1];
int ret;
int stop_loop = 0;
- tmp = sizeof (sockaddr);
+ tmp = sizeof (sockaddr.sa_un);
do
{
- fd = accept (listen_fd, &sockaddr, &tmp);
+ fd = accept (listen_fd, &sockaddr.sa, &tmp);
}
/* It seems an ERESTARTSYS can escape out of accept. */
while (fd == -512 || (fd == -1 && errno == EINTR));
#include <sys/time.h>
+#include "gdb_socket.h"
+
#ifdef USE_WIN32API
#include <winsock2.h>
#ifndef ETIMEDOUT
#define close(fd) closesocket (fd)
#define ioctl ioctlsocket
#else
-#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
-#include <sys/socket.h>
#include <netinet/tcp.h>
#endif
int n, port, tmp;
int use_udp;
struct hostent *hostent;
- struct sockaddr_in sockaddr;
+ union gdb_sockaddr_u sockaddr;
#ifdef USE_WIN32API
u_long ioarg;
#else
return -1;
}
- sockaddr.sin_family = PF_INET;
- sockaddr.sin_port = htons (port);
- memcpy (&sockaddr.sin_addr.s_addr, hostent->h_addr,
+ sockaddr.sa_in.sin_family = PF_INET;
+ sockaddr.sa_in.sin_port = htons (port);
+ memcpy (&sockaddr.sa_in.sin_addr.s_addr, hostent->h_addr,
sizeof (struct in_addr));
retry:
/* Use Non-blocking connect. connect() will return 0 if connected
already. */
- n = connect (scb->fd, (struct sockaddr *) &sockaddr, sizeof (sockaddr));
+ n = connect (scb->fd, &sockaddr.sa, sizeof (sockaddr.sa_in));
if (n < 0)
{