-
Notifications
You must be signed in to change notification settings - Fork 313
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
Segfault when -p flag used #62
Comments
Please try building the "dev" branch (1.4-DEV) and see if you can reproduce the segfault. If you can, please provide a backtrack on resulting core file. |
Reproduced on dev branch. Something I just noticed: if JACK isn't running it doesn't run and complains, so somehow it's detecting that I use JACK. But the JACK device that shows up seems to be an ALSA bridge. |
I don't know how to do anything with traces, but if you have a guide I can follow I will. |
Please post your direwolf config but technically speaking, Direwolf only supports low level ALSA devices (not higher level sound systems such as pulseaudio, not portaudio, not jack) |
I just figured out that that was because of Cadence's alsa-jack bridge. However, the segfault still occurs with said bridge disabled, so that is not the culprit. |
Do this to figure out where it is crashing: Edit Makefile.linux. Look for this line: "CFLAGS := -O3 -pthread -Igeotranz" and add " -g" to the end. Type commands: make clean When you get the "(gdb)" prompt, type "run -p". Note that any command line options that would normally go with direwolf are put here instead. When it crashes, type "backtrace" to find out where it is and how it got there. Type "quit" to get out. |
From the output of the initial startup of Direwolf, it shows: "Audio device for both receive and transmit: default (channel 0)" You didn't configured a sound card in the direwolf.conf file (ADEVICE) so it's using the default sound device which is shown above as "default" which is actually a PulseAudio device. Please follow the Direwolf User Guide on how to find and configure your ALSA device into the direwolf.conf file. It would look like something like: ADEVICE plughw:1,0 --David |
Thanks, I'll let you know the results |
Didn't fix it.
|
Bummer.. well, follow John's use of gdb and see if you can get a backtrace of the issue |
I'm not getting much more out of this than what I was told by the fact that it was a segfault, as I'm not really a dev myself. |
Also, is there a config option to make -t 0 the default? LXTerminal doesn't show any of the text besides the green text so I have |
Ok.. thanks for the BT. As part of the troubleshooting, please configure Direwolf to use a real ALSA device and NOT use default. Please see the User Guide .pdf on how to identify your proper audio device. Also try running Direwolf as root just to see if it will run under the root user vs. a standard user. |
Didn't realize there was a direwolf.conf in the root of the git repo. That's why it did the default again.
Still segfaults as root. |
For the record SELinux is not enabled, so it's not a permissions issue. |
Any updates? Not too much of a priority because it works on Linux Mint but it would be nice to have it on Arch Linux as it boots much faster. |
If Direwolf run fine on Mint but not Arch, this sounds like a potential kernel issue. What kernel version are you running on Arch? Are you able to upgrade the Arch kernel or build and install a new vanilla Linus kernel to see if that changes anything? |
I can reproduce the same behavior on Arch. The segfault occurs in
As a quick fix, I replaced this line:
with the thread-safe:
which copies the PTS name directly into |
Just curious, what makes this work in most Linuxes but not Arch?
of some sort be possible? |
This turns out to not actually be a race condition, but is the result of a change made in glibc 2.24. It doesn't appear that any other threads in Direwolf are calling
glibc versions prior to 2.24 were including these definitions regardless. In 2.24, without the correct feature test macro, the function is implicitly defined. C allows you to call functions that haven't been declared; the return type of implicit functions is always assumed to be On a 64-bit machine with gcc, the size of a pointer is 8 bytes, but the size of an
It'll only happen in distributions running glibc-2.24, which is the current version. Most distributions are on a slower release cycle and are still using older glibc.
No. For one, just because the memory is readable doesn't mean that it points to the value you expect. It would be possible for a pointer to get mangled into something that points into completely valid memory (no segfault on access) but is some other random data from the program. Two, while it would theoretically be possible to catch the segfault and do something else, you'd have to set up a signal handler for SIGSEGV, try accessing the memory, and then in the signal handler try to pick up the pieces and do the other thing instead. Not just a simple if/else. Finally, with non-Linux versions of the standard library, Getting back on topic, all that to say, |
Interesting. Works as you said with the CFLAGS additions. Thanks! |
Excellent detail in your message bmayton! Hopefully this flag can be added to more legacy systems w/o any negative impacts. |
I can confirm. Adding -D_XOPEN_SOURCE=600 to cflags stops the segfaulting on Ubuntu Yakkety as well. |
debian stretch had to set the cflags as such segfault gone |
We need to define a couple more symbols for glibc >= 2.24. Complete details: #62 modified: Makefile.linux modified: Makefile.macosx
Fixed with commit 40047e9 in the dev branch. Thanks for the detailed explanation. |
I'm just getting in to APRS and I've hit a problem. Perhaps the shell output is the best way to demonstrate:
OS: Arch Linux
Compiled from latest source with
The text was updated successfully, but these errors were encountered: