I have a server written in Perl that does some tasks that clients ask it to. Requests and responses are passed using soap, namely
SOAP::Lite. Responses can be successful or unsuccessful. The latter are of two types: error codes plus honest-to-God exceptions (well, as close as Perl comes to them, anyway) of type
Error or
Exception::Class.
The problem occurs when
SOAP::Serializer tries to serialize objects of type
Error. Error.pm has the following code (shortened for our purposes):
use overload ("0+" => 'value');
sub value {
my $self = shift;
exists $self->{'-value'} ? $self->{'-value'} : undef;
}
Note that this subroutine may return
undef. Now,
SOAP::Serializer calls subroutine
gen_id on references, which for normal objects is just the value of memory address:
sub gen_id { sprintf "%U", $_[1] }
Now, the problem is that when objects of type
Error do not have a value (returns
undef), this produces a segfault in perl 5.6.1. This problem can be demonstrated with the following short script:
package My;
use overload ('0+' => 'num_conv');
sub new {
my $self = shift;
bless {}, ref($self) || $self;
}
sub num_conv { undef }
package main;
my $var = My->new;
print int($var);
We see that when numeric conversion overloading function returns
undef to built-in Perl functions that invoke it, that crashes perl.
My question is, how do I approach this problem? Do I try to
- find out whether I can modify Error.pm (drop numeric conversion overload insanity) and figuring out the implications of such change;
- modify gen_id routine to turn off numeric conversion overloading for referenced packages that are passed to it;
- other?
Your input is greatly appreciated. Thank you.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.