-
Notifications
You must be signed in to change notification settings - Fork 13
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
Segmentation errors for gfal-copy's GridFTP plugin on RHEL8 #18
Comments
Hello Xavier, Repeating my message from cern-fts/gfal2-util#6 , given this is about GridFTP, it's not something we want to deeply investigate. The Gfal2 plan is to abandon GridFTP support. Maybe I can help you get a stacktrace. Given the import gfal2
ctx = gfal2.creat_context()
params = ctx.transfer_parameters()
ctx.filecopy(params, "src", "dst") Maybe this way, you'll have better chances of producing a coredump. Cheers, |
Thank you for the suggestion, Mihai. I'll give it a try. |
This small Python script was running for about 90 minutes without breaking due to a segmentation error... import gfal2
ctx = gfal2.creat_context()
params = ctx.transfer_parameters()
ctx.filecopy(params, 'file:////bin/bash', 'gsiftp://ppsgridftp-kit.gridka.de:2811//pnfs/gridka.de/dteam/disk-only/force-core-dump.tmp')
while True:
ctx.filecopy(params, 'gsiftp://ppsgridftp-kit.gridka.de:2811//pnfs/gridka.de/dteam/disk-only/force-core-dump.tmp', 'file:////dev/null') Anyway, our regular workflow (miraculously) produced three core dump files, of which I've attached the human readable information produced by Best regards, |
Hello, It does look like a double free for the same GSI security context:
Could you provide the coredump for Cheers, |
Here you go |
Hi @mpatrascoiu, did the coredump help you in any way? Ciao, |
Hi @mpatrascoiu, the core dumps keep happening for our setup; around 10 times per day, which is less than 1 % of all tests, but still... Of course, you are free to simply reject the issue on the basis that nobody cares about either gsiftp or RHEL-8 anymore. Simply close this issue and I'll stop bothering you, since we've implemented retries in case of segfault errors in our tests. Kind regards, |
(moved from cern-fts/gfal2-util)
Hello GFAL developers,
we've installed a new VM with RHEL-8 to run our regular transfer tests using the gfal2-tools. They used to run just fine on SL-7, but now our
gfal-copy
commands randomly fail with Segmentation faults exclusively with the gsiftp transfer protocol.For some reason that I'm unable to figure out, no core dump files are produced, while that should be possible (I can generate one myself).
Other information you might find useful...
Do you have other hints on what we should check to find out more information for you? If you know how to ensure core dumps are actually produced, that would be worth sharing.
Best regards,
Xavier.
The text was updated successfully, but these errors were encountered: