2018-02-04 03:22:01 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
2018-01-07 22:48:03 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_NET_IPPORT_H
|
|
|
|
|
|
|
|
namespace ircd::net
|
|
|
|
{
|
|
|
|
struct ipport;
|
|
|
|
|
|
|
|
const uint16_t &port(const ipport &);
|
|
|
|
uint16_t &port(ipport &);
|
|
|
|
|
|
|
|
bool is_v6(const ipport &);
|
|
|
|
bool is_v4(const ipport &);
|
|
|
|
|
|
|
|
const uint128_t &host6(const ipport &);
|
|
|
|
const uint32_t &host4(const ipport &);
|
|
|
|
uint128_t &host6(ipport &);
|
|
|
|
uint32_t &host4(ipport &);
|
|
|
|
|
|
|
|
string_view string(const mutable_buffer &out, const ipport &);
|
2019-02-16 22:25:18 +01:00
|
|
|
std::ostream &operator<<(std::ostream &, const ipport &);
|
2018-01-07 22:48:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace ircd
|
|
|
|
{
|
|
|
|
using net::ipport;
|
|
|
|
using net::host;
|
|
|
|
using net::port;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// This lightweight structure holds an IP address and port in native byte
|
|
|
|
/// form. It is usually returned from the result of a resolution but may also
|
|
|
|
/// serve as input to a reverse resolution. Either way, this allocation-free
|
|
|
|
/// structure is useful for storing raw IP/port data, even in large sets.
|
|
|
|
///
|
|
|
|
/// The TYPE field is only a boolean for now indicating IPv4 or IPv6; the
|
|
|
|
/// official way to query this is to use net::is_v6(ipport) etc and not
|
|
|
|
/// std::get the type directly.
|
|
|
|
///
|
|
|
|
struct ircd::net::ipport
|
2019-03-01 00:22:21 +01:00
|
|
|
:std::tuple<ipaddr, uint16_t, bool>
|
2018-01-07 22:48:03 +01:00
|
|
|
{
|
|
|
|
enum { IP, PORT, TYPE };
|
|
|
|
|
2018-09-30 01:46:02 +02:00
|
|
|
struct cmp;
|
|
|
|
struct cmp_ip;
|
|
|
|
struct cmp_port;
|
|
|
|
|
2018-01-07 22:48:03 +01:00
|
|
|
explicit operator bool() const;
|
|
|
|
bool operator!() const { return !static_cast<bool>(*this); }
|
|
|
|
|
|
|
|
ipport(const uint32_t &ip, const uint16_t &port);
|
|
|
|
ipport(const uint128_t &ip, const uint16_t &port);
|
2018-02-03 20:06:16 +01:00
|
|
|
ipport(const rfc1035::record::A &, const uint16_t &port);
|
|
|
|
ipport(const rfc1035::record::AAAA &, const uint16_t &port);
|
2018-01-07 22:48:03 +01:00
|
|
|
ipport(const boost::asio::ip::address &, const uint16_t &port);
|
2018-01-08 02:44:49 +01:00
|
|
|
ipport(const string_view &ip, const uint16_t &port);
|
|
|
|
ipport(const string_view &ip, const string_view &port);
|
2018-01-07 22:48:03 +01:00
|
|
|
ipport();
|
|
|
|
};
|
|
|
|
|
2018-09-30 01:46:02 +02:00
|
|
|
struct ircd::net::ipport::cmp_port
|
|
|
|
{
|
|
|
|
bool operator()(const ipport &a, const ipport &b) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ircd::net::ipport::cmp_ip
|
|
|
|
{
|
|
|
|
bool operator()(const ipport &a, const ipport &b) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ircd::net::ipport::cmp
|
|
|
|
:std::less<ipport>
|
|
|
|
{
|
|
|
|
using std::less<ipport>::less;
|
|
|
|
};
|
|
|
|
|
2018-01-07 22:48:03 +01:00
|
|
|
inline
|
|
|
|
ircd::net::ipport::ipport()
|
|
|
|
{
|
|
|
|
std::get<PORT>(*this) = 0;
|
|
|
|
std::get<TYPE>(*this) = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline ircd::net::ipport::operator
|
|
|
|
bool()
|
|
|
|
const
|
|
|
|
{
|
2018-10-03 23:17:27 +02:00
|
|
|
return host6(*this) != uint128_t(0);
|
2018-01-07 22:48:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
inline ircd::uint128_t &
|
|
|
|
ircd::net::host6(ipport &ipp)
|
|
|
|
{
|
2019-03-08 20:46:50 +01:00
|
|
|
return host6(std::get<ipp.IP>(ipp));
|
2018-01-07 22:48:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
inline const ircd::uint128_t &
|
|
|
|
ircd::net::host6(const ipport &ipp)
|
|
|
|
{
|
2019-03-08 20:46:50 +01:00
|
|
|
return host6(std::get<ipp.IP>(ipp));
|
2018-01-07 22:48:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
ircd::net::is_v6(const ipport &ipp)
|
|
|
|
{
|
|
|
|
return std::get<ipp.TYPE>(ipp) == true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline uint32_t &
|
|
|
|
ircd::net::host4(ipport &ipp)
|
|
|
|
{
|
2019-03-08 20:46:50 +01:00
|
|
|
return host4(std::get<ipp.IP>(ipp));
|
2018-01-07 22:48:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
inline const uint32_t &
|
|
|
|
ircd::net::host4(const ipport &ipp)
|
|
|
|
{
|
2019-03-08 20:46:50 +01:00
|
|
|
return host4(std::get<ipp.IP>(ipp));
|
2018-01-07 22:48:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
ircd::net::is_v4(const ipport &ipp)
|
|
|
|
{
|
|
|
|
return std::get<ipp.TYPE>(ipp) == false;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline uint16_t &
|
|
|
|
ircd::net::port(ipport &ipp)
|
|
|
|
{
|
|
|
|
return std::get<ipp.PORT>(ipp);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const uint16_t &
|
|
|
|
ircd::net::port(const ipport &ipp)
|
|
|
|
{
|
|
|
|
return std::get<ipp.PORT>(ipp);
|
|
|
|
}
|