3b6bb15e86
d9b8fa6098d fix: Fake broadcast address for 127.x.x.x aa649165a57 chore: Add code for future netprof TCP testing 9e5693de5ac chore: add to_string functions for netprof enums 52d915e6a90 cleanup: Heap allocate network profile objects 80fabd4a729 feat: Implement Tox network profiler 05abe083cb6 cleanup: Some random cleanups, mostly related to mem. 5cca24513b8 cleanup: Check that onion IP/Port packing worked. e092ecd1244 cleanup: Use tox memory allocator in some more places. 3cfe41c7587 fix: Avoid `memcpy`-ing structs into onion ping id data. e32ac001938 fix: Add more information on why the frame was not sent. ab887003687 fix: Allow TCP connections to fail `connect` calls. 7603170e663 refactor: Use tox memory in group connection allocations. 5bd8a85eb89 cleanup: Align internal logger with external on type of source line. e9bf524d9e1 cleanup: Add missing `#include` to sort_test.cc. d10c966b998 feat: Add `to_string` functions for toxencryptsave errors. 7bfd0dc8003 docs: Update the docs for group join functions 380dde9f2ae test: Add more logging to TCP connection constructor. 0f12f384c8c cleanup: Reduce stack frame sizes to below 4096 bytes. bc43cec0626 chore: Happy new year! fbe78f1702e cleanup: Add a `TOX_HIDE_DEPRECATED` check to hide deprecated symbols. 44d9da07e77 refactor: Use tox memory for group moderation/pack allocations. 7f26d520168 refactor: Use tox memory in group chats allocations. 2f62f3d0e77 refactor: Use tox Memory for group allocations. 8a968162041 chore: Add dispatch/events headers to bazel export. 2bbfb35abf6 docs: Output the error code string instead of int. in toxav logging d55d0e4eaef cleanup: Remove redundant code for checking if group exists 2a6dc643338 chore: Upgrade dependencies for websockify. fc0650601c1 fix: Allow peers to reconnect to group chats using a password git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: d9b8fa6098de6c074038b6664d2572627540b148
206 lines
4.6 KiB
C
206 lines
4.6 KiB
C
/* SPDX-License-Identifier: GPL-3.0-or-later
|
|
* Copyright © 2022-2025 The TokTok team.
|
|
*/
|
|
|
|
#include "bin_pack.h"
|
|
|
|
#include <assert.h>
|
|
#include <string.h>
|
|
|
|
#include "../third_party/cmp/cmp.h"
|
|
#include "attributes.h"
|
|
#include "ccompat.h"
|
|
#include "logger.h"
|
|
|
|
struct Bin_Pack {
|
|
uint8_t *bytes;
|
|
uint32_t bytes_size;
|
|
uint32_t bytes_pos;
|
|
cmp_ctx_t ctx;
|
|
};
|
|
|
|
non_null()
|
|
static bool null_reader(cmp_ctx_t *ctx, void *data, size_t limit)
|
|
{
|
|
assert(limit == 0);
|
|
return false;
|
|
}
|
|
|
|
non_null()
|
|
static bool null_skipper(cmp_ctx_t *ctx, size_t count)
|
|
{
|
|
assert(count == 0);
|
|
return false;
|
|
}
|
|
|
|
non_null()
|
|
static size_t buf_writer(cmp_ctx_t *ctx, const void *data, size_t count)
|
|
{
|
|
const uint8_t *bytes = (const uint8_t *)data;
|
|
Bin_Pack *bp = (Bin_Pack *)ctx->buf;
|
|
assert(bp != nullptr);
|
|
const uint32_t new_pos = bp->bytes_pos + count;
|
|
if (new_pos < bp->bytes_pos) {
|
|
// 32 bit overflow.
|
|
return 0;
|
|
}
|
|
if (bp->bytes != nullptr) {
|
|
if (new_pos > bp->bytes_size) {
|
|
// Buffer too small.
|
|
return 0;
|
|
}
|
|
memcpy(&bp->bytes[bp->bytes_pos], bytes, count);
|
|
}
|
|
bp->bytes_pos += count;
|
|
return count;
|
|
}
|
|
|
|
non_null(1) nullable(2)
|
|
static void bin_pack_init(Bin_Pack *bp, uint8_t *buf, uint32_t buf_size)
|
|
{
|
|
bp->bytes = buf;
|
|
bp->bytes_size = buf_size;
|
|
bp->bytes_pos = 0;
|
|
cmp_init(&bp->ctx, bp, null_reader, null_skipper, buf_writer);
|
|
}
|
|
|
|
uint32_t bin_pack_obj_size(bin_pack_cb *callback, const void *obj, const Logger *logger)
|
|
{
|
|
Bin_Pack bp;
|
|
bin_pack_init(&bp, nullptr, 0);
|
|
if (!callback(obj, logger, &bp)) {
|
|
return UINT32_MAX;
|
|
}
|
|
return bp.bytes_pos;
|
|
}
|
|
|
|
bool bin_pack_obj(bin_pack_cb *callback, const void *obj, const Logger *logger, uint8_t *buf, uint32_t buf_size)
|
|
{
|
|
Bin_Pack bp;
|
|
bin_pack_init(&bp, buf, buf_size);
|
|
return callback(obj, logger, &bp);
|
|
}
|
|
|
|
uint32_t bin_pack_obj_array_b_size(bin_pack_array_cb *callback, const void *arr, uint32_t arr_size, const Logger *logger)
|
|
{
|
|
Bin_Pack bp;
|
|
bin_pack_init(&bp, nullptr, 0);
|
|
if (arr == nullptr) {
|
|
assert(arr_size == 0);
|
|
}
|
|
for (uint32_t i = 0; i < arr_size; ++i) {
|
|
if (!callback(arr, i, logger, &bp)) {
|
|
return UINT32_MAX;
|
|
}
|
|
}
|
|
return bp.bytes_pos;
|
|
}
|
|
|
|
bool bin_pack_obj_array_b(bin_pack_array_cb *callback, const void *arr, uint32_t arr_size, const Logger *logger, uint8_t *buf, uint32_t buf_size)
|
|
{
|
|
Bin_Pack bp;
|
|
bin_pack_init(&bp, buf, buf_size);
|
|
if (arr == nullptr) {
|
|
assert(arr_size == 0);
|
|
}
|
|
for (uint32_t i = 0; i < arr_size; ++i) {
|
|
if (!callback(arr, i, logger, &bp)) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool bin_pack_obj_array(Bin_Pack *bp, bin_pack_array_cb *callback, const void *arr, uint32_t arr_size, const Logger *logger)
|
|
{
|
|
if (arr == nullptr) {
|
|
assert(arr_size == 0);
|
|
return bin_pack_array(bp, 0);
|
|
}
|
|
|
|
if (!bin_pack_array(bp, arr_size)) {
|
|
return false;
|
|
}
|
|
|
|
for (uint32_t i = 0; i < arr_size; ++i) {
|
|
if (!callback(arr, i, logger, bp)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool bin_pack_array(Bin_Pack *bp, uint32_t size)
|
|
{
|
|
return cmp_write_array(&bp->ctx, size);
|
|
}
|
|
|
|
bool bin_pack_bool(Bin_Pack *bp, bool val)
|
|
{
|
|
return cmp_write_bool(&bp->ctx, val);
|
|
}
|
|
|
|
bool bin_pack_u08(Bin_Pack *bp, uint8_t val)
|
|
{
|
|
return cmp_write_uinteger(&bp->ctx, val);
|
|
}
|
|
|
|
bool bin_pack_u16(Bin_Pack *bp, uint16_t val)
|
|
{
|
|
return cmp_write_uinteger(&bp->ctx, val);
|
|
}
|
|
|
|
bool bin_pack_u32(Bin_Pack *bp, uint32_t val)
|
|
{
|
|
return cmp_write_uinteger(&bp->ctx, val);
|
|
}
|
|
|
|
bool bin_pack_u64(Bin_Pack *bp, uint64_t val)
|
|
{
|
|
return cmp_write_uinteger(&bp->ctx, val);
|
|
}
|
|
|
|
bool bin_pack_bin(Bin_Pack *bp, const uint8_t *data, uint32_t length)
|
|
{
|
|
return cmp_write_bin(&bp->ctx, data, length);
|
|
}
|
|
|
|
bool bin_pack_nil(Bin_Pack *bp)
|
|
{
|
|
return cmp_write_nil(&bp->ctx);
|
|
}
|
|
|
|
bool bin_pack_bin_marker(Bin_Pack *bp, uint32_t size)
|
|
{
|
|
return cmp_write_bin_marker(&bp->ctx, size);
|
|
}
|
|
|
|
bool bin_pack_u08_b(Bin_Pack *bp, uint8_t val)
|
|
{
|
|
return bp->ctx.write(&bp->ctx, &val, 1) == 1;
|
|
}
|
|
|
|
bool bin_pack_u16_b(Bin_Pack *bp, uint16_t val)
|
|
{
|
|
return bin_pack_u08_b(bp, (val >> 8) & 0xff)
|
|
&& bin_pack_u08_b(bp, val & 0xff);
|
|
}
|
|
|
|
bool bin_pack_u32_b(Bin_Pack *bp, uint32_t val)
|
|
{
|
|
return bin_pack_u16_b(bp, (val >> 16) & 0xffff)
|
|
&& bin_pack_u16_b(bp, val & 0xffff);
|
|
}
|
|
|
|
bool bin_pack_u64_b(Bin_Pack *bp, uint64_t val)
|
|
{
|
|
return bin_pack_u32_b(bp, (val >> 32) & 0xffffffff)
|
|
&& bin_pack_u32_b(bp, val & 0xffffffff);
|
|
}
|
|
|
|
bool bin_pack_bin_b(Bin_Pack *bp, const uint8_t *data, uint32_t length)
|
|
{
|
|
return bp->ctx.write(&bp->ctx, data, length) == length;
|
|
}
|