forked from Green-Sky/tomato
Squashed 'external/toxcore/c-toxcore/' changes from 11ab1d2a723..d9b8fa6098d
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
This commit is contained in:
@ -10,7 +10,6 @@
|
||||
#include "group_pack.h"
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "DHT.h"
|
||||
@ -23,9 +22,13 @@
|
||||
#include "group_common.h"
|
||||
#include "group_moderation.h"
|
||||
#include "logger.h"
|
||||
#include "mem.h"
|
||||
#include "network.h"
|
||||
#include "util.h"
|
||||
|
||||
static_assert(GC_SAVED_PEER_SIZE >= sizeof(IP_Port),
|
||||
"GC_SAVED_PEER_SIZE cannot contain IP_Port");
|
||||
|
||||
bool group_privacy_state_from_int(uint8_t value, Group_Privacy_State *out_enum)
|
||||
{
|
||||
switch (value) {
|
||||
@ -180,7 +183,7 @@ static bool load_unpack_mod_list(GC_Chat *chat, Bin_Unpack *bu)
|
||||
chat->moderation.num_mods = MOD_MAX_NUM_MODERATORS;
|
||||
}
|
||||
|
||||
uint8_t *packed_mod_list = (uint8_t *)malloc(chat->moderation.num_mods * MOD_LIST_ENTRY_SIZE);
|
||||
uint8_t *packed_mod_list = (uint8_t *)mem_balloc(chat->mem, chat->moderation.num_mods * MOD_LIST_ENTRY_SIZE);
|
||||
|
||||
if (packed_mod_list == nullptr) {
|
||||
LOGGER_ERROR(chat->log, "Failed to allocate memory for packed mod list");
|
||||
@ -191,17 +194,17 @@ static bool load_unpack_mod_list(GC_Chat *chat, Bin_Unpack *bu)
|
||||
|
||||
if (!bin_unpack_bin_fixed(bu, packed_mod_list, packed_size)) {
|
||||
LOGGER_ERROR(chat->log, "Failed to unpack mod list binary data");
|
||||
free(packed_mod_list);
|
||||
mem_delete(chat->mem, packed_mod_list);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (mod_list_unpack(&chat->moderation, packed_mod_list, packed_size, chat->moderation.num_mods) == -1) {
|
||||
LOGGER_ERROR(chat->log, "Failed to unpack mod list info");
|
||||
free(packed_mod_list);
|
||||
mem_delete(chat->mem, packed_mod_list);
|
||||
return false;
|
||||
}
|
||||
|
||||
free(packed_mod_list);
|
||||
mem_delete(chat->mem, packed_mod_list);
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -299,7 +302,7 @@ static bool load_unpack_saved_peers(GC_Chat *chat, Bin_Unpack *bu)
|
||||
return true;
|
||||
}
|
||||
|
||||
uint8_t *saved_peers = (uint8_t *)malloc(saved_peers_size * GC_SAVED_PEER_SIZE);
|
||||
uint8_t *saved_peers = (uint8_t *)mem_balloc(chat->mem, saved_peers_size * GC_SAVED_PEER_SIZE);
|
||||
|
||||
if (saved_peers == nullptr) {
|
||||
LOGGER_ERROR(chat->log, "Failed to allocate memory for saved peer list");
|
||||
@ -308,7 +311,7 @@ static bool load_unpack_saved_peers(GC_Chat *chat, Bin_Unpack *bu)
|
||||
|
||||
if (!bin_unpack_bin_fixed(bu, saved_peers, saved_peers_size)) {
|
||||
LOGGER_ERROR(chat->log, "Failed to unpack saved peers binary data");
|
||||
free(saved_peers);
|
||||
mem_delete(chat->mem, saved_peers);
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -316,7 +319,7 @@ static bool load_unpack_saved_peers(GC_Chat *chat, Bin_Unpack *bu)
|
||||
LOGGER_ERROR(chat->log, "Failed to unpack saved peers"); // recoverable error
|
||||
}
|
||||
|
||||
free(saved_peers);
|
||||
mem_delete(chat->mem, saved_peers);
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -390,7 +393,7 @@ static void save_pack_mod_list(const GC_Chat *chat, Bin_Pack *bp)
|
||||
return;
|
||||
}
|
||||
|
||||
uint8_t *packed_mod_list = (uint8_t *)malloc(num_mods * MOD_LIST_ENTRY_SIZE);
|
||||
uint8_t *packed_mod_list = (uint8_t *)mem_balloc(chat->mem, num_mods * MOD_LIST_ENTRY_SIZE);
|
||||
|
||||
// we can still recover without the mod list
|
||||
if (packed_mod_list == nullptr) {
|
||||
@ -408,7 +411,7 @@ static void save_pack_mod_list(const GC_Chat *chat, Bin_Pack *bp)
|
||||
|
||||
bin_pack_bin(bp, packed_mod_list, packed_size); // 2
|
||||
|
||||
free(packed_mod_list);
|
||||
mem_delete(chat->mem, packed_mod_list);
|
||||
}
|
||||
|
||||
non_null()
|
||||
@ -445,7 +448,7 @@ static void save_pack_saved_peers(const GC_Chat *chat, Bin_Pack *bp)
|
||||
{
|
||||
bin_pack_array(bp, 2);
|
||||
|
||||
uint8_t *saved_peers = (uint8_t *)malloc(GC_MAX_SAVED_PEERS * GC_SAVED_PEER_SIZE);
|
||||
uint8_t *saved_peers = (uint8_t *)mem_balloc(chat->mem, GC_MAX_SAVED_PEERS * GC_SAVED_PEER_SIZE);
|
||||
|
||||
// we can still recover without the saved peers list
|
||||
if (saved_peers == nullptr) {
|
||||
@ -466,13 +469,13 @@ static void save_pack_saved_peers(const GC_Chat *chat, Bin_Pack *bp)
|
||||
|
||||
if (packed_size == 0) {
|
||||
bin_pack_nil(bp); // 2
|
||||
free(saved_peers);
|
||||
mem_delete(chat->mem, saved_peers);
|
||||
return;
|
||||
}
|
||||
|
||||
bin_pack_bin(bp, saved_peers, packed_size); // 2
|
||||
|
||||
free(saved_peers);
|
||||
mem_delete(chat->mem, saved_peers);
|
||||
}
|
||||
|
||||
void gc_save_pack_group(const GC_Chat *chat, Bin_Pack *bp)
|
||||
|
Reference in New Issue
Block a user