123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- /*
- * ZeroTier One - Global Peer to Peer Ethernet
- * Copyright (C) 2011-2014 ZeroTier Networks LLC
- *
- * 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 3 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 <http://www.gnu.org/licenses/>.
- *
- * --
- *
- * ZeroTier may be used and distributed under the terms of the GPLv3, which
- * are available at: http://www.gnu.org/licenses/gpl-3.0.html
- *
- * If you would like to embed ZeroTier into a commercial application or
- * redistribute it in a modified binary form, please contact ZeroTier Networks
- * LLC. Start here: http://www.zerotier.com/
- */
- #ifndef ZT_PATH_HPP
- #define ZT_PATH_HPP
- #include <stdint.h>
- #include <stdexcept>
- #include <string>
- #include "Constants.hpp"
- #include "InetAddress.hpp"
- #include "Utils.hpp"
- #include "Buffer.hpp"
- #define ZT_PATH_SERIALIZATION_VERSION 1
- namespace ZeroTier {
- /**
- * WAN address and protocol for reaching a peer
- */
- class Path
- {
- public:
- Path() :
- _lastSend(0),
- _lastReceived(0),
- _lastFirewallOpener(0),
- _lastPing(0),
- _addr(),
- _tcp(false),
- _fixed(false) {}
- Path(const InetAddress &addr,bool tcp,bool fixed = false) :
- _lastSend(0),
- _lastReceived(0),
- _lastFirewallOpener(0),
- _lastPing(0),
- _addr(addr),
- _tcp(tcp),
- _fixed(fixed) {}
- inline const InetAddress &address() const throw() { return _addr; }
- inline bool tcp() const throw() { return _tcp; }
- inline uint64_t lastSend() const throw() { return _lastSend; }
- inline uint64_t lastReceived() const throw() { return _lastReceived; }
- inline uint64_t lastFirewallOpener() const throw() { return _lastFirewallOpener; }
- inline uint64_t lastPing() const throw() { return _lastPing; }
- inline bool fixed() const throw() { return _fixed; }
- inline void setFixed(bool f) throw() { _fixed = f; }
- inline void sent(uint64_t t) throw() { _lastSend = t; }
- inline void received(uint64_t t) throw() { _lastReceived = t; }
- inline void firewallOpenerSent(uint64_t t) throw() { _lastFirewallOpener = t; }
- inline void pinged(uint64_t t) throw() { _lastPing = t; }
- inline bool active(uint64_t now) const
- throw()
- {
- return ((_addr)&&((_fixed)||((now - _lastReceived) < ZT_PEER_PATH_ACTIVITY_TIMEOUT)));
- }
- /**
- * @return True if it appears that a ping has gone unanswered
- */
- inline bool pingUnanswered(uint64_t now) const
- throw()
- {
- uint64_t lp = _lastPing;
- uint64_t lr = _lastReceived;
- if (lp)
- return ((lr < lp)&&((lp - lr) > ZT_PING_UNANSWERED_AFTER));
- return false;
- }
- /**
- * @return Human-readable address and other information about this path, some computed as of current time
- */
- inline std::string toString() const
- {
- uint64_t now = Utils::now();
- char lsago[32],lrago[32],lfoago[32],lpago[32];
- Utils::snprintf(lsago,sizeof(lsago),"%lld",(long long)((_lastSend != 0) ? (now - _lastSend) : -1));
- Utils::snprintf(lrago,sizeof(lrago),"%lld",(long long)((_lastReceived != 0) ? (now - _lastReceived) : -1));
- Utils::snprintf(lfoago,sizeof(lfoago),"%lld",(long long)((_lastFirewallOpener != 0) ? (now - _lastFirewallOpener) : -1));
- Utils::snprintf(lpago,sizeof(lfoago),"%lld",(long long)((_lastPing != 0) ? (now - _lastPing) : -1));
- return (_addr.toString() + "[" + (_tcp ? "tcp" : "udp") + ";" + lsago + ";" + lrago + ";" + lpago + ";" + lfoago + ";" + (active(now) ? "active" : "inactive") + ";" + (_fixed ? "fixed" : "learned") + "]");
- }
- inline bool operator==(const Path &p) const throw() { return ((_addr == p._addr)&&(_tcp == p._tcp)); }
- inline bool operator!=(const Path &p) const throw() { return ((_addr != p._addr)||(_tcp != p._tcp)); }
- inline bool operator<(const Path &p) const
- throw()
- {
- if (_addr == p._addr) {
- if (!_tcp) // UDP < TCP
- return p._tcp;
- return false;
- } else return (_addr < p._addr);
- }
- inline bool operator>(const Path &p) const throw() { return (p < *this); }
- inline bool operator<=(const Path &p) const throw() { return !(p < *this); }
- inline bool operator>=(const Path &p) const throw() { return !(*this < p); }
- template<unsigned int C>
- inline void serialize(Buffer<C> &b) const
- {
- b.append((unsigned char)ZT_PATH_SERIALIZATION_VERSION);
- b.append(_lastSend);
- b.append(_lastReceived);
- b.append(_lastFirewallOpener);
- b.append(_lastPing);
- b.append((unsigned char)_addr.type());
- switch(_addr.type()) {
- case InetAddress::TYPE_NULL:
- break;
- case InetAddress::TYPE_IPV4:
- b.append(_addr.rawIpData(),4);
- b.append((uint16_t)_addr.port());
- break;
- case InetAddress::TYPE_IPV6:
- b.append(_addr.rawIpData(),16);
- b.append((uint16_t)_addr.port());
- break;
- }
- b.append(_tcp ? (unsigned char)1 : (unsigned char)0);
- b.append(_fixed ? (unsigned char)1 : (unsigned char)0);
- }
- template<unsigned int C>
- inline unsigned int deserialize(const Buffer<C> &b,unsigned int startAt = 0)
- {
- unsigned int p = startAt;
- if (b[p++] != ZT_PATH_SERIALIZATION_VERSION)
- throw std::invalid_argument("Path: deserialize(): version mismatch");
- _lastSend = b.template at<uint64_t>(p); p += sizeof(uint64_t);
- _lastReceived = b.template at<uint64_t>(p); p += sizeof(uint64_t);
- _lastFirewallOpener = b.template at<uint64_t>(p); p += sizeof(uint64_t);
- _lastPing = b.template at<uint64_t>(p); p += sizeof(uint64_t);
- switch((InetAddress::AddressType)b[p++]) {
- case InetAddress::TYPE_IPV4:
- _addr.set(b.field(p,4),4,b.template at<uint16_t>(p + 4));
- p += 4 + sizeof(uint16_t);
- break;
- case InetAddress::TYPE_IPV6:
- _addr.set(b.field(p,16),16,b.template at<uint16_t>(p + 16));
- p += 16 + sizeof(uint16_t);
- break;
- default:
- _addr.zero();
- break;
- }
- _tcp = (b[p++] != 0);
- _fixed = (b[p++] != 0);
- return (p - startAt);
- }
- private:
- volatile uint64_t _lastSend;
- volatile uint64_t _lastReceived;
- volatile uint64_t _lastFirewallOpener;
- volatile uint64_t _lastPing;
- InetAddress _addr;
- bool _tcp;
- bool _fixed;
- };
- } // namespace ZeroTier
- #endif
|