2006-07-20 23:21:57 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-07-20 22:58:37 +00:00
|
|
|
#include <sys/types.h>
|
2006-07-20 23:21:57 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
2006-07-20 16:48:26 +00:00
|
|
|
#include <sys/socket.h>
|
2006-07-20 23:21:57 +00:00
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_NETINET_IN_H
|
2006-07-20 16:48:26 +00:00
|
|
|
#include <netinet/in.h>
|
2006-07-20 23:21:57 +00:00
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_NETINET_IN_SYSTM_H
|
2006-07-20 22:58:37 +00:00
|
|
|
#include <netinet/in_systm.h>
|
2006-07-20 23:21:57 +00:00
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_NETINET_IP_H
|
2006-07-20 16:48:26 +00:00
|
|
|
#include <netinet/ip.h>
|
2006-07-20 23:21:57 +00:00
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_ARPA_INET_H
|
2006-07-20 16:48:26 +00:00
|
|
|
#include <arpa/inet.h>
|
2006-07-20 23:21:57 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "../pulsecore/winsock.h"
|
2006-07-20 16:48:26 +00:00
|
|
|
|
|
|
|
|
#include <pulsecore/ipacl.h>
|
|
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
|
struct sockaddr_in sa;
|
|
|
|
|
struct sockaddr_in6 sa6;
|
|
|
|
|
int fd;
|
|
|
|
|
int r;
|
|
|
|
|
pa_ip_acl *acl;
|
|
|
|
|
|
2007-01-04 13:43:45 +00:00
|
|
|
fd = socket(PF_INET, SOCK_STREAM, 0);
|
2006-07-20 16:48:26 +00:00
|
|
|
assert(fd >= 0);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-07-20 16:48:26 +00:00
|
|
|
sa.sin_family = AF_INET;
|
|
|
|
|
sa.sin_port = htons(22);
|
|
|
|
|
sa.sin_addr.s_addr = inet_addr("127.0.0.1");
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-07-20 16:48:26 +00:00
|
|
|
r = connect(fd, (struct sockaddr*) &sa, sizeof(sa));
|
|
|
|
|
assert(r >= 0);
|
|
|
|
|
|
|
|
|
|
acl = pa_ip_acl_new("127.0.0.1");
|
|
|
|
|
assert(acl);
|
|
|
|
|
printf("result=%u (should be 1)\n", pa_ip_acl_check(acl, fd));
|
|
|
|
|
pa_ip_acl_free(acl);
|
|
|
|
|
|
|
|
|
|
acl = pa_ip_acl_new("127.0.0.2/0");
|
|
|
|
|
assert(acl);
|
|
|
|
|
printf("result=%u (should be 1)\n", pa_ip_acl_check(acl, fd));
|
|
|
|
|
pa_ip_acl_free(acl);
|
|
|
|
|
|
|
|
|
|
acl = pa_ip_acl_new("127.0.0.1/32");
|
|
|
|
|
assert(acl);
|
|
|
|
|
printf("result=%u (should be 1)\n", pa_ip_acl_check(acl, fd));
|
|
|
|
|
pa_ip_acl_free(acl);
|
|
|
|
|
|
|
|
|
|
acl = pa_ip_acl_new("127.0.0.1/7");
|
|
|
|
|
assert(acl);
|
|
|
|
|
printf("result=%u (should be 1)\n", pa_ip_acl_check(acl, fd));
|
|
|
|
|
pa_ip_acl_free(acl);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-07-20 16:48:26 +00:00
|
|
|
acl = pa_ip_acl_new("127.0.0.2");
|
|
|
|
|
assert(acl);
|
|
|
|
|
printf("result=%u (should be 0)\n", pa_ip_acl_check(acl, fd));
|
|
|
|
|
pa_ip_acl_free(acl);
|
|
|
|
|
|
|
|
|
|
acl = pa_ip_acl_new("127.0.0.0/8;0.0.0.0/32");
|
|
|
|
|
assert(acl);
|
|
|
|
|
printf("result=%u (should be 1)\n", pa_ip_acl_check(acl, fd));
|
|
|
|
|
pa_ip_acl_free(acl);
|
|
|
|
|
|
|
|
|
|
acl = pa_ip_acl_new("128.0.0.2/9");
|
|
|
|
|
assert(acl);
|
|
|
|
|
printf("result=%u (should be 0)\n", pa_ip_acl_check(acl, fd));
|
|
|
|
|
pa_ip_acl_free(acl);
|
|
|
|
|
|
|
|
|
|
acl = pa_ip_acl_new("::1/9");
|
|
|
|
|
assert(acl);
|
|
|
|
|
printf("result=%u (should be 0)\n", pa_ip_acl_check(acl, fd));
|
|
|
|
|
pa_ip_acl_free(acl);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-07-20 16:48:26 +00:00
|
|
|
close(fd);
|
|
|
|
|
|
|
|
|
|
fd = socket(PF_INET6, SOCK_STREAM, 0);
|
|
|
|
|
assert(fd >= 0);
|
|
|
|
|
|
|
|
|
|
memset(&sa6, 0, sizeof(sa6));
|
|
|
|
|
sa6.sin6_family = AF_INET6;
|
|
|
|
|
sa6.sin6_port = htons(22);
|
|
|
|
|
inet_pton(AF_INET6, "::1", &sa6.sin6_addr);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-07-20 16:48:26 +00:00
|
|
|
r = connect(fd, (struct sockaddr*) &sa6, sizeof(sa6));
|
|
|
|
|
assert(r >= 0);
|
|
|
|
|
|
|
|
|
|
acl = pa_ip_acl_new("::1");
|
|
|
|
|
assert(acl);
|
|
|
|
|
printf("result=%u (should be 1)\n", pa_ip_acl_check(acl, fd));
|
|
|
|
|
pa_ip_acl_free(acl);
|
|
|
|
|
|
|
|
|
|
acl = pa_ip_acl_new("::1/9");
|
|
|
|
|
assert(acl);
|
|
|
|
|
printf("result=%u (should be 1)\n", pa_ip_acl_check(acl, fd));
|
|
|
|
|
pa_ip_acl_free(acl);
|
|
|
|
|
|
|
|
|
|
acl = pa_ip_acl_new("::/0");
|
|
|
|
|
assert(acl);
|
|
|
|
|
printf("result=%u (should be 1)\n", pa_ip_acl_check(acl, fd));
|
|
|
|
|
pa_ip_acl_free(acl);
|
|
|
|
|
|
|
|
|
|
acl = pa_ip_acl_new("::2/128");
|
|
|
|
|
assert(acl);
|
|
|
|
|
printf("result=%u (should be 0)\n", pa_ip_acl_check(acl, fd));
|
|
|
|
|
pa_ip_acl_free(acl);
|
|
|
|
|
|
|
|
|
|
acl = pa_ip_acl_new("::2/127");
|
|
|
|
|
assert(acl);
|
|
|
|
|
printf("result=%u (should be 0)\n", pa_ip_acl_check(acl, fd));
|
|
|
|
|
pa_ip_acl_free(acl);
|
|
|
|
|
|
|
|
|
|
acl = pa_ip_acl_new("::2/126");
|
|
|
|
|
assert(acl);
|
|
|
|
|
printf("result=%u (should be 1)\n", pa_ip_acl_check(acl, fd));
|
|
|
|
|
pa_ip_acl_free(acl);
|
|
|
|
|
|
|
|
|
|
close(fd);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-07-20 16:48:26 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|