3 # Created as wrapper for CSRF tokens, but designed for more general use
5 # Copyright 2016 Rijksmuseum
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 3 of the License, or (at your option) any later
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 Koha::Token - Tokenizer
29 my $tokenizer = Koha::Token->new;
30 my $token = $tokenizer->generate({ length => 20 });
32 # safely generate a CSRF token (nonblocking)
33 my $csrf_token = $tokenizer->generate({
34 type => 'CSRF', id => $id, secret => $secret,
37 # or check a CSRF token
38 my $result = $tokenizer->check_csrf({
39 id => $id, secret => $secret, token => $token,
44 Designed for providing general tokens.
45 Created due to the need for a nonblocking call to Bytes::Random::Secure
46 when generating a CSRF token.
51 use Bytes
::Random
::Secure
();
52 use String
::Random
();
54 use base
qw(Class::Accessor);
55 use constant HMAC_SHA1_LENGTH
=> 20;
56 use constant CSRF_EXPIRY_HOURS
=> 8; # 8 hours instead of 7 days..
62 Create object (via Class::Accessor).
68 return $class->SUPER::new
();
73 my $token = $tokenizer->generate({ length => 20 });
74 my $csrf_token = $tokenizer->generate({
75 type => 'CSRF', id => $id, secret => $secret,
78 Generate several types of tokens. Now includes CSRF.
79 Room for future extension.
84 my ( $self, $params ) = @_;
85 if( $params->{type
} && $params->{type
} eq 'CSRF' ) {
86 $self->{lasttoken
} = _gen_csrf
( $params );
88 $self->{lasttoken
} = _gen_rand
( $params );
90 return $self->{lasttoken
};
95 Shortcut for: generate({ type => 'CSRF', ... })
100 my ( $self, $params ) = @_;
101 return $self->generate({ %$params, type
=> 'CSRF' });
106 my $result = $tokenizer->check({
107 type => 'CSRF', id => $id, secret => $secret, token => $token,
110 Check several types of tokens. Now includes CSRF.
111 Room for future extension.
116 my ( $self, $params ) = @_;
117 if( $params->{type
} && $params->{type
} eq 'CSRF' ) {
118 return _chk_csrf
( $params );
125 Shortcut for: check({ type => 'CSRF', ... })
130 my ( $self, $params ) = @_;
131 return $self->check({ %$params, type
=> 'CSRF' });
134 # --- Internal routines ---
138 # Since WWW::CSRF::generate_csrf_token does not use the NonBlocking
139 # parameter of Bytes::Random::Secure, we are passing random bytes from
140 # a non blocking source to WWW::CSRF via its Random parameter.
143 return if !$params->{id
} || !$params->{secret
};
146 my $randomizer = Bytes
::Random
::Secure
->new( NonBlocking
=> 1 );
147 # this is most fundamental: do not use /dev/random since it is
148 # blocking, but use /dev/urandom !
149 my $random = $randomizer->bytes( HMAC_SHA1_LENGTH
);
150 my $token = WWW
::CSRF
::generate_csrf_token
(
151 $params->{id
}, $params->{secret
}, { Random
=> $random },
159 return if !$params->{id
} || !$params->{secret
} || !$params->{token
};
161 my $csrf_status = WWW
::CSRF
::check_csrf_token
(
165 { MaxAge
=> $params->{MaxAge
} // ( CSRF_EXPIRY_HOURS
* 3600 ) },
167 return $csrf_status == WWW
::CSRF
::CSRF_OK
();
172 my $length = $params->{length} || 1;
173 $length = 1 unless $length > 0;
175 return String
::Random
::random_string
( '.' x
$length );
180 Marcel de Rooy, Rijksmuseum Amsterdam, The Netherlands