2013-01-09 15:11:50 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 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/>.
|
|
|
|
*
|
|
|
|
* Author: Daniel P. Berrange <berrange@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef MOCK_HELPER
|
|
|
|
# include "internal.h"
|
|
|
|
# include <sys/socket.h>
|
|
|
|
# include <errno.h>
|
|
|
|
# include <arpa/inet.h>
|
2013-01-17 23:29:38 +00:00
|
|
|
# include <netinet/in.h>
|
2013-01-09 15:11:50 +00:00
|
|
|
|
|
|
|
int bind(int sockfd ATTRIBUTE_UNUSED,
|
|
|
|
const struct sockaddr *addr,
|
|
|
|
socklen_t addrlen ATTRIBUTE_UNUSED)
|
|
|
|
{
|
2013-04-03 14:55:37 +00:00
|
|
|
struct sockaddr_in saddr;
|
2013-01-09 15:11:50 +00:00
|
|
|
|
2013-04-03 14:55:37 +00:00
|
|
|
memcpy(&saddr, addr, sizeof(saddr));
|
|
|
|
|
|
|
|
if (saddr.sin_port == htons(5900) ||
|
|
|
|
saddr.sin_port == htons(5904) ||
|
|
|
|
saddr.sin_port == htons(5905) ||
|
|
|
|
saddr.sin_port == htons(5906)) {
|
2013-01-09 15:11:50 +00:00
|
|
|
errno = EADDRINUSE;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
# include <stdlib.h>
|
|
|
|
|
|
|
|
# include "testutils.h"
|
|
|
|
# include "virutil.h"
|
|
|
|
# include "virerror.h"
|
|
|
|
# include "viralloc.h"
|
2013-05-09 18:59:04 +00:00
|
|
|
# include "virfile.h"
|
2013-01-09 15:11:50 +00:00
|
|
|
# include "virlog.h"
|
|
|
|
# include "virportallocator.h"
|
2013-04-03 10:36:23 +00:00
|
|
|
# include "virstring.h"
|
2013-01-09 15:11:50 +00:00
|
|
|
|
|
|
|
# define VIR_FROM_THIS VIR_FROM_RPC
|
|
|
|
|
|
|
|
|
|
|
|
static int testAllocAll(const void *args ATTRIBUTE_UNUSED)
|
|
|
|
{
|
2013-10-31 11:46:28 +00:00
|
|
|
virPortAllocatorPtr alloc = virPortAllocatorNew("test", 5900, 5909);
|
2013-01-09 15:11:50 +00:00
|
|
|
int ret = -1;
|
|
|
|
unsigned short p1, p2, p3, p4, p5, p6, p7;
|
|
|
|
|
2013-09-25 14:35:44 +00:00
|
|
|
if (!alloc)
|
|
|
|
return -1;
|
|
|
|
|
2013-01-09 15:11:50 +00:00
|
|
|
if (virPortAllocatorAcquire(alloc, &p1) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (p1 != 5901) {
|
|
|
|
if (virTestGetDebug())
|
|
|
|
fprintf(stderr, "Expected 5901, got %d", p1);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virPortAllocatorAcquire(alloc, &p2) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (p2 != 5902) {
|
|
|
|
if (virTestGetDebug())
|
|
|
|
fprintf(stderr, "Expected 5902, got %d", p2);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virPortAllocatorAcquire(alloc, &p3) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (p3 != 5903) {
|
|
|
|
if (virTestGetDebug())
|
|
|
|
fprintf(stderr, "Expected 5903, got %d", p3);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virPortAllocatorAcquire(alloc, &p4) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (p4 != 5907) {
|
|
|
|
if (virTestGetDebug())
|
|
|
|
fprintf(stderr, "Expected 5907, got %d", p4);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virPortAllocatorAcquire(alloc, &p5) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (p5 != 5908) {
|
|
|
|
if (virTestGetDebug())
|
|
|
|
fprintf(stderr, "Expected 5908, got %d", p5);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virPortAllocatorAcquire(alloc, &p6) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (p6 != 5909) {
|
|
|
|
if (virTestGetDebug())
|
|
|
|
fprintf(stderr, "Expected 5909, got %d", p6);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2013-10-31 11:49:04 +00:00
|
|
|
if (virPortAllocatorAcquire(alloc, &p7) == 0) {
|
2013-01-09 15:11:50 +00:00
|
|
|
if (virTestGetDebug())
|
2013-10-31 11:49:04 +00:00
|
|
|
fprintf(stderr, "Expected error, got %d", p7);
|
2013-01-09 15:11:50 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
cleanup:
|
|
|
|
virObjectUnref(alloc);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int testAllocReuse(const void *args ATTRIBUTE_UNUSED)
|
|
|
|
{
|
2013-10-31 11:46:28 +00:00
|
|
|
virPortAllocatorPtr alloc = virPortAllocatorNew("test", 5900, 5910);
|
2013-01-09 15:11:50 +00:00
|
|
|
int ret = -1;
|
|
|
|
unsigned short p1, p2, p3, p4;
|
|
|
|
|
2013-09-25 14:35:44 +00:00
|
|
|
if (!alloc)
|
|
|
|
return -1;
|
|
|
|
|
2013-01-09 15:11:50 +00:00
|
|
|
if (virPortAllocatorAcquire(alloc, &p1) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (p1 != 5901) {
|
|
|
|
if (virTestGetDebug())
|
|
|
|
fprintf(stderr, "Expected 5901, got %d", p1);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virPortAllocatorAcquire(alloc, &p2) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (p2 != 5902) {
|
|
|
|
if (virTestGetDebug())
|
|
|
|
fprintf(stderr, "Expected 5902, got %d", p2);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virPortAllocatorAcquire(alloc, &p3) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (p3 != 5903) {
|
|
|
|
if (virTestGetDebug())
|
|
|
|
fprintf(stderr, "Expected 5903, got %d", p3);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (virPortAllocatorRelease(alloc, p2) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (virPortAllocatorAcquire(alloc, &p4) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (p4 != 5902) {
|
|
|
|
if (virTestGetDebug())
|
|
|
|
fprintf(stderr, "Expected 5902, got %d", p4);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
cleanup:
|
|
|
|
virObjectUnref(alloc);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
mymain(void)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
2013-09-20 18:13:35 +00:00
|
|
|
if (virtTestRun("Test alloc all", testAllocAll, NULL) < 0)
|
2013-01-09 15:11:50 +00:00
|
|
|
ret = -1;
|
|
|
|
|
2013-09-20 18:13:35 +00:00
|
|
|
if (virtTestRun("Test alloc reuse", testAllocReuse, NULL) < 0)
|
2013-01-09 15:11:50 +00:00
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
return ret==0 ? EXIT_SUCCESS : EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
VIRT_TEST_MAIN_PRELOAD(mymain, abs_builddir "/.libs/libvirportallocatormock.so")
|
|
|
|
#endif
|