<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class=""><meta http-equiv="Content-Type" content="text/html; charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class=""><br class=""><div class=""><blockquote type="cite" class=""><div class="">On 04 Feb 2020, at 10:31, Alexander Petrovsky <<a href="mailto:askjuise@gmail.com" class="">askjuise@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class=""><div dir="ltr" class="">Hello!<div class=""><br class=""></div><div class="">The first of all, my erlang version OTP-21.3 (without any minor patches)</div><div class=""><br class=""></div><div class="">I've got the strange floating problem with UDP to receive, which I couldn't debug by myself. Let me describe briefly what I have: There is UDP socket which used for send packets to many peers and receives responses from them (rate ~1pps):</div><div class=""><br class=""></div><div class="">send request: SIP options</div><div class="">receive a response: 100</div><div class="">receive a response: 200</div><div class=""><div class=""><br class=""></div><div class="">In erlang it's implemented like gen_server which receives messages, the sockets options are: <font face="monospace" class="">binary, {active, once}</font>.</div><div class=""><br class=""></div><div class="">Every time, when the message is received from the mailbox, code try to do some job, after that try to handle message bursts by calling in the loop (by example 5 times):</div><div class=""><code class=""><span class="gmail-nn">gen_udp</span><span class="gmail-p">:</span><span class="gmail-nf">recv</span><span class="gmail-p">(</span><span class="gmail-nv">Socket</span><span class="gmail-p">,</span> <span class="gmail-mi">0</span><span class="gmail-p">,</span> <span class="gmail-mi">0</span><span class="gmail-p">), <font face="arial, sans-serif" class="">bursts and after that set the socket option </font></span></code>{active, once} <span style="font-family:arial,sans-serif" class="">back.</span></div><div class=""><br class=""></div><div class="">So, here I'm observing floating strange behavior, from time to time the second!! and always the second!! response is absent. I see this UDP missing packets in tcpdump, I don't see any drops in UDP stack at all.</div><div class=""><br class=""></div><div class="">When I'm trying to add some logs into my erlang code, the problem disappears, when I'm run <font face="monospace" class="">strace</font> to <font face="monospace" class="">recvfrom</font> syscall the problem disappears... I't try to debug VM with <font face="monospace" class="">gdb</font> and make some breakpoints on <font face="monospace" class="">sock_recvfrom</font> in <font face="monospace" class="">inet_drv.c</font><font face="arial, sans-serif" class=""> (it's OTP-<font style="background-color:rgb(255,255,255)" class=""><span style="white-space:pre" class="">21.</span><span class="gmail-x gmail-x-first gmail-x-last" style="box-sizing:border-box;border-radius:0.2em;white-space:pre">3), but </span></font></font>the problem disappears (((</div><div class=""><br class=""></div><div class="">I can't find the problem root cause, is it in my code or is it in VM? Maybe someone could help me with that? </div><div class=""><br class=""></div>-- <br class=""><div dir="ltr" class="gmail_signature"><div dir="ltr" class=""><div class=""><div dir="ltr" class="">Петровский Александр / Alexander Petrovsky,<br class=""><br class="">Skype: askjuise<br class=""><div class="">Phone: +7 931 9877991<div class=""><br class=""></div></div></div></div></div></div></div></div></div>
</div></blockquote></div><div class=""><br class=""></div><div class="">So, I suppose this is related to SIP communication, and I’ll go out on a limb here…</div><div class=""><br class=""></div><div class="">Considering that SIP message, when transported using UDP, must fit into a single UDP message, then, your statement that second and only second response packet is missing, may imply that you are sending response using two UDP packets.</div><div class=""><br class=""></div><div class="">(A) AFAIK, SIP over UDP does not have any continuation, hence, must fit into a single packet.</div><div class="">If you (by any chance) send SIP message over multiple UDP packets, this shouldl not work — saying this just in case.</div><div class=""><br class=""></div><div class="">(B) OTOH, if tcpdump reveals UDP fragmentation (where a single UDP datagram is fragmented over multiple IP packets), then maybe your UDP buffer it to small to assemble the whole message, in which case message might be truncated, and your SIP parser may see it as the part of the message (second!! and always second!!), that’s gone missing.</div><div class=""><br class=""></div><div class="">(C) Finally, when your server processing is too slow for the size of the buffer, then, there’s a chance that receive buffer may get full, in which case it would drop the packet that cannot be added to the receive buffer.</div><div class=""><br class=""></div><div class="">However, judging from your “second!! and always second!!” statement, I’d say that (A) or (B), are more likely, barring something completely different (e.g some other bug, perhaps ;-))</div><div class=""><br class=""></div><div class="">Kind regards</div><div class=""><br class=""></div><div class="">V/</div><div class=""><br class=""></div><div class=""><br class=""></div><div class="">.</div><div class=""><br class=""></div><div class=""><br class=""></div></div></body></html>