/* * Copyright (C) 2015 Red Hat, Inc. * * 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 2 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 . */ #include #include #include #include #include #include #include #include #include #include "../src/main.h" #include "../src/main-ban.h" #include "../src/ip-util.h" #include "../src/main-ban.c" /* Test the IP banning functionality */ static unsigned int check_if_banned_str(main_server_st *s, const char *ip) { struct sockaddr_storage addr; int ret; if (strchr(ip, ':') != 0) { ret = inet_pton(AF_INET6, ip, SA_IN6_P(&addr)); addr.ss_family = AF_INET6; } else { ret = inet_pton(AF_INET, ip, SA_IN_P(&addr)); addr.ss_family = AF_INET; } if (ret != 1) { fprintf(stderr, "cannot convert IP: %s\n", ip); exit(1); } return check_if_banned(s, &addr, addr.ss_family == AF_INET ? sizeof(struct sockaddr_in) : sizeof(struct sockaddr_in6)); } int main(void) { main_server_st *s = talloc(NULL, struct main_server_st); vhost_cfg_st *vhost; if (s == NULL) exit(1); memset(s, 0, sizeof(*s)); s->vconfig = talloc_zero(s, struct list_head); if (s->vconfig == NULL) exit(1); list_head_init(s->vconfig); vhost = talloc_zero(s, struct vhost_cfg_st); if (vhost == NULL) exit(1); vhost->config = talloc_zero(vhost, ReloadableConfig); if (vhost->config == NULL) exit(1); /* talloc_zero suffices for test-only field access; no pack/unpack needed */ vhost->config->network = talloc_zero(vhost->config, NetworkConfig); if (vhost->config->network == NULL) exit(1); list_add(s->vconfig, &vhost->list); vhost->config->max_ban_score = 20; vhost->config->ban_time = 30; main_ban_db_init(s); /* check IPv4 */ add_str_ip_to_ban_list(s, "192.168.1.1", 5); add_str_ip_to_ban_list(s, "192.168.1.1", 10); add_str_ip_to_ban_list(s, "192.168.1.1", 5); add_str_ip_to_ban_list(s, "192.168.2.1", 5); add_str_ip_to_ban_list(s, "192.168.3.1", 40); cleanup_banned_entries(s); if (check_if_banned_str(s, "192.168.1.1") == 0) { fprintf(stderr, "error in %d\n", __LINE__); exit(1); } if (check_if_banned_str(s, "192.168.2.1") != 0) { fprintf(stderr, "error in %d\n", __LINE__); exit(1); } if (check_if_banned_str(s, "192.168.3.1") == 0) { fprintf(stderr, "error in %d\n", __LINE__); exit(1); } /* check IPv6 */ /* a single /64 */ add_str_ip_to_ban_list(s, "fc8e:899a:0624:5a89:1a45:63d8:1c92:0bc1", 5); add_str_ip_to_ban_list(s, "fc8e:899a:0624:5a89:1a45:63d9:1c92:0bc1", 10); add_str_ip_to_ban_list(s, "fc8e:899a:0624:5a89:1a45:63d8:1c93:0bc1", 5); add_str_ip_to_ban_list(s, "fdd9:1ce6:1bee:bdea:5d8c:0840:8666:5942", 5); add_str_ip_to_ban_list(s, "fdc0:c81f:22ab:23a2:4479:f107:1855:bf50", 40); /* check /64 */ if (check_if_banned_str(s, "fc8e:899a:0624:5a89:1a45:63d8:1c93:0bc1") == 0) { fprintf(stderr, "error in %d\n", __LINE__); exit(1); } if (check_if_banned_str(s, "fc8e:899a:0624:5a89:1a46:63d9:1c93:0bc1") == 0) { fprintf(stderr, "error in %d\n", __LINE__); exit(1); } /* check individual */ if (check_if_banned_str(s, "fdd9:1ce6:1bee:bdea:5d8c:0840:8666:5942") != 0) { fprintf(stderr, "error in %d\n", __LINE__); exit(1); } if (check_if_banned_str(s, "fdc0:c81f:22ab:23a2:4479:f107:1855:bf50") == 0) { fprintf(stderr, "error in %d\n", __LINE__); exit(1); } /* check expiration of entries */ sleep(GETRCONFIG(s)->ban_time + 1); if (check_if_banned_str(s, "192.168.1.1") != 0) { fprintf(stderr, "error in %d\n", __LINE__); exit(1); } if (check_if_banned_str(s, "192.168.2.1") != 0) { fprintf(stderr, "error in %d\n", __LINE__); exit(1); } if (check_if_banned_str(s, "192.168.3.1") != 0) { fprintf(stderr, "error in %d\n", __LINE__); exit(1); } if (check_if_banned_str(s, "fdc0:c81f:22ab:23a2:4479:f107:1855:bf50") != 0) { fprintf(stderr, "error in %d\n", __LINE__); exit(1); } /* check cleanup */ sleep(GETRCONFIG(s)->ban_time + 1); cleanup_banned_entries(s); if (main_ban_db_elems(s) != 0) { fprintf(stderr, "error in %d: have %d entries\n", __LINE__, main_ban_db_elems(s)); exit(1); } /* Regression test: IPv6 local-address mishandling. * * if_address_st previously used struct sockaddr (16 bytes) for both * if_addr and if_netmask. struct sockaddr_in6 is 28 bytes, so only * the first 16 bytes were stored by if_address_init(). * test_local_ipv6() then cast those fields back to struct sockaddr_in6 * * and read all four 32-bit words, producing an out-of-bounds read for * words [2] and [3] of the netmask. The fix uses struct sockaddr_storage * and copies sizeof(struct sockaddr_in6) bytes for AF_INET6 entries. */ if (if_address_init(s)) { /* ::2 differs from ::1 only in the last bit; on a system * with ::1/128 (loopback) it must NOT be treated as local. */ add_str_ip_to_ban_list(s, "::2", 40); if (check_if_banned_str(s, "::2") == 0) { fprintf(stderr, "error in %d: IPv6 address mishandling (::2 treated as local)\n", __LINE__); exit(1); } if_address_cleanup(s); } main_ban_db_deinit(s); talloc_free(s); return 0; }