Green Sky
9ace11a0e2
8f0d505f9a feat: add ngc events 9b8216e70c refactor: Make event dispatch ordered by receive time. 814c12a6f4 cleanup: Add dynamically derived array sizes to the API. 226b23be12 cleanup: Add explicit array sizes to toxencryptsave. ef33cb4de0 cleanup: Add Toxav alias for ToxAV. 1da723b34d cleanup: Make Tox_Options a typedef. b148a2afff chore: Simplify msvc build using vcpkg. 5cac6d7eb1 cleanup: Move `tox_get_system` out of the public API. c9ca4007e3 refactor: Align group message sending with other send functions. 6c6c0b1b1b cleanup: Make setters take non-const `Tox *`. a76f758d70 cleanup: Mark arrays in the tox API as `[]` instead of `*`. baf6d1f6cf cleanup: Make array params in toxav `[]` instead of `*`. 79f55bd06a cleanup: Put the size of fixed arrays into the API types. 1e73698db2 cleanup: Add typedefs for public API int identifiers. cac074c57f chore: Add fetch-sha256 script to update bootstrap node hash. 32576656bb Make the comment capitalization uniform aff4dda17c Spellcheck tox-bootstrapd 40b5fbbe9d chore: Remove settings.yml in favour of hs-github-tools. ebafd51be7 chore: Use GPL license with https. 0e42752f0f cleanup: Move all vptr-to-ptr casts to the beginning of a function. 5407384211 cleanup: Use github actions matrix to simplify CI. 82d8265688 fix: Use QueryPerformanceCounter on windows for monotonic time. 1224e656e3 chore: Add `net_(new|kill)_strerror` to cppcheck's allocators. 6a90ddfe4e cleanup: Run clang-tidy on headers, as well. bd930cc80a cleanup: Make TCP connection failures a warning instead of error. fad6e4e173 cleanup: Make all .c files include the headers they need. ef4897a898 cleanup: Upgrade to clang-tidy-17 and fix some warnings. REVERT: f1df709b87 feat: add ngc events REVERT: 1b6c907235 refactor: Make event dispatch ordered by receive time. git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: 8f0d505f9a598cc41c682178e1589bcc01efe9cb
195 lines
4.3 KiB
C
195 lines
4.3 KiB
C
/* SPDX-License-Identifier: GPL-3.0-or-later
|
|
* Copyright © 2022 The TokTok team.
|
|
*/
|
|
|
|
#include "bin_pack.h"
|
|
|
|
#include <assert.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "../third_party/cmp/cmp.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 limit)
|
|
{
|
|
assert(limit == 0);
|
|
return false;
|
|
}
|
|
|
|
non_null()
|
|
static size_t buf_writer(cmp_ctx_t *ctx, const void *data, size_t count)
|
|
{
|
|
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, data, 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 Logger *logger, const void *obj)
|
|
{
|
|
Bin_Pack bp;
|
|
bin_pack_init(&bp, nullptr, 0);
|
|
if (!callback(&bp, logger, obj)) {
|
|
return UINT32_MAX;
|
|
}
|
|
return bp.bytes_pos;
|
|
}
|
|
|
|
bool bin_pack_obj(bin_pack_cb *callback, const Logger *logger, const void *obj, uint8_t *buf, uint32_t buf_size)
|
|
{
|
|
Bin_Pack bp;
|
|
bin_pack_init(&bp, buf, buf_size);
|
|
return callback(&bp, logger, obj);
|
|
}
|
|
|
|
uint32_t bin_pack_obj_array_size(bin_pack_array_cb *callback, const Logger *logger, const void *arr, uint32_t count)
|
|
{
|
|
Bin_Pack bp;
|
|
bin_pack_init(&bp, nullptr, 0);
|
|
for (uint32_t i = 0; i < count; ++i) {
|
|
if (!callback(&bp, logger, arr, i)) {
|
|
return UINT32_MAX;
|
|
}
|
|
}
|
|
return bp.bytes_pos;
|
|
}
|
|
|
|
bool bin_pack_obj_array(bin_pack_array_cb *callback, const Logger *logger, const void *arr, uint32_t count, uint8_t *buf, uint32_t buf_size)
|
|
{
|
|
Bin_Pack bp;
|
|
bin_pack_init(&bp, buf, buf_size);
|
|
for (uint32_t i = 0; i < count; ++i) {
|
|
if (!callback(&bp, logger, arr, i)) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
Bin_Pack *bin_pack_new(uint8_t *buf, uint32_t buf_size)
|
|
{
|
|
Bin_Pack *bp = (Bin_Pack *)calloc(1, sizeof(Bin_Pack));
|
|
if (bp == nullptr) {
|
|
return nullptr;
|
|
}
|
|
bin_pack_init(bp, buf, buf_size);
|
|
return bp;
|
|
}
|
|
|
|
void bin_pack_free(Bin_Pack *bp)
|
|
{
|
|
free(bp);
|
|
}
|
|
|
|
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;
|
|
}
|
|
|