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
|
###########################################
package Net::SSH::AuthorizedKey::SSH2;
###########################################
use strict;
use warnings;
use Net::SSH::AuthorizedKey::Base;
use base qw(Net::SSH::AuthorizedKey::Base);
use Log::Log4perl qw(:easy);
# No additional options, only global ones
our %VALID_OPTIONS = ();
our $KEYTYPE_REGEX = qr/rsa|dsa|ssh-rsa|ssh-dss|ssh-ed25519|ecdsa-\S+/;
our @REQUIRED_FIELDS = qw(
encryption
);
__PACKAGE__->make_accessor( $_ ) for
(@REQUIRED_FIELDS);
###########################################
sub new {
###########################################
my($class, %options) = @_;
return $class->SUPER::new( %options, type => "ssh-2" );
}
###########################################
sub as_string {
###########################################
my($self) = @_;
my $string = $self->options_as_string();
$string .= " " if length $string;
$string .= "$self->{encryption} $self->{key}";
$string .= " $self->{email}" if length $self->{email};
return $string;
}
###########################################
sub parse_multi_line {
###########################################
my($self, $string) = @_;
my @fields = ();
while($string =~ s/^(.*):\s+(.*)//gm) {
my($field, $value) = ($1, $2);
# remove quotes
$value =~ s/^"(.*)"$/$1/;
push @fields, $field, $value;
my $lcfield = lc $field;
if( $self->accessor_exists( $lcfield ) ) {
$self->$lcfield( $value );
} else {
WARN "Ignoring unknown field '$field'";
}
}
# Rest is the key, split across several lines
$string =~ s/\n//g;
$self->key( $string );
$self->type( "ssh-2" );
# Comment: "rsa-key-20090703"
if($self->comment() =~ /\b(.*?)-key/) {
$self->encryption( "ssh-" . $1 );
} elsif( ! $self->{strict} ) {
WARN "Unknown encryption [", $self->comment(),
"] fixed to ssh-rsa";
$self->encryption( "ssh-rsa" );
}
}
###########################################
sub key_read {
############################################
my($class, $line) = @_;
if($line !~ s/^($KEYTYPE_REGEX)\s*//) {
DEBUG "No SSH2 keytype found";
return undef;
}
my $encryption = $1;
DEBUG "Parsed encryption $encryption";
if($line !~ s/^(\S+)\s*//) {
DEBUG "No SSH2 key found";
return undef;
}
my $key = $1;
DEBUG "Parsed key $key";
my $email = $line;
my $obj = __PACKAGE__->new();
$obj->encryption( $encryption );
$obj->key( $key );
$obj->email( $email );
$obj->comment( $email );
return $obj;
}
###########################################
sub sanity_check {
###########################################
my($self) = @_;
for my $field (@REQUIRED_FIELDS) {
if(! length $self->$field()) {
WARN "ssh-2 sanity check failed '$field' requirement";
return undef;
}
}
return 1;
}
###########################################
sub option_type {
###########################################
my($self, $option) = @_;
if(exists $VALID_OPTIONS{ $option }) {
return $VALID_OPTIONS{ $option };
}
return undef;
}
1;
__END__
=head1 NAME
Net::SSH::AuthorizedKey::SSH2 - Net::SSH::AuthorizedKey subclass for ssh-2
=head1 DESCRIPTION
See Net::SSH::AuthorizedKey.
=head1 LEGALESE
Copyright 2005 by Mike Schilli, all rights reserved.
This program is free software, you can redistribute it and/or
modify it under the same terms as Perl itself.
=head1 AUTHOR
2005, Mike Schilli <m@perlmeister.com>
|