/* Copyright (c) 2005-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef TORRENT_IP_FILTER_HPP #define TORRENT_IP_FILTER_HPP #include "libtorrent/config.hpp" #include #include #include #include #include // for next #include #include "libtorrent/address.hpp" #include "libtorrent/assert.hpp" namespace libtorrent { // hidden inline bool operator<=(address const& lhs , address const& rhs) { return lhs < rhs || lhs == rhs; } template struct ip_range { Addr first; Addr last; std::uint32_t flags; friend bool operator==(ip_range const& lhs, ip_range const& rhs) { return lhs.first == rhs.first && lhs.last == rhs.last && lhs.flags == rhs.flags; } }; namespace detail { template Addr zero() { Addr zero; std::fill(zero.begin(), zero.end(), static_cast(0)); return zero; } template<> inline std::uint16_t zero() { return 0; } template Addr plus_one(Addr const& a) { Addr tmp(a); for (int i = int(tmp.size()) - 1; i >= 0; --i) { auto& t = tmp[std::size_t(i)]; if (t < (std::numeric_limits::max)()) { t += 1; break; } t = 0; } return tmp; } inline std::uint16_t plus_one(std::uint16_t val) { return val + 1; } template Addr minus_one(Addr const& a) { Addr tmp(a); for (int i = int(tmp.size()) - 1; i >= 0; --i) { auto& t = tmp[std::size_t(i)]; if (t > 0) { t -= 1; break; } t = (std::numeric_limits::max)(); } return tmp; } inline std::uint16_t minus_one(std::uint16_t val) { return val - 1; } template Addr max_addr() { Addr tmp; std::fill(tmp.begin(), tmp.end() , (std::numeric_limits::max)()); return tmp; } template<> inline std::uint16_t max_addr() { return (std::numeric_limits::max)(); } // this is the generic implementation of // a filter for a specific address type. // it works with IPv4 and IPv6 template class filter_impl { public: filter_impl() { // make the entire ip-range non-blocked m_access_list.insert(range(zero(), 0)); } void add_rule(Addr first, Addr last, std::uint32_t const flags) { TORRENT_ASSERT(!m_access_list.empty()); TORRENT_ASSERT(first < last || first == last); auto i = m_access_list.upper_bound(first); auto j = m_access_list.upper_bound(last); if (i != m_access_list.begin()) --i; TORRENT_ASSERT(j != m_access_list.begin()); TORRENT_ASSERT(j != i); std::uint32_t first_access = i->access; std::uint32_t last_access = std::prev(j)->access; if (i->start != first && first_access != flags) { i = m_access_list.insert(i, range(first, flags)); } else if (i != m_access_list.begin() && std::prev(i)->access == flags) { --i; first_access = i->access; } TORRENT_ASSERT(!m_access_list.empty()); TORRENT_ASSERT(i != m_access_list.end()); if (i != j) m_access_list.erase(std::next(i), j); if (i->start == first) { // This is an optimization over erasing and inserting a new element // here. // this const-cast is OK because we know that the new // start address will keep the set correctly ordered const_cast(i->start) = first; const_cast(i->access) = flags; } else if (first_access != flags) { m_access_list.insert(i, range(first, flags)); } if ((j != m_access_list.end() && minus_one(j->start) != last) || (j == m_access_list.end() && last != max_addr())) { TORRENT_ASSERT(j == m_access_list.end() || last < minus_one(j->start)); if (last_access != flags) j = m_access_list.insert(j, range(plus_one(last), last_access)); } if (j != m_access_list.end() && j->access == flags) m_access_list.erase(j); TORRENT_ASSERT(!m_access_list.empty()); } std::uint32_t access(Addr const& addr) const { TORRENT_ASSERT(!m_access_list.empty()); auto i = m_access_list.upper_bound(addr); if (i != m_access_list.begin()) --i; TORRENT_ASSERT(i != m_access_list.end()); TORRENT_ASSERT(i->start <= addr && (std::next(i) == m_access_list.end() || addr < std::next(i)->start)); return i->access; } template std::vector> export_filter() const { std::vector> ret; ret.reserve(m_access_list.size()); for (auto i = m_access_list.begin() , end(m_access_list.end()); i != end;) { ip_range r; r.first = ExternalAddressType(i->start); r.flags = i->access; ++i; if (i == end) r.last = ExternalAddressType(max_addr()); else r.last = ExternalAddressType(minus_one(i->start)); ret.push_back(r); } return ret; } private: struct range { range(Addr addr, std::uint32_t a = 0) : start(addr), access(a) {} // NOLINT bool operator<(range const& r) const { return start < r.start; } bool operator<(Addr const& a) const { return start < a; } Addr start; // the end of the range is implicit // and given by the next entry in the set std::uint32_t access; }; std::set m_access_list; }; } // The ``ip_filter`` class is a set of rules that uniquely categorizes all // ip addresses as allowed or disallowed. The default constructor creates // a single rule that allows all addresses (0.0.0.0 - 255.255.255.255 for // the IPv4 range, and the equivalent range covering all addresses for the // IPv6 range). // // A default constructed ip_filter does not filter any address. struct TORRENT_EXPORT ip_filter { // the flags defined for an IP range enum access_flags { // indicates that IPs in this range should not be connected // to nor accepted as incoming connections blocked = 1 }; // Adds a rule to the filter. ``first`` and ``last`` defines a range of // ip addresses that will be marked with the given flags. The ``flags`` // can currently be 0, which means allowed, or ``ip_filter::blocked``, which // means disallowed. // // precondition: // ``first.is_v4() == last.is_v4() && first.is_v6() == last.is_v6()`` // // postcondition: // ``access(x) == flags`` for every ``x`` in the range [``first``, ``last``] // // This means that in a case of overlapping ranges, the last one applied takes // precedence. void add_rule(address const& first, address const& last, std::uint32_t flags); // Returns the access permissions for the given address (``addr``). The permission // can currently be 0 or ``ip_filter::blocked``. The complexity of this operation // is O(``log`` n), where n is the minimum number of non-overlapping ranges to describe // the current filter. std::uint32_t access(address const& addr) const; using filter_tuple_t = std::tuple> , std::vector>>; // This function will return the current state of the filter in the minimum number of // ranges possible. They are sorted from ranges in low addresses to high addresses. Each // entry in the returned vector is a range with the access control specified in its // ``flags`` field. // // The return value is a tuple containing two range-lists. One for IPv4 addresses // and one for IPv6 addresses. filter_tuple_t export_filter() const; // void print() const; private: detail::filter_impl m_filter4; detail::filter_impl m_filter6; }; // the port filter maps non-overlapping port ranges to flags. This // is primarily used to indicate whether a range of ports should // be connected to or not. The default is to have the full port // range (0-65535) set to flag 0. class TORRENT_EXPORT port_filter { public: // the defined flags for a port range enum access_flags { // this flag indicates that destination ports in the // range should not be connected to blocked = 1 }; // set the flags for the specified port range (``first``, ``last``) to // ``flags`` overwriting any existing rule for those ports. The range // is inclusive, i.e. the port ``last`` also has the flag set on it. void add_rule(std::uint16_t first, std::uint16_t last, std::uint32_t flags); // test the specified port (``port``) for whether it is blocked // or not. The returned value is the flags set for this port. // see access_flags. std::uint32_t access(std::uint16_t port) const; private: detail::filter_impl m_filter; }; } #endif