using 1.4.5.0 tarball will sometimes work, but it eventually hangs.
using 26ea3b0e690bbbfaf992be19829ac2fa65fc0cc7, but it hangs before drawing anything. the log seems to indicate that it hangs while calling lsof.
going with the theme of calling external programs for information, i think an appropriate solution is to use the fstat(1) program instead of lsof(1), which is available in the base distribution of OpenBSD, FreeBSD, and NetBSD.
Trac: Username: mischief
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items ...
Show closed items
Linked items 0
Link issues together to show that they're related.
Learn more.
Hi mischief. Is this debug log from an occurrence where arm froze? The log gets up until the point of determining that lsof was the only resolver worth trying on your system, then nothing.
If this was the point of the freeze then please try running the following...
Arm's hanging. This should never happen, so this is what I'm interested in fixing.
Arm doesn't show the connections on OpenBSD, and could use fstat to do so. I'm happy to merge a patch for this and help if you have questions, but I don't plan to write this myself. It would be tricky for me to do since I don't have a system to develop it against (and before you offer one, I've tried developing against OpenBSD before - I couldn't even get vim to work properly on the accursed thing).
going with the theme of calling external programs for information, i think an appropriate solution is to use the fstat(1) program instead of lsof(1), which is available in the base distribution of OpenBSD, FreeBSD, and NetBSD.
I don't think fstat is appropriate for FreeBSD as it doesn't show the connection details:
USER CMD PID FD MOUNT INUM MODE SZ|DV R/W_tor tor 2567 text /usr/jails/tor-jail 4276 -r-xr-xr-x 14677809 r_tor tor 2567 wd /usr/jails/tor-jail 3715 drwx------ 13 r_tor tor 2567 root /usr/jails/tor-jail 3 drwxr-xr-x 21 r_tor tor 2567 jail /usr/jails/tor-jail 3 drwxr-xr-x 21 r_tor tor 2567 0 /usr/jails/tor-jail/dev 25 crw-rw-rw- null rw_tor tor 2567 1 /usr/jails/tor-jail/dev 25 crw-rw-rw- null rw_tor tor 2567 2 /usr/jails/tor-jail/dev 25 crw-rw-rw- null rw_tor tor 2567 3_tor tor 2567 4* internet stream tcp fffffe0077706000_tor tor 2567 5* internet stream tcp fffffe007504a000_tor tor 2567 6* internet dgram udp fffffe0017ad3188_tor tor 2567 7* internet stream tcp fffffe007505bb70_tor tor 2567 8* internet stream tcp fffffe007505b7a0_tor tor 2567 9* local stream fffffe0017b00c30_tor tor 2567 10 /usr/jails/tor-jail/dev 65 crw-rw---- pf rw_tor tor 2567 11 /usr/jails/tor-jail 862 -rw-r----- 24076 w_tor tor 2567 12 /usr/jails/tor-jail 863 -rw-r----- 12951160 w_tor tor 2567 13 /usr/jails/tor-jail/dev 25 crw-rw-rw- null w_tor tor 2567 14 - 3721 -rw------- 0 rw_tor tor 2567 15* internet stream tcp fffffe0077a94b70
Apparently it also gets the working directory wrong, and by the way it looks questionable in the OpenBSD example given above as well.
"Arm hanging" is a problem I reported before in the past and I don't think it has anything to do with lsof. I've locally patched stem to use procstat instead of lsof (for other reasons) and it didn't make a difference.
My impression is that only the GUI becomes unresponsive, control port traffic is still logged. It could be related to redraws, but I haven't recently looked at it.
It would probably help debugging if arm would catch SIGHUP to "reboot the GUI" after logging the current state.
My impression is that only the GUI becomes unresponsive, control port traffic is still logged. It could be related to redraws, but I haven't recently looked at it.
While trying to debug this I noticed that increasing the debug level made the problem worse and that adding unconditional log messages in LogPanel.draw() causes the GUI to reproducibly lock up after a couple of draw() calls.
Thus I tried the attached patch which removes the two conditional log messages and haven't seen any lock ups since.
I'm not suggesting that this is the real fix, but it certainly seems to help in my case.
Hi fk. We just got another ticket about OpenBSD connection resolution support. Resolving this in favor of it since adding fstat support to Stem is the right way forward...