/usr/share/perl5/Test/Valgrind/Session.pm is in libtest-valgrind-perl 1.19-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 | package Test::Valgrind::Session;
use strict;
use warnings;
=head1 NAME
Test::Valgrind::Session - Test::Valgrind session object.
=head1 VERSION
Version 1.19
=cut
our $VERSION = '1.19';
=head1 DESCRIPTION
This class supervises the execution of the C<valgrind> process.
It also acts as a dispatcher between the different components.
=cut
use Config ();
use File::Spec ();
use ExtUtils::MM (); # MM->maybe_command()
use Scalar::Util ();
use Fcntl (); # F_SETFD
use IO::Select;
use POSIX (); # SIGKILL, _exit()
use base qw<Test::Valgrind::Carp>;
use Test::Valgrind::Version;
=head1 METHODS
=head2 C<new>
my $tvs = Test::Valgrind::Session->new(
search_dirs => \@search_dirs,
valgrind => $valgrind, # One candidate
valgrind => \@valgrind, # Several candidates
min_version => $min_version,
regen_def_supp => $regen_def_supp,
no_def_supp => $no_def_supp,
allow_no_supp => $allow_no_supp,
extra_supps => \@extra_supps,
);
The package constructor, which takes several options :
=over 4
=item *
All the directories from C<@search_dirs> will have F<valgrind> appended to create a list of candidates for the C<valgrind> executable.
Defaults to the current C<PATH> environment variable.
=item *
If a simple scalar C<$valgrind> is passed as the value to C<'valgrind'>, it will be the only candidate.
C<@search_dirs> will then be ignored.
If an array reference C<\@valgrind> is passed, its values will be I<prepended> to the list of the candidates resulting from C<@search_dirs>.
=item *
C<$min_version> specifies the minimal C<valgrind> version required.
The constructor will croak if it's not able to find an adequate C<valgrind> from the supplied candidates list and search path.
Defaults to none.
=item *
If C<$regen_def_supp> is true, the default suppression file associated with the tool and the command will be forcefully regenerated.
Defaults to false.
=item *
If C<$no_def_supp> is true, C<valgrind> won't read the default suppression file associated with the tool and the command.
Defaults to false.
=item *
If C<$allow_no_supp> is true, the command will always be run into C<valgrind> even if no appropriate suppression file is available.
Defaults to false.
=item *
C<$extra_supps> is a reference to an array of optional suppression files that will be passed to C<valgrind>.
Defaults to none.
=back
=cut
sub new {
my $class = shift;
$class = ref($class) || $class;
my %args = @_;
my @paths;
my $vg = delete $args{valgrind};
if (defined $vg and not ref $vg) {
@paths = ($vg);
} else {
push @paths, @$vg if defined $vg and ref $vg eq 'ARRAY';
my $dirs = delete $args{search_dirs};
$dirs = [ File::Spec->path ] unless defined $dirs;
my $exe_name = 'valgrind';
$exe_name .= $Config::Config{exe_ext} if defined $Config::Config{exe_ext};
push @paths, map File::Spec->catfile($_, $exe_name), @$dirs
if ref $dirs eq 'ARRAY';
}
$class->_croak('Empty valgrind candidates list') unless @paths;
my $min_version = delete $args{min_version};
if (defined $min_version) {
$min_version = Test::Valgrind::Version->new(string => $min_version);
}
my ($valgrind, $version);
for my $path (@paths) {
next unless defined($path) and MM->maybe_command($path);
my $output = qx/$path --version/;
my $ver = do {
local $@;
eval { Test::Valgrind::Version->new(command_output => $output) };
};
if (defined $ver) {
next if defined $min_version and $ver < $min_version;
$valgrind = $path;
$version = $ver;
last;
}
}
$class->_croak('No appropriate valgrind executable could be found')
unless defined $valgrind;
my $extra_supps = delete $args{extra_supps};
$extra_supps = [ ] unless $extra_supps and ref $extra_supps eq 'ARRAY';
@$extra_supps = grep { defined && -f $_ && -r _ } @$extra_supps;
bless {
valgrind => $valgrind,
version => $version,
regen_def_supp => delete($args{regen_def_supp}),
no_def_supp => delete($args{no_def_supp}),
allow_no_supp => delete($args{allow_no_supp}),
extra_supps => $extra_supps,
}, $class;
}
=head2 C<valgrind>
my $valgrind_path = $tvs->valgrind;
The path to the selected C<valgrind> executable.
=head2 C<version>
my $valgrind_version = $tvs->version;
The L<Test::Valgrind::Version> object associated to the selected C<valgrind>.
=head2 C<regen_def_supp>
my $regen_def_supp = $tvs->regen_def_supp;
Read-only accessor for the C<regen_def_supp> option.
=cut
=head2 C<no_def_supp>
my $no_def_supp = $tvs->no_def_supp;
Read-only accessor for the C<no_def_supp> option.
=head2 C<allow_no_supp>
my $allow_no_supp = $tvs->allow_no_supp;
Read-only accessor for the C<allow_no_supp> option.
=cut
eval "sub $_ { \$_[0]->{$_} }" for qw<
valgrind
version
regen_def_supp
no_def_supp
allow_no_supp
>;
=head2 C<extra_supps>
my @extra_supps = $tvs->extra_supps;
Read-only accessor for the C<extra_supps> option.
=cut
sub extra_supps { @{$_[0]->{extra_supps} || []} }
=head2 C<run>
$tvs->run(
action => $action,
tool => $tool,
command => $command,
);
Runs the command C<$command> through C<valgrind> with the tool C<$tool>, which will report to the action C<$action>.
If the command is a L<Test::Valgrind::Command::Aggregate> object, the action and the tool will be initialized once before running all the aggregated commands.
=cut
sub run {
my ($self, %args) = @_;
for (qw<action tool command>) {
my $base = 'Test::Valgrind::' . ucfirst;
my $value = $args{$_};
$self->_croak("Invalid $_") unless Scalar::Util::blessed($value)
and $value->isa($base);
$self->$_($args{$_})
}
my $cmd = $self->command;
if ($cmd->isa('Test::Valgrind::Command::Aggregate')) {
for my $subcmd ($cmd->commands) {
$args{command} = $subcmd;
$self->run(%args);
}
return;
}
$self->report($self->report_class->new_diag(
'Using valgrind ' . $self->version . ' located at ' . $self->valgrind
));
my $env = $self->command->env($self);
my @supp_args;
if ($self->do_suppressions) {
push @supp_args, '--gen-suppressions=all';
} else {
if (!$self->no_def_supp) {
my $def_supp = $self->def_supp_file;
my $forced;
if ($self->regen_def_supp and -e $def_supp) {
1 while unlink $def_supp;
$forced = 1;
}
if (defined $def_supp and not -e $def_supp) {
$self->report($self->report_class->new_diag(
'Generating suppressions' . ($forced ? ' (forced)' : '') . '...'
));
require Test::Valgrind::Suppressions;
Test::Valgrind::Suppressions->generate(
tool => $self->tool,
command => $self->command,
target => $def_supp,
);
$self->_croak('Couldn\'t generate suppressions') unless -e $def_supp;
$self->report($self->report_class->new_diag(
"Suppressions for this perl stored in $def_supp"
));
}
}
my @supp_files = grep {
-e $_ and $self->command->check_suppressions_file($_)
} $self->suppressions;
if (@supp_files > 1) {
my $files_list = join "\n", map " $_", @supp_files;
$self->report($self->report_class->new_diag(
"Using suppressions from:\n$files_list"
));
} elsif (@supp_files) {
$self->report($self->report_class->new_diag(
"Using suppressions from $supp_files[0]"
));
} elsif ($self->allow_no_supp) {
$self->report($self->report_class->new_diag("No suppressions used"));
} else {
$self->_croak("No compatible suppressions available");
}
@supp_args = map "--suppressions=$_", @supp_files;
}
my $error;
GUARDED: {
my $guard = Test::Valgrind::Session::Guard->new(sub { $self->finish });
$self->start;
pipe my $vrdr, my $vwtr or $self->_croak("pipe(\$vrdr, \$vwtr): $!");
{
my $oldfh = select $vrdr;
$|++;
select $oldfh;
}
pipe my $erdr, my $ewtr or $self->_croak("pipe(\$erdr, \$ewtr): $!");
{
my $oldfh = select $erdr;
$|++;
select $oldfh;
}
my $pid = fork;
$self->_croak("fork(): $!") unless defined $pid;
if ($pid == 0) {
{
local $@;
eval { setpgrp(0, 0) };
}
close $erdr or POSIX::_exit(255);
local $@;
eval {
close $vrdr or $self->_croak("close(\$vrdr): $!");
fcntl $vwtr, Fcntl::F_SETFD(), 0
or $self->_croak("fcntl(\$vwtr, F_SETFD, 0): $!");
my @args = (
$self->valgrind,
$self->tool->args($self),
@supp_args,
$self->parser->args($self, $vwtr),
$self->command->args($self),
);
{
no warnings 'exec';
exec { $args[0] } @args;
}
$self->_croak("exec @args: $!");
};
print $ewtr $@;
close $ewtr;
POSIX::_exit(255);
}
local $@;
eval {
local $SIG{INT} = sub {
die 'valgrind analysis was interrupted';
};
close $vwtr or $self->_croak("close(\$vwtr): $!");
close $ewtr or $self->_croak("close(\$ewtr): $!");
SEL: {
my $sel = IO::Select->new($vrdr, $erdr);
my $child_err;
while (my @ready = $sel->can_read) {
last SEL if @ready == 1 and fileno $ready[0] == fileno $vrdr;
my $buf;
my $bytes_read = sysread $erdr, $buf, 4096;
if (not defined $bytes_read) {
$self->_croak("sysread(\$erdr): $!");
} elsif ($bytes_read) {
$sel->remove($vrdr) unless $child_err;
$child_err .= $buf;
} else {
$sel->remove($erdr);
die $child_err if $child_err;
}
}
}
my $aborted = $self->parser->parse($self, $vrdr);
if ($aborted) {
$self->report($self->report_class->new_diag("valgrind has aborted"));
return 0;
}
1;
} or do {
$error = $@;
kill -(POSIX::SIGKILL()) => $pid if kill 0 => $pid;
close $erdr;
close $vrdr;
waitpid $pid, 0;
# Force the guard destructor to trigger now so that old perls don't lose $@
last GUARDED;
};
$self->{exit_code} = (waitpid($pid, 0) == $pid) ? $? >> 8 : 255;
close $erdr or $self->_croak("close(\$erdr): $!");
close $vrdr or $self->_croak("close(\$vrdr): $!");
return;
}
die $error if $error;
return;
}
sub Test::Valgrind::Session::Guard::new { bless \($_[1]), $_[0] }
sub Test::Valgrind::Session::Guard::DESTROY { ${$_[0]}->() }
=head2 C<action>
Read-only accessor for the C<action> associated to the current run.
=head2 C<tool>
Read-only accessor for the C<tool> associated to the current run.
=head2 C<parser>
Read-only accessor for the C<parser> associated to the current tool.
=head2 C<command>
Read-only accessor for the C<command> associated to the current run.
=cut
my @members;
BEGIN {
@members = qw<action tool command parser>;
for (@members) {
eval "sub $_ { \@_ <= 1 ? \$_[0]->{$_} : (\$_[0]->{$_} = \$_[1]) }";
die if $@;
}
}
=head2 C<do_suppressions>
Forwards to C<< ->action->do_suppressions >>.
=cut
sub do_suppressions { $_[0]->action->do_suppressions }
=head2 C<parser_class>
Calls C<< ->tool->parser_class >> with the current session object as the unique argument.
=cut
sub parser_class { $_[0]->tool->parser_class($_[0]) }
=head2 C<report_class>
Calls C<< ->tool->report_class >> with the current session object as the unique argument.
=cut
sub report_class { $_[0]->tool->report_class($_[0]) }
=head2 C<def_supp_file>
Returns an absolute path to the default suppression file associated to the current session.
C<undef> will be returned as soon as any of C<< ->command->suppressions_tag >> or C<< ->tool->suppressions_tag >> are also C<undef>.
Otherwise, the file part of the name is builded by joining those two together, and the directory part is roughly F<< File::HomeDir->my_home / .perl / Test-Valgrind / suppressions / $VERSION >>.
=cut
sub def_supp_file {
my ($self) = @_;
my $tool_tag = $self->tool->suppressions_tag($self);
return unless defined $tool_tag;
my $cmd_tag = $self->command->suppressions_tag($self);
return unless defined $cmd_tag;
require File::HomeDir; # So that it's not needed at configure time.
return File::Spec->catfile(
File::HomeDir->my_home,
'.perl',
'Test-Valgrind',
'suppressions',
$VERSION,
"$tool_tag-$cmd_tag.supp",
);
}
=head2 C<suppressions>
my @suppressions = $tvs->suppressions;
Returns the list of all the suppressions that will be passed to C<valgrind>.
Honors L</no_def_supp> and L</extra_supps>.
=cut
sub suppressions {
my ($self) = @_;
my @supps;
unless ($self->no_def_supp) {
my $def_supp = $self->def_supp_file;
push @supps, $def_supp if defined $def_supp;
}
push @supps, $self->extra_supps;
return @supps;
}
=head2 C<start>
$tvs->start;
Starts the action and tool associated to the current run.
It's automatically called at the beginning of L</run>.
=cut
sub start {
my $self = shift;
delete @{$self}{qw<last_status exit_code>};
$self->tool->start($self);
$self->parser($self->parser_class->new)->start($self);
$self->action->start($self);
return;
}
=head2 C<abort>
$tvs->abort($msg);
Forwards to C<< ->action->abort >> after unshifting the session object to the argument list.
=cut
sub abort {
my $self = shift;
$self->action->abort($self, @_);
}
=head2 C<report>
$tvs->report($report);
Forwards to C<< ->action->report >> after unshifting the session object to the argument list.
=cut
sub report {
my ($self, $report) = @_;
return unless defined $report;
for my $handler (qw<tool command>) {
$report = $self->$handler->filter($self, $report);
return unless defined $report;
}
$self->action->report($self, $report);
}
=head2 C<finish>
$tvs->finish;
Finishes the action and tool associated to the current run.
It's automatically called at the end of L</run>.
=cut
sub finish {
my ($self) = @_;
my $action = $self->action;
$action->finish($self);
$self->parser->finish($self);
$self->tool->finish($self);
my $status = $action->status($self);
$self->{last_status} = defined $status ? $status : $self->{exit_code};
$self->$_(undef) for @members;
return;
}
=head2 C<status>
my $status = $tvs->status;
Returns the status code of the last run of the session.
=cut
sub status { $_[0]->{last_status} }
=head1 SEE ALSO
L<Test::Valgrind>, L<Test::Valgrind::Action>, L<Test::Valgrind::Command>, L<Test::Valgrind::Tool>, L<Test::Valgrind::Parser>.
L<File::HomeDir>.
=head1 AUTHOR
Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
You can contact me by mail or on C<irc.perl.org> (vincent).
=head1 BUGS
Please report any bugs or feature requests to C<bug-test-valgrind at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Valgrind>.
I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
=head1 SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Test::Valgrind::Session
=head1 COPYRIGHT & LICENSE
Copyright 2009,2010,2011,2013,2015,2016 Vincent Pit, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
=cut
1; # End of Test::Valgrind::Session
|