123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- /*
- * Copyright (c)2013-2020 ZeroTier, Inc.
- *
- * Use of this software is governed by the Business Source License included
- * in the LICENSE.TXT file in the project's root directory.
- *
- * Change Date: 2024-01-01
- *
- * On the date above, in accordance with the Business Source License, use
- * of this software will be governed by version 2.0 of the Apache License.
- */
- /****/
- #include <cstdint>
- #include <cstring>
- #include "Packet.hpp"
- #include "Mutex.hpp"
- #include "LZ4.hpp"
- #if (defined(_MSC_VER) || defined(__GNUC__) || defined(__clang)) && (defined(__amd64) || defined(__amd64__) || defined(__x86_64) || defined(__x86_64__) || defined(__AMD64) || defined(__AMD64__) || defined(_M_X64))
- #define ZT_PACKET_USE_ATOMIC_INTRINSICS
- #endif
- #ifndef ZT_PACKET_USE_ATOMIC_INTRINSICS
- #include <atomic>
- #endif
- namespace ZeroTier {
- const uint8_t Packet::ZERO_KEY[32] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 };
- void Packet::armor(const void *key,bool encryptPayload)
- {
- uint8_t mangledKey[32];
- uint8_t *const data = reinterpret_cast<uint8_t *>(unsafeData());
- // Set flag now, since it affects key mangle function
- setCipher(encryptPayload ? ZT_PROTO_CIPHER_SUITE__POLY1305_SALSA2012 : ZT_PROTO_CIPHER_SUITE__POLY1305_NONE);
- _salsa20MangleKey((const unsigned char *)key,mangledKey);
- Salsa20 s20(mangledKey,data + ZT_PACKET_IDX_IV);
- uint64_t macKey[4];
- s20.crypt12(ZERO_KEY,macKey,sizeof(macKey));
- uint8_t *const payload = data + ZT_PACKET_IDX_VERB;
- const unsigned int payloadLen = size() - ZT_PACKET_IDX_VERB;
- if (encryptPayload)
- s20.crypt12(payload,payload,payloadLen);
- uint64_t mac[2];
- poly1305(mac,payload,payloadLen,macKey);
- memcpy(data + ZT_PACKET_IDX_MAC,mac,8);
- }
- bool Packet::dearmor(const void *key)
- {
- uint8_t mangledKey[32];
- uint8_t *const data = reinterpret_cast<uint8_t *>(unsafeData());
- const unsigned int payloadLen = size() - ZT_PACKET_IDX_VERB;
- unsigned char *const payload = data + ZT_PACKET_IDX_VERB;
- const unsigned int cs = cipher();
- if ((cs == ZT_PROTO_CIPHER_SUITE__POLY1305_NONE)||(cs == ZT_PROTO_CIPHER_SUITE__POLY1305_SALSA2012)) {
- _salsa20MangleKey((const unsigned char *)key,mangledKey);
- Salsa20 s20(mangledKey,data + ZT_PACKET_IDX_IV);
- uint64_t macKey[4];
- s20.crypt12(ZERO_KEY,macKey,sizeof(macKey));
- uint64_t mac[2];
- poly1305(mac,payload,payloadLen,macKey);
- #ifdef ZT_NO_TYPE_PUNNING
- if (!Utils::secureEq(mac,data + ZT_PACKET_IDX_MAC,8))
- return false;
- #else
- if ((*reinterpret_cast<const uint64_t *>(data + ZT_PACKET_IDX_MAC)) != mac[0]) // also secure, constant time
- return false;
- #endif
- if (cs == ZT_PROTO_CIPHER_SUITE__POLY1305_SALSA2012)
- s20.crypt12(payload,payload,payloadLen);
- return true;
- } else {
- return false; // unrecognized cipher suite
- }
- }
- bool Packet::compress()
- {
- char *const data = reinterpret_cast<char *>(unsafeData());
- char buf[ZT_PROTO_MAX_PACKET_LENGTH * 2];
- if ((!compressed())&&(size() > (ZT_PACKET_IDX_PAYLOAD + 64))) { // don't bother compressing tiny packets
- int pl = (int)(size() - ZT_PACKET_IDX_PAYLOAD);
- int cl = LZ4_compress_fast(data + ZT_PACKET_IDX_PAYLOAD,buf,pl,ZT_PROTO_MAX_PACKET_LENGTH * 2,1);
- if ((cl > 0)&&(cl < pl)) {
- data[ZT_PACKET_IDX_VERB] |= (char)ZT_PROTO_VERB_FLAG_COMPRESSED;
- setSize((unsigned int)cl + ZT_PACKET_IDX_PAYLOAD);
- memcpy(data + ZT_PACKET_IDX_PAYLOAD,buf,cl);
- return true;
- }
- }
- data[ZT_PACKET_IDX_VERB] &= (char)(~ZT_PROTO_VERB_FLAG_COMPRESSED);
- return false;
- }
- bool Packet::uncompress()
- {
- char *const data = reinterpret_cast<char *>(unsafeData());
- char buf[ZT_PROTO_MAX_PACKET_LENGTH];
- if ((compressed())&&(size() >= ZT_PROTO_MIN_PACKET_LENGTH)) {
- if (size() > ZT_PACKET_IDX_PAYLOAD) {
- unsigned int compLen = size() - ZT_PACKET_IDX_PAYLOAD;
- int ucl = LZ4_decompress_safe((const char *)data + ZT_PACKET_IDX_PAYLOAD,buf,compLen,sizeof(buf));
- if ((ucl > 0)&&(ucl <= (int)(capacity() - ZT_PACKET_IDX_PAYLOAD))) {
- setSize((unsigned int)ucl + ZT_PACKET_IDX_PAYLOAD);
- memcpy(data + ZT_PACKET_IDX_PAYLOAD,buf,ucl);
- } else {
- return false;
- }
- }
- data[ZT_PACKET_IDX_VERB] &= (char)(~ZT_PROTO_VERB_FLAG_COMPRESSED);
- }
- return true;
- }
- static unsigned long long s_initPacketID()
- {
- unsigned long long tmp = 0;
- Utils::getSecureRandom(&tmp,sizeof(tmp));
- tmp >>= 31U;
- tmp |= (((uint64_t)time(nullptr)) & 0xffffffffULL) << 33U;
- return tmp;
- }
- #ifdef ZT_PACKET_USE_ATOMIC_INTRINSICS
- static unsigned long long s_packetIdCtr = s_initPacketID();
- #else
- static std::atomic<unsigned long long> s_packetIdCtr(s_initPacketID());
- #endif
- uint64_t Packet::nextPacketId()
- {
- #ifdef ZT_PACKET_USE_ATOMIC_INTRINSICS
- return __sync_add_and_fetch(&s_packetIdCtr,1ULL);
- #else
- return ++s_packetIdCtr;
- #endif
- }
- } // namespace ZeroTier
|