authsock.pl revision c23a9eed3ea86d92f42ef7296b9eeee1b54bb851
#
# Copyright (C) 2010 Andrew Tridgell
#
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
# AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
# test the update-policy external protocol
require 5.6.0;
my $path;
my $typeallowed = "A";
my $pidfile = "authsock.pid";
my $timeout = 0;
"type=s" => \$typeallowed,
"pidfile=s" => \$pidfile,
"timeout=i" => \$timeout);
if (!defined($path)) {
print("Usage: authsock.pl --path=<sockpath> --type=type --pidfile=pidfile\n");
exit(1);
}
unlink($path);
die "unable to create socket $path";
chmod 0777, $path;
# setup our pidfile
or die "unable to open pidfile $pidfile";
print $pid "$$\n";
close($pid);
if ($timeout != 0) {
# die after the given timeout
alarm($timeout);
}
printf("Badly formatted request\n");
next;
}
my ($signer,
$name,
$addr,
$type,
$key,
next;
}
printf("version=%u signer=%s name=%s addr=%s type=%s key=%s key_data_len=%u\n",
my $result;
if ($typeallowed eq $type) {
$result = 1;
} else {
$result = 0;
}
}