aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIvan Nardi <12729895+IvanNardi@users.noreply.github.com>2023-01-17 22:02:23 +0100
committerGitHub <noreply@github.com>2023-01-17 22:02:23 +0100
commit97014c53f3855b657ad876df2d1e5954ae52a075 (patch)
treea8afc72142582eb16eadb69a3297d335fa7326cb /src
parentccc5a207100831df07c2dc9733837e731de86938 (diff)
Improve support for Snapchat voip calls (#1858)
Latest Snapchat versions use QUICv1 for their audio/video real time sessions. See c50a8d480
Diffstat (limited to 'src')
-rw-r--r--src/lib/protocols/quic.c26
1 files changed, 21 insertions, 5 deletions
diff --git a/src/lib/protocols/quic.c b/src/lib/protocols/quic.c
index b9b10b9c1..72e400c01 100644
--- a/src/lib/protocols/quic.c
+++ b/src/lib/protocols/quic.c
@@ -1610,17 +1610,33 @@ static int eval_extra_processing(struct ndpi_detection_module_struct *ndpi_struc
{
/* For the time being we need extra processing in two cases only:
1) to detect Snapchat calls, i.e. RTP/RTCP multiplxed with QUIC.
- We noticed that Snapchat uses Q046, without any SNI.
+ Two cases:
+ a) [old] Q046, without any SNI
+ b) v1 with SNI *.addlive.io
2) to reassemble CH fragments on multiple UDP packets.
These two cases are mutually exclusive
*/
- if((version == V_Q046 &&
- flow->host_server_name[0] == '\0') ||
- is_ch_reassembler_pending(flow)) {
- NDPI_LOG_DBG2(ndpi_struct, "We have further work to do\n");
+ if(version == V_Q046 && flow->host_server_name[0] == '\0') {
+ NDPI_LOG_DBG2(ndpi_struct, "We have further work to do (old snapchat call?)\n");
return 1;
}
+
+ if(version == V_1 &&
+ flow->detected_protocol_stack[0] == NDPI_PROTOCOL_SNAPCHAT) {
+ size_t sni_len = strlen(flow->host_server_name);
+ if(sni_len > 11 &&
+ strcmp(flow->host_server_name + sni_len - 11, ".addlive.io") == 0) {
+ NDPI_LOG_DBG2(ndpi_struct, "We have further work to do (new snapchat call?)\n");
+ return 1;
+ }
+ }
+
+ if(is_ch_reassembler_pending(flow)) {
+ NDPI_LOG_DBG2(ndpi_struct, "We have further work to do (reasm)\n");
+ return 1;
+ }
+
return 0;
}