Re: [sr-dev] [kamailio/kamailio] Regression on app_lua after ASLR enable (Issue #3202)

2022-09-28 Thread Boris Korzun
@miconda, what about to merge f5c98a49c98aedcf6e1afec3c42dd862d0eeb9a3 and 69ba64e26e3876ce84053a691dee2f2ad9bb6185 to 5.6? -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3202#issuecomment-1260918081 You are receiving this because you are subscr

Re: [sr-dev] [kamailio/kamailio] pike: fixed regression (#2744)

2021-05-25 Thread Boris Korzun
@miconda, yep, it's the fix for regression. Pike (`pike_check_req()`) doesn't work without the fix at all. :( It has nothing to do with previous PR (str case search). I've investigated the regression and found two issues (str case search and unnecessary NULL-return). -- You are receiving this

[sr-dev] [kamailio/kamailio] pike: fixed regression (#2744)

2021-05-25 Thread Boris Korzun
Pre-Submission Checklist - [x] Commit message has the format required by CONTRIBUTING guide - [x] Commits are split per component (core, individual modules, libs, utils, ...) - [x] Each component has a single commit (if not, squash them into one commit) - [x] No commits to README files for mo

[sr-dev] [kamailio/kamailio] core: ut - fixed str_casesearch() (#2743)

2021-05-25 Thread Boris Korzun
Pre-Submission Checklist - [x] Commit message has the format required by CONTRIBUTING guide - [x] Commits are split per component (core, individual modules, libs, utils, ...) - [x] Each component has a single commit (if not, squash them into one commit) - [x] No commits to README files for mo

Re: [sr-dev] [kamailio/kamailio] nathelper: fix_nated_sdp added ignoring RFC3605-param if omitted (#2737)

2021-05-19 Thread Boris Korzun
@miconda the fix takes care IPv4 (AF_INET socket type). We've tested it on IPv4, but we cannot test it on IPv6. :( -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/2737#issuecomment-8

[sr-dev] [kamailio/kamailio] Topos: critical error after upgrade to 5.5 (#2734)

2021-05-13 Thread Boris Korzun
### Description I've faced a critical error in the log after upgrade to 5.5 on _topos_ module. ### Troubleshooting It looks like _ki_tps_set_context()_ tries to free incorrectly defined variable __tps_context_value_. Reproduction ``` loadmodule "topos.so" modparam("topos", "storage", "db")

[sr-dev] [kamailio/kamailio] CORE_TLS option in 5.4 (#2720)

2021-04-29 Thread Boris Korzun
### Description There's a `CORE_TLS` option in _Makefile.defs_. But Kamailio isn't build with the option. https://github.com/kamailio/kamailio/blob/cf105d5af78963759825f5eaf9feb767c047a49c/src/main.c#L104 There is no `core/tls/tls_init.h` for include. ### Additional Information Kamailio 5.4.5

Re: [sr-dev] [kamailio/kamailio] Random crashes on tcp_main.c:handle_tcp_child() on FreeBSD (#2638)

2021-04-29 Thread Boris Korzun
Closed #2638. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/2638#event-4663472651___ Kamailio (SER) - Development Mailing List sr-dev@l

Re: [sr-dev] [kamailio/kamailio] Random crashes on tcp_main.c:handle_tcp_child() on FreeBSD (#2638)

2021-04-29 Thread Boris Korzun
I'm closing the issue as a resolved main annoying problem. I will open new issue if new problem will have occured (ex. on syslog() function). -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamai

Re: [sr-dev] [kamailio/kamailio] Random crashes on tcp_main.c:handle_tcp_child() on FreeBSD (#2638)

2021-03-02 Thread Boris Korzun
@miconda ``` (lldb) p *tcp_children (tcp_child) $0 = { pid = 51051 proc_no = 25 unix_sock = 40 busy = 0 mysocket = 0x n_reqs = 56 } ``` ``` (lldb) p *tcpconn (tcp_connection) $2 = { s = -1 fd = -1 write_lock = 0 id = 29 reader_pid = 0 rcv = { src_ip = {

Re: [sr-dev] [kamailio/kamailio] Random crashes on tcp_main.c:handle_tcp_child() on FreeBSD (#2638)

2021-02-19 Thread Boris Korzun
@miconda, do you prefer a libressl? Yep, Kamailio is with a tls module. ``` (lldb) f 17 frame #17: 0x00668966 kamailio`handle_tcp_child(tcp_c=0x0008014dcf68, fd_i=-1) at tcp_main.c:3706:5 (lldb) fr v (tcp_child *) tcp_c = 0x0008014dcf68 (int) fd_i = -1 (tcp_connection *) tcpcon

Re: [sr-dev] [kamailio/kamailio] Random crashes on tcp_main.c:handle_tcp_child() on FreeBSD (#2638)

2021-02-18 Thread Boris Korzun
@miconda, we use openssl. We can try to rebuild the kamailio with libressl support. I've investigated the problem much more and found out the crash has appeared on handle_tcp_child() instead tls_h_tcpconn_clean_f(). -- You are receiving this because you are subscribed to this thread. Reply to

Re: [sr-dev] [kamailio/kamailio] Core dumps possibly related to #2616 or http_async_query (#2632)

2021-02-18 Thread Boris Korzun
I've have similar crashes on syslog(). But I don't use HTTP(S). ### Troubleshooting Debugging Data ``` (lldb) target create "kamailio" --core "/var/coredump/986/kamailio.4087.core" Core file '/var/coredump/986/kamailio.4087.core' (x86_64) was loaded. (lldb) bt all * thread #1, name = 'kamai

[sr-dev] [kamailio/kamailio] Random crashes on tls_server.c:tls_h_tcpconn_clean_f() (#2638)

2021-02-15 Thread Boris Korzun
### Description We've random crashes (approx one occurrence per day) on tls_h_tcpconn_clean_f(). ### Troubleshooting Reproduction The crash appears **sometimes** on closing TLS session (it doesn't have to be gracefully) initiated by remote edge. Debugging Data ``` (lldb) target cr