Skip to content

Commit 4071d74

Browse files
committed
fix(ngc): dont double every message, if we are not directly connected
but we and the other peer would support direct.
1 parent 1d4cc78 commit 4071d74

File tree

4 files changed

+27
-10
lines changed

4 files changed

+27
-10
lines changed

toxcore/group_chats.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -1626,7 +1626,7 @@ int group_packet_wrap(
16261626
* Returns true on success.
16271627
*/
16281628
non_null()
1629-
static bool send_lossy_group_packet(const GC_Chat *chat, const GC_Connection *gconn, const uint8_t *data,
1629+
static bool send_lossy_group_packet(const GC_Chat *chat, GC_Connection *gconn, const uint8_t *data,
16301630
uint16_t length, uint8_t packet_type)
16311631
{
16321632
assert(length <= MAX_GC_CUSTOM_LOSSY_PACKET_SIZE);
@@ -2236,7 +2236,7 @@ static int handle_gc_invite_response_reject(const GC_Session *c, GC_Chat *chat,
22362236
* Return true on success.
22372237
*/
22382238
non_null()
2239-
static bool send_gc_invite_response_reject(const GC_Chat *chat, const GC_Connection *gconn, uint8_t type)
2239+
static bool send_gc_invite_response_reject(const GC_Chat *chat, GC_Connection *gconn, uint8_t type)
22402240
{
22412241
if (type >= GJ_INVALID) {
22422242
type = GJ_INVITE_FAILED;
@@ -2353,7 +2353,7 @@ static bool send_gc_lossy_packet_all_peers(const GC_Chat *chat, const uint8_t *d
23532353
uint32_t confirmed_peers = 0;
23542354

23552355
for (uint32_t i = 1; i < chat->numpeers; ++i) {
2356-
const GC_Connection *gconn = get_gc_connection(chat, i);
2356+
GC_Connection *gconn = get_gc_connection(chat, i);
23572357

23582358
assert(gconn != nullptr);
23592359

@@ -7072,7 +7072,7 @@ static void do_peer_delete(const GC_Session *c, GC_Chat *chat, void *userdata)
70727072
* Return true on success.
70737073
*/
70747074
non_null()
7075-
static bool ping_peer(const GC_Chat *chat, const GC_Connection *gconn)
7075+
static bool ping_peer(const GC_Chat *chat, GC_Connection *gconn)
70767076
{
70777077
const uint16_t buf_size = GC_PING_PACKET_MIN_DATA_SIZE + sizeof(IP_Port);
70787078
uint8_t *data = (uint8_t *)mem_balloc(chat->mem, buf_size);

toxcore/group_common.h

+1
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ typedef struct GC_Connection {
115115
uint64_t last_sent_tcp_relays_time; /* the last time we attempted to send this peer our tcp relays */
116116
uint16_t tcp_relay_share_index;
117117
uint64_t last_received_direct_time; /* the last time we received a direct UDP packet from this connection */
118+
uint64_t last_sent_direct_try_time; /* the last time we tried sending a direct UDP packet */
118119
uint64_t last_sent_ip_time; /* the last time we sent our ip info to this peer in a ping packet */
119120

120121
Node_format connected_tcp_relays[MAX_FRIEND_TCP_CONNECTIONS];

toxcore/group_connection.c

+16-4
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
/** Seconds since last direct UDP packet was received before the connection is considered dead */
3030
#define GCC_UDP_DIRECT_TIMEOUT (GC_PING_TIMEOUT + 4)
3131

32+
/** Seconds since last direct UDP packet was sent before we can try again. Cheap NAT hole punch */
33+
#define GCC_UDP_DIRECT_RETRY 1
34+
3235
/** Returns true if array entry does not contain an active packet. */
3336
non_null()
3437
static bool array_entry_is_empty(const GC_Message_Array_Entry *array_entry)
@@ -595,7 +598,7 @@ void gcc_resend_packets(const GC_Chat *chat, GC_Connection *gconn)
595598
}
596599
}
597600

598-
bool gcc_send_packet(const GC_Chat *chat, const GC_Connection *gconn, const uint8_t *packet, uint16_t length)
601+
bool gcc_send_packet(const GC_Chat *chat, GC_Connection *gconn, const uint8_t *packet, uint16_t length)
599602
{
600603
if (packet == nullptr || length == 0) {
601604
return false;
@@ -608,16 +611,20 @@ bool gcc_send_packet(const GC_Chat *chat, const GC_Connection *gconn, const uint
608611
return (uint16_t) sendpacket(chat->net, &gconn->addr.ip_port, packet, length) == length;
609612
}
610613

611-
if ((uint16_t) sendpacket(chat->net, &gconn->addr.ip_port, packet, length) == length) {
612-
direct_send_attempt = true;
614+
if (gcc_conn_should_try_direct(chat->mono_time, gconn)) {
615+
gconn->last_sent_direct_try_time = mono_time_get(chat->mono_time);
616+
617+
if ((uint16_t) sendpacket(chat->net, &gconn->addr.ip_port, packet, length) == length) {
618+
direct_send_attempt = true;
619+
}
613620
}
614621
}
615622

616623
const int ret = send_packet_tcp_connection(chat->tcp_conn, gconn->tcp_connection_num, packet, length);
617624
return ret == 0 || direct_send_attempt;
618625
}
619626

620-
int gcc_encrypt_and_send_lossless_packet(const GC_Chat *chat, const GC_Connection *gconn, const uint8_t *data,
627+
int gcc_encrypt_and_send_lossless_packet(const GC_Chat *chat, GC_Connection *gconn, const uint8_t *data,
621628
uint16_t length, uint64_t message_id, uint8_t packet_type)
622629
{
623630
const uint16_t packet_size = gc_get_wrapped_packet_size(length, NET_PACKET_GC_LOSSLESS);
@@ -659,6 +666,11 @@ bool gcc_conn_is_direct(const Mono_Time *mono_time, const GC_Connection *gconn)
659666
return GCC_UDP_DIRECT_TIMEOUT + gconn->last_received_direct_time > mono_time_get(mono_time);
660667
}
661668

669+
bool gcc_conn_should_try_direct(const Mono_Time *mono_time, const GC_Connection *gconn)
670+
{
671+
return mono_time_is_timeout(mono_time, gconn->last_sent_direct_try_time, GCC_UDP_DIRECT_RETRY);
672+
}
673+
662674
bool gcc_direct_conn_is_possible(const GC_Chat *chat, const GC_Connection *gconn)
663675
{
664676
return !net_family_is_unspec(gconn->addr.ip_port.ip.family) && !net_family_is_unspec(net_family(chat->net));

toxcore/group_connection.h

+6-2
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,10 @@ void gcc_make_session_shared_key(GC_Connection *gconn, const uint8_t *sender_pk)
135135
non_null()
136136
bool gcc_conn_is_direct(const Mono_Time *mono_time, const GC_Connection *gconn);
137137

138+
/** @brief Return true if we can try a direct connection with `gconn` again. */
139+
non_null()
140+
bool gcc_conn_should_try_direct(const Mono_Time *mono_time, const GC_Connection *gconn);
141+
138142
/** @brief Return true if a direct UDP connection is possible with `gconn`. */
139143
non_null()
140144
bool gcc_direct_conn_is_possible(const GC_Chat *chat, const GC_Connection *gconn);
@@ -146,7 +150,7 @@ bool gcc_direct_conn_is_possible(const GC_Chat *chat, const GC_Connection *gconn
146150
* Return true on success.
147151
*/
148152
non_null()
149-
bool gcc_send_packet(const GC_Chat *chat, const GC_Connection *gconn, const uint8_t *packet, uint16_t length);
153+
bool gcc_send_packet(const GC_Chat *chat, GC_Connection *gconn, const uint8_t *packet, uint16_t length);
150154

151155
/** @brief Sends a lossless packet to `gconn` comprised of `data` of size `length`.
152156
*
@@ -184,7 +188,7 @@ bool gcc_send_lossless_packet_fragments(const GC_Chat *chat, GC_Connection *gcon
184188
* Return -2 if the packet fails to send.
185189
*/
186190
non_null(1, 2) nullable(3)
187-
int gcc_encrypt_and_send_lossless_packet(const GC_Chat *chat, const GC_Connection *gconn, const uint8_t *data,
191+
int gcc_encrypt_and_send_lossless_packet(const GC_Chat *chat, GC_Connection *gconn, const uint8_t *data,
188192
uint16_t length, uint64_t message_id, uint8_t packet_type);
189193

190194
/** @brief Called when a peer leaves the group. */

0 commit comments

Comments
 (0)