⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ip_filter.hpp

📁 LINUX下
💻 HPP
字号:
/*Copyright (c) 2005, Arvid NorbergAll rights reserved.Redistribution and use in source and binary forms, with or withoutmodification, are permitted provided that the following conditionsare 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, THEIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BELIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THEPOSSIBILITY OF SUCH DAMAGE.*/#ifndef TORRENT_IP_FILTER_HPP#define TORRENT_IP_FILTER_HPP#include <set>#include <iostream>#ifdef _MSC_VER#pragma warning(push, 1)#endif#include <boost/limits.hpp>#include <boost/utility.hpp>#include <boost/tuple/tuple.hpp>#ifdef _MSC_VER#pragma warning(pop)#endif#include "libtorrent/config.hpp"#include "libtorrent/socket.hpp"#include "libtorrent/assert.hpp"namespace libtorrent{inline bool operator<=(address const& lhs	, address const& rhs){	return lhs < rhs || lhs == rhs;}template <class Addr>struct ip_range{	Addr first;	Addr last;	int flags;};namespace detail{	template<class Addr>	Addr zero()	{		Addr zero;		std::fill(zero.begin(), zero.end(), 0);		return zero;	}	template<>	inline boost::uint16_t zero<boost::uint16_t>() { return 0; }	template<class Addr>	Addr plus_one(Addr const& a)	{		Addr tmp(a);		typedef typename Addr::reverse_iterator iter;		for (iter i = tmp.rbegin()			, end(tmp.rend()); i != end; ++i)		{			if (*i < (std::numeric_limits<typename iter::value_type>::max)())			{				*i += 1;				break;			}			*i = 0;		}		return tmp;	}	inline boost::uint16_t plus_one(boost::uint16_t val) { return val + 1; }		template<class Addr>	Addr minus_one(Addr const& a)	{		Addr tmp(a);		typedef typename Addr::reverse_iterator iter;		for (iter i = tmp.rbegin()			, end(tmp.rend()); i != end; ++i)		{			if (*i > 0)			{				*i -= 1;				break;			}			*i = (std::numeric_limits<typename iter::value_type>::max)();		}		return tmp;	}	inline boost::uint16_t minus_one(boost::uint16_t val) { return val - 1; }	template<class Addr>	Addr max_addr()	{		Addr tmp;		std::fill(tmp.begin(), tmp.end()			, (std::numeric_limits<typename Addr::value_type>::max)());		return Addr(tmp);	}	template<>	inline boost::uint16_t max_addr<boost::uint16_t>()	{ return (std::numeric_limits<boost::uint16_t>::max)(); }	// this is the generic implementation of	// a filter for a specific address type.	// it works with IPv4 and IPv6	template<class Addr>	class filter_impl	{	public:		filter_impl()		{			// make the entire ip-range non-blocked			m_access_list.insert(range(zero<Addr>(), 0));		}		void add_rule(Addr first, Addr last, int flags)		{			using boost::next;			using boost::prior;			TORRENT_ASSERT(!m_access_list.empty());			TORRENT_ASSERT(first < last || first == last);						typename range_t::iterator i = m_access_list.upper_bound(first);			typename range_t::iterator 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);						int first_access = i->access;			int last_access = prior(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() && prior(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(next(i), j);			if (i->start == first)			{				// we can do this const-cast because we know that the new				// start address will keep the set correctly ordered				const_cast<Addr&>(i->start) = first;				const_cast<int&>(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<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());		}		int access(Addr const& addr) const		{			TORRENT_ASSERT(!m_access_list.empty());			typename range_t::const_iterator 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 && (boost::next(i) == m_access_list.end()				|| addr < boost::next(i)->start));			return i->access;		}		template <class ExternalAddressType>		std::vector<ip_range<ExternalAddressType> > export_filter() const		{			std::vector<ip_range<ExternalAddressType> > ret;			ret.reserve(m_access_list.size());			for (typename range_t::const_iterator i = m_access_list.begin()				, end(m_access_list.end()); i != end;)			{				ip_range<ExternalAddressType> r;				r.first = ExternalAddressType(i->start);				r.flags = i->access;				++i;				if (i == end)					r.last = ExternalAddressType(max_addr<Addr>());				else					r.last = ExternalAddressType(minus_one(i->start));							ret.push_back(r);			}			return ret;		}	private:			struct range		{			range(Addr addr, int access = 0): start(addr), access(access) {}			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			int access;		};		typedef std::set<range> range_t;		range_t m_access_list;		};}class TORRENT_EXPORT ip_filter{public:	enum access_flags	{		blocked = 1	};	// both addresses MUST be of the same type (i.e. both must	// be either IPv4 or both must be IPv6)	void add_rule(address first, address last, int flags);	int access(address const& addr) const;	typedef boost::tuple<std::vector<ip_range<address_v4> >		, std::vector<ip_range<address_v6> > > filter_tuple_t;		filter_tuple_t export_filter() const;//	void print() const;	private:	detail::filter_impl<address_v4::bytes_type> m_filter4;	detail::filter_impl<address_v6::bytes_type> m_filter6;};class TORRENT_EXPORT port_filter{public:	enum access_flags	{		blocked = 1	};	void add_rule(boost::uint16_t first, boost::uint16_t last, int flags);	int access(boost::uint16_t port) const;private:	detail::filter_impl<boost::uint16_t> m_filter;};}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -