Skip to Content.
Sympa Menu

mace-opensaml-users - RE: Core dump parsing an assertion

Subject: OpenSAML user discussion

List archive

RE: Core dump parsing an assertion


Chronological Thread 
  • From: "Cameron Morris" <>
  • To: <>, <>
  • Subject: RE: Core dump parsing an assertion
  • Date: Thu, 24 Jun 2004 12:40:30 -0600

 
>Well, the crash is almost certainly a sign of a problem with the RTTI
>implementation. g++ is still pretty raw, and I've been fairly sure a problem
>like this could crop up somewhere. In this specific case, it's easy to fix;
>just change the dynamic_cast to a static_cast, since there's no real
>question about the class.
 
That did work.
 
>But the reason I stuck to dynamic was that if the runtime casts don't work,
>the code will break in other places anyway, so it's a sanity check. You
>really can't implement SAML properly without RTTI, so it's kind of a
>catch-22.
 
>The usual reason for this failing involves shared libraries, and was
>especially common a few releases back when you dynamically loaded a shared
>library into a process and then did a dynamic cast from outside it on a
>pointer inside it. They had work arounds, but I never saw any that worked.
 
>This of course is not that, since it's internal code inside the library, but
>I still have my doubts about g++.
 
Next I'll try gcc 3.3.4
 
> You might see if maybe there's a problem with the RTTI settings. Most C++
> compilers let you turn it off, but the makefiles shouldn't be doing that.
> It's possible though that there's a mixed environment, where libsaml is
> built ok, but the surrounding process is interfering, I guess.
 
> Anything strange about the way you're building your program?
I do link to some novell libraries to validate certificate chains and resolve revocation lists etc.  I also link to cppunit to run some tests.  
 
I tried removing these links and things started to work again.  I put them back and they fail.
Thanks,
Cameron



Archive powered by MHonArc 2.6.16.

Top of Page