/************************************************************************* * * Copyright (C) 2018-2023 Ruilin Peng (Nick) . * * smartdns 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. * * smartdns 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 "client.h" #include "dns.h" #include "include/utils.h" #include "server.h" #include "gtest/gtest.h" class IPRule : public ::testing::Test { protected: virtual void SetUp() {} virtual void TearDown() {} }; TEST_F(IPRule, white_list) { smartdns::MockServer server_upstream; smartdns::MockServer server_upstream2; smartdns::Server server; server_upstream.Start("udp://0.0.0.0:61053", [](struct smartdns::ServerRequestContext *request) { if (request->qtype != DNS_T_A) { return smartdns::SERVER_REQUEST_SOA; } smartdns::MockServer::AddIP(request, request->domain.c_str(), "1.2.3.4", 611); return smartdns::SERVER_REQUEST_OK; }); server_upstream2.Start("udp://0.0.0.0:62053", [](struct smartdns::ServerRequestContext *request) { if (request->qtype != DNS_T_A) { return smartdns::SERVER_REQUEST_SOA; } smartdns::MockServer::AddIP(request, request->domain.c_str(), "4.5.6.7", 611); return smartdns::SERVER_REQUEST_OK; }); /* this ip will be discard, but is reachable */ server.MockPing(PING_TYPE_ICMP, "1.2.3.4", 60, 10); server.Start(R"""(bind [::]:60053 server udp://127.0.0.1:61053 -whitelist-ip server udp://127.0.0.1:62053 -whitelist-ip whitelist-ip 4.5.6.7/24 log-num 0 log-console yes log-level debug cache-persist no)"""); smartdns::Client client; ASSERT_TRUE(client.Query("a.com", 60053)); std::cout << client.GetResult() << std::endl; ASSERT_EQ(client.GetAnswerNum(), 1); EXPECT_EQ(client.GetStatus(), "NOERROR"); EXPECT_EQ(client.GetAnswer()[0].GetName(), "a.com"); EXPECT_EQ(client.GetAnswer()[0].GetData(), "4.5.6.7"); } TEST_F(IPRule, black_list) { smartdns::MockServer server_upstream; smartdns::MockServer server_upstream2; smartdns::Server server; server_upstream.Start("udp://0.0.0.0:61053", [](struct smartdns::ServerRequestContext *request) { if (request->qtype != DNS_T_A) { return smartdns::SERVER_REQUEST_SOA; } smartdns::MockServer::AddIP(request, request->domain.c_str(), "1.2.3.4", 611); return smartdns::SERVER_REQUEST_OK; }); server_upstream2.Start("udp://0.0.0.0:62053", [](struct smartdns::ServerRequestContext *request) { if (request->qtype != DNS_T_A) { return smartdns::SERVER_REQUEST_SOA; } smartdns::MockServer::AddIP(request, request->domain.c_str(), "4.5.6.7", 611); return smartdns::SERVER_REQUEST_OK; }); /* this ip will be discard, but is reachable */ server.MockPing(PING_TYPE_ICMP, "4.5.6.7", 60, 10); server.Start(R"""(bind [::]:60053 server udp://127.0.0.1:61053 -blacklist-ip server udp://127.0.0.1:62053 -blacklist-ip blacklist-ip 4.5.6.7/24 log-num 0 log-console yes log-level debug cache-persist no)"""); smartdns::Client client; ASSERT_TRUE(client.Query("a.com", 60053)); std::cout << client.GetResult() << std::endl; ASSERT_EQ(client.GetAnswerNum(), 1); EXPECT_EQ(client.GetStatus(), "NOERROR"); EXPECT_EQ(client.GetAnswer()[0].GetName(), "a.com"); EXPECT_EQ(client.GetAnswer()[0].GetData(), "1.2.3.4"); } TEST_F(IPRule, ignore_ip) { smartdns::MockServer server_upstream; smartdns::MockServer server_upstream2; smartdns::Server server; server_upstream.Start("udp://0.0.0.0:61053", [](struct smartdns::ServerRequestContext *request) { if (request->qtype != DNS_T_A) { return smartdns::SERVER_REQUEST_SOA; } smartdns::MockServer::AddIP(request, request->domain.c_str(), "1.2.3.4", 611); smartdns::MockServer::AddIP(request, request->domain.c_str(), "4.5.6.7", 611); smartdns::MockServer::AddIP(request, request->domain.c_str(), "7.8.9.10", 611); return smartdns::SERVER_REQUEST_OK; }); /* this ip will be discard, but is reachable */ server.MockPing(PING_TYPE_ICMP, "1.2.3.4", 60, 10); server.MockPing(PING_TYPE_ICMP, "4.5.6.7", 60, 90); server.MockPing(PING_TYPE_ICMP, "7.8.9.10", 60, 40); server.Start(R"""(bind [::]:60053 server udp://127.0.0.1:61053 -blacklist-ip ignore-ip 1.2.3.0/24 log-num 0 log-console yes log-level debug cache-persist no)"""); smartdns::Client client; ASSERT_TRUE(client.Query("a.com", 60053)); std::cout << client.GetResult() << std::endl; ASSERT_EQ(client.GetAnswerNum(), 1); EXPECT_EQ(client.GetStatus(), "NOERROR"); EXPECT_EQ(client.GetAnswer()[0].GetName(), "a.com"); EXPECT_EQ(client.GetAnswer()[0].GetData(), "7.8.9.10"); }