mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
600462834f
In many files there are header comments that contain an Author: statement, supposedly reflecting who originally wrote the code. In a large collaborative project like libvirt, any non-trivial file will have been modified by a large number of different contributors. IOW, the Author: comments are quickly out of date, omitting people who have made significant contribitions. In some places Author: lines have been added despite the person merely being responsible for creating the file by moving existing code out of another file. IOW, the Author: lines give an incorrect record of authorship. With this all in mind, the comments are useless as a means to identify who to talk to about code in a particular file. Contributors will always be better off using 'git log' and 'git blame' if they need to find the author of a particular bit of code. This commit thus deletes all Author: comments from the source and adds a rule to prevent them reappearing. The Copyright headers are similarly misleading and inaccurate, however, we cannot delete these as they have legal meaning, despite being largely inaccurate. In addition only the copyright holder is permitted to change their respective copyright statement. Reviewed-by: Erik Skultety <eskultet@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
106 lines
2.6 KiB
C
106 lines
2.6 KiB
C
/*
|
|
* Copyright (C) 2013-2014 Red Hat, Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#if HAVE_DLFCN_H
|
|
# include <dlfcn.h>
|
|
#endif
|
|
|
|
#if defined(__linux__) && defined(RTLD_NEXT)
|
|
# include "internal.h"
|
|
# include <sys/socket.h>
|
|
# include <arpa/inet.h>
|
|
# include <netinet/in.h>
|
|
# include <unistd.h>
|
|
|
|
static bool host_has_ipv6;
|
|
static int (*realsocket)(int domain, int type, int protocol);
|
|
|
|
static void init_syms(void)
|
|
{
|
|
int fd;
|
|
|
|
if (realsocket)
|
|
return;
|
|
|
|
realsocket = dlsym(RTLD_NEXT, "socket");
|
|
|
|
if (!realsocket) {
|
|
fprintf(stderr, "Unable to find 'socket' symbol\n");
|
|
abort();
|
|
}
|
|
|
|
fd = realsocket(AF_INET6, SOCK_STREAM, 0);
|
|
if (fd < 0)
|
|
return;
|
|
|
|
host_has_ipv6 = true;
|
|
close(fd);
|
|
}
|
|
|
|
int socket(int domain,
|
|
int type,
|
|
int protocol)
|
|
{
|
|
init_syms();
|
|
|
|
if (getenv("LIBVIRT_TEST_IPV4ONLY") && domain == AF_INET6) {
|
|
errno = EAFNOSUPPORT;
|
|
return -1;
|
|
}
|
|
|
|
return realsocket(domain, type, protocol);
|
|
}
|
|
|
|
int bind(int sockfd ATTRIBUTE_UNUSED,
|
|
const struct sockaddr *addr,
|
|
socklen_t addrlen ATTRIBUTE_UNUSED)
|
|
{
|
|
struct sockaddr_in saddr;
|
|
|
|
memcpy(&saddr, addr, sizeof(saddr));
|
|
|
|
if (host_has_ipv6 && !getenv("LIBVIRT_TEST_IPV4ONLY")) {
|
|
if (saddr.sin_port == htons(5900) ||
|
|
(saddr.sin_family == AF_INET &&
|
|
saddr.sin_port == htons(5904)) ||
|
|
(saddr.sin_family == AF_INET6 &&
|
|
(saddr.sin_port == htons(5905) ||
|
|
saddr.sin_port == htons(5906)))) {
|
|
errno = EADDRINUSE;
|
|
return -1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
if (saddr.sin_port == htons(5900) ||
|
|
saddr.sin_port == htons(5904) ||
|
|
saddr.sin_port == htons(5905) ||
|
|
saddr.sin_port == htons(5906)) {
|
|
errno = EADDRINUSE;
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
#else /* defined(__linux__) && defined(RTLD_NEXT) */
|
|
/* Nothing to override on other platforms. */
|
|
#endif
|