-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Memory corruption when using fds > 1023 #166
Comments
Thanks for report. Agree, this has to be fixed. I will look into poll/epoll as default implementation on modern systems. Libstrophe has been using select(2) to be more portable to exotic and old systems. |
Just a quick side note: in my opinion, |
Hi @pasis, |
Ow. I hit this, too |
Using libstrophe in a process that has more than 1024 (
FD_SETSIZE
) open files/sockets leads to memory corruption due to indiscriminate use ofFD_SET
. The default ulimit of 1024 in most Linux distributions prevents this, but other platforms (e.g. FreeBSD) have higher default limits. Also, one can envision server software that makes use of libstrophe for an upstream XMPP connection while also dealing with lots of other incoming connections in the same process.Handling fds > FD_SETSIZE seems cumbersome and inefficient with
select()
. I see two ways to address the memory corruption issue:poll()
.I have implemented
poll()
support in a branch here: https://github.com/manuelkasper/libstrophe/tree/poll (cursory testing done on Linux and FreeBSD; the code still usesselect()
on Windows, and I have not tested that). If desired, I can make a pull request, but note that in order to avoid dynamic memory allocation for thepoll()
call, a fixed limit on the number of connections per context (XMPP_MAX_CONNS_PER_CTX
) had to be introduced – not sure if this is acceptable.The text was updated successfully, but these errors were encountered: