]> Dogcows Code - chaz/p5-CGI-Ex/blob - lib/CGI/Ex/Auth.pm
337801cd6b4da37927eb23fd8c2a9198fd8e2c39
[chaz/p5-CGI-Ex] / lib / CGI / Ex / Auth.pm
1 package CGI::Ex::Auth;
2
3 =head1 NAME
4
5 CGI::Ex::Auth - Handle logins nicely.
6
7 =cut
8
9 ###----------------------------------------------------------------###
10 # Copyright 2006 - Paul Seamons #
11 # Distributed under the Perl Artistic License without warranty #
12 ###----------------------------------------------------------------###
13
14 use strict;
15 use vars qw($VERSION);
16
17 use MIME::Base64 qw(encode_base64 decode_base64);
18 use Digest::MD5 qw(md5_hex);
19 use CGI::Ex;
20
21 $VERSION = '2.04';
22
23 ###----------------------------------------------------------------###
24
25 sub new {
26 my $class = shift || __PACKAGE__;
27 my $args = shift || {};
28 return bless {%$args}, $class;
29 }
30
31 sub get_valid_auth {
32 my $self = shift;
33 $self = $self->new(@_) if ! ref $self;
34
35 ### shortcut that will print a js file as needed (such as the md5.js)
36 if ($self->script_name . $self->path_info eq $self->js_uri_path . "/CGI/Ex/md5.js") {
37 $self->cgix->print_js('CGI/Ex/md5.js');
38 eval { die "Printed Javascript" };
39 return;
40 }
41
42 my $form = $self->form;
43 my $cookies = $self->cookies;
44 my $key_l = $self->key_logout;
45 my $key_c = $self->key_cookie;
46 my $has_cookies = scalar %$cookies;
47
48 ### allow for logout
49 if ($form->{$key_l}) {
50 $self->delete_cookie({key => $key_c});;
51 $self->location_bounce($self->logout_redirect);
52 eval { die "Logging out" };
53 return;
54 }
55
56 my $had_form_info;
57 foreach ([$form, $self->key_user, 1],
58 [$cookies, $key_c, 0],
59 ) {
60 my ($hash, $key, $is_form) = @$_;
61 next if ! defined $hash->{$key};
62 $had_form_info ++ if $is_form;
63
64 ### if it looks like a bare username (as in they didn't have javascript)- add in other items
65 my $data;
66 if ($is_form
67 && $hash->{$key} !~ m|^[^/]+/|
68 && defined $hash->{ $self->key_pass }) {
69 $data = $self->verify_token({
70 token => {
71 user => delete $hash->{$key},
72 test_pass => delete $hash->{ $self->key_pass },
73 expires_min => delete($hash->{ $self->key_save }) ? -1 : delete($hash->{ $self->key_expires_min }) || $self->expires_min,
74 payload => delete $hash->{ $self->key_payload } || '',
75 },
76 from => 'form',
77 }) || next;
78
79 } else {
80 $data = $self->verify_token({token => $hash->{$key}, from => ($is_form ? 'form' : 'cookie')}) || next;
81 delete $hash->{$key} if $is_form;
82 }
83
84 ### generate a fresh cookie if they submitted info on plaintext types
85 if ($self->use_plaintext || ($data->{'type'} && $data->{'type'} eq 'crypt')) {
86 $self->set_cookie({
87 key => $key_c,
88 val => $self->generate_token($data),
89 no_expires => ($data->{ $self->key_save } ? 0 : 1), # make it a session cookie unless they ask for saving
90 }) if $is_form; # only set the cookie if we found info in the form - the cookie will be a session cookie after that
91
92 ### always generate a cookie on types that have expiration
93 } else {
94 $self->set_cookie({
95 key => $key_c,
96 val => $self->generate_token($data),
97 no_expires => 0,
98 });
99 }
100
101 ### successful login
102
103 ### bounce to redirect
104 if (my $redirect = $form->{ $self->key_redirect }) {
105 $self->location_bounce($redirect);
106 eval { die "Success login - bouncing to redirect" };
107 return;
108
109 ### if they have cookies we are done
110 } elsif ($has_cookies || $self->no_cookie_verify) {
111 return $self;
112
113 ### need to verify cookies are set-able
114 } elsif ($is_form) {
115 $form->{$self->key_verify} = $self->server_time;
116 my $query = $self->cgix->make_form($form);
117 my $url = $self->script_name . $self->path_info . ($query ? "?$query" : "");
118
119 $self->location_bounce($url);
120 eval { die "Success login - bouncing to test cookie" };
121 return;
122 }
123 }
124
125 ### make sure the cookie is gone
126 $self->delete_cookie({key => $key_c}) if $cookies->{$key_c};
127
128 ### nothing found - see if they have cookies
129 if (my $value = delete $form->{$self->key_verify}) {
130 if (abs(time() - $value) < 15) {
131 $self->no_cookies_print;
132 return;
133 }
134 }
135
136 ### oh - you're still here - well then - ask for login credentials
137 my $key_r = $self->key_redirect;
138 if (! $form->{$key_r}) {
139 my $query = $self->cgix->make_form($form);
140 $form->{$key_r} = $self->script_name . $self->path_info . ($query ? "?$query" : "");
141 }
142
143 $form->{'had_form_data'} = $had_form_info;
144 $self->login_print;
145 my $data = $self->last_auth_data;
146 eval { die defined($data) ? $data : "Requesting credentials" };
147
148 ### allow for a sleep to help prevent brute force
149 sleep($self->failed_sleep) if defined($data) && $data->error ne 'Login expired' && $self->failed_sleep;
150
151 return;
152 }
153
154 ###----------------------------------------------------------------###
155
156 sub script_name { shift->{'script_name'} || $ENV{'SCRIPT_NAME'} || die "Missing SCRIPT_NAME" }
157
158 sub path_info { shift->{'path_info'} || $ENV{'PATH_INFO'} || '' }
159
160 sub server_time { time }
161
162 sub cgix {
163 my $self = shift;
164 $self->{'cgix'} = shift if $#_ != -1;
165 return $self->{'cgix'} ||= CGI::Ex->new;
166 }
167
168 sub form {
169 my $self = shift;
170 $self->{'form'} = shift if $#_ != -1;
171 return $self->{'form'} ||= $self->cgix->get_form;
172 }
173
174 sub cookies {
175 my $self = shift;
176 $self->{'cookies'} = shift if $#_ != -1;
177 return $self->{'cookies'} ||= $self->cgix->get_cookies;
178 }
179
180 sub delete_cookie {
181 my $self = shift;
182 my $args = shift;
183 my $key = $args->{'key'};
184 $self->cgix->set_cookie({
185 -name => $key,
186 -value => '',
187 -expires => '-10y',
188 -path => '/',
189 });
190 delete $self->cookies->{$key};
191 }
192
193 sub set_cookie {
194 my $self = shift;
195 my $args = shift;
196 my $key = $args->{'key'};
197 my $val = $args->{'val'};
198 $self->cgix->set_cookie({
199 -name => $key,
200 -value => $val,
201 ($args->{'no_expires'} ? () : (-expires => '+20y')), # let the expires time take care of things for types that self expire
202 -path => '/',
203 });
204 $self->cookies->{$key} = $val;
205 }
206
207 sub location_bounce {
208 my $self = shift;
209 my $url = shift;
210 return $self->cgix->location_bounce($url);
211 }
212
213 ###----------------------------------------------------------------###
214
215 sub key_logout { shift->{'key_logout'} ||= 'cea_logout' }
216 sub key_cookie { shift->{'key_cookie'} ||= 'cea_user' }
217 sub key_user { shift->{'key_user'} ||= 'cea_user' }
218 sub key_pass { shift->{'key_pass'} ||= 'cea_pass' }
219 sub key_time { shift->{'key_time'} ||= 'cea_time' }
220 sub key_save { shift->{'key_save'} ||= 'cea_save' }
221 sub key_expires_min { shift->{'key_expires_min'} ||= 'cea_expires_min' }
222 sub form_name { shift->{'form_name'} ||= 'cea_form' }
223 sub key_verify { shift->{'key_verify'} ||= 'cea_verify' }
224 sub key_redirect { shift->{'key_redirect'} ||= 'cea_redirect' }
225 sub key_payload { shift->{'key_payload'} ||= 'cea_payload' }
226 sub secure_hash_keys { shift->{'secure_hash_keys'} ||= [] }
227 sub no_cookie_verify { shift->{'no_cookie_verify'} ||= 0 }
228 sub use_crypt { shift->{'use_crypt'} ||= 0 }
229 sub use_blowfish { shift->{'use_blowfish'} ||= '' }
230 sub use_plaintext { my $s = shift; $s->use_crypt || ($s->{'use_plaintext'} ||= 0) }
231 sub use_base64 { my $s = shift; $s->{'use_base64'} = 1 if ! defined $s->{'use_base64'}; $s->{'use_base64'} }
232 sub expires_min { my $s = shift; $s->{'expires_min'} = 6 * 60 if ! defined $s->{'expires_min'}; $s->{'expires_min'} }
233 sub failed_sleep { shift->{'failed_sleep'} ||= 0 }
234
235 sub logout_redirect {
236 my $self = shift;
237 return $self->{'logout_redirect'} || $self->script_name ."?loggedout=1";
238 }
239
240 sub js_uri_path {
241 my $self = shift;
242 return $self->{'js_uri_path'} ||= $self->script_name ."/js";
243 }
244
245 ###----------------------------------------------------------------###
246
247 sub no_cookies_print {
248 my $self = shift;
249 $self->cgix->print_content_type;
250 print qq{<div style="border: 2px solid black;background:red;color:white">You do not appear to have cookies enabled.</div>};
251 return 1;
252 }
253
254 sub login_print {
255 my $self = shift;
256 my $hash = $self->login_hash_common;
257 my $template = $self->login_template;
258
259 ### allow for a hooked override
260 if (my $meth = $self->{'login_print'}) {
261 $meth->($self, $template, $hash);
262 return 0;
263 }
264
265 ### process the document
266 require CGI::Ex::Template;
267 my $cet = CGI::Ex::Template->new($self->template_args);
268 my $out = '';
269 $cet->process_simple($template, $hash, \$out) || die $cet->error;
270
271 ### fill in form fields
272 require CGI::Ex::Fill;
273 CGI::Ex::Fill::fill({text => \$out, form => $hash});
274
275 ### print it
276 $self->cgix->print_content_type;
277 print $out;
278
279 return 0;
280 }
281
282 sub template_args {
283 my $self = shift;
284 return $self->{'template_args'} ||= {
285 INCLUDE_PATH => $self->template_include_path,
286 };
287 }
288
289 sub template_include_path { shift->{'template_include_path'} || '' }
290
291 sub login_hash_common {
292 my $self = shift;
293 my $form = $self->form;
294 my $data = $self->last_auth_data;
295 $data = {} if ! defined $data;
296
297 return {
298 %$form,
299 error => ($form->{'had_form_data'}) ? "Login Failed" : "",
300 login_data => $data,
301 key_user => $self->key_user,
302 key_pass => $self->key_pass,
303 key_time => $self->key_time,
304 key_save => $self->key_save,
305 key_expires_min => $self->key_expires_min,
306 key_payload => $self->key_payload,
307 key_redirect => $self->key_redirect,
308 form_name => $self->form_name,
309 script_name => $self->script_name,
310 path_info => $self->path_info,
311 md5_js_path => $self->js_uri_path ."/CGI/Ex/md5.js",
312 use_plaintext => $self->use_plaintext,
313 $self->key_user => $data->{'user'} || '',
314 $self->key_pass => '', # don't allow for this to get filled into the form
315 $self->key_time => $self->server_time,
316 $self->key_payload => $self->generate_payload({%$data, login_form => 1}),
317 $self->key_expires_min => $self->expires_min,
318 text_user => $self->text_user,
319 text_pass => $self->text_pass,
320 text_save => $self->text_save,
321 };
322 }
323
324 ###----------------------------------------------------------------###
325
326 sub verify_token {
327 my $self = shift;
328 my $args = shift;
329 my $token = delete $args->{'token'} || die "Missing token";
330 my $data = $self->{'_last_auth_data'} = $self->new_auth_data({token => $token, %$args});
331
332 ### token already parsed
333 if (ref $token) {
334 $data->add_data({%$token, armor => 'none'});
335
336 ### parse token for info
337 } else {
338 my $found;
339 my $key;
340 for my $armor ('none', 'base64', 'blowfish') { # try with and without base64 encoding
341 my $copy = ($armor eq 'none') ? $token
342 : ($armor eq 'base64') ? eval { local $^W; decode_base64($token) }
343 : ($key = $self->use_blowfish) ? decrypt_blowfish($token, $key)
344 : next;
345 if ($copy =~ m|^ ([^/]+) / (\d+) / (-?\d+) / (.*) / ([a-fA-F0-9]{32}) (?: / (sh\.\d+\.\d+))? $|x) {
346 $data->add_data({
347 user => $1,
348 cram_time => $2,
349 expires_min => $3,
350 payload => $4,
351 test_pass => $5,
352 secure_hash => $6 || '',
353 armor => $armor,
354 });
355 $found = 1;
356 last;
357 } elsif ($copy =~ m|^ ([^/]+) / (.*) $|x) {
358 $data->add_data({
359 user => $1,
360 test_pass => $2,
361 armor => $armor,
362 });
363 $found = 1;
364 last;
365 }
366 }
367 if (! $found) {
368 $data->error('Invalid token');
369 return $data;
370 }
371 }
372
373
374 ### verify the user and get the pass
375 my $pass;
376 if (! defined($data->{'user'})) {
377 $data->error('Missing user');
378
379 } elsif (! defined $data->{'test_pass'}) {
380 $data->error('Missing test_pass');
381
382 } elsif (! $self->verify_user($data->{'user'} = $self->cleanup_user($data->{'user'}))) {
383 $data->error('Invalid user');
384
385 } elsif (! defined($pass = eval { $self->get_pass_by_user($data->{'user'}) })) {
386 $data->add_data({details => $@});
387 $data->error('Could not get pass');
388 } elsif (ref $pass eq 'HASH') {
389 my $extra = $pass;
390 $pass = exists($extra->{'real_pass'}) ? delete($extra->{'real_pass'})
391 : exists($extra->{'password'}) ? delete($extra->{'password'})
392 : do { $data->error('Data returned by get_pass_by_user did not contain real_pass or password'); undef };
393 $data->error('Invalid login') if ! defined $pass && ! $data->error;
394 $data->add_data($extra);
395 }
396 return $data if $data->error;
397
398
399 ### store - to allow generate_token to not need to relookup the pass
400 $data->add_data({real_pass => $pass});
401
402
403 ### looks like a secure_hash cram
404 if ($data->{'secure_hash'}) {
405 $data->add_data(type => 'secure_hash_cram');
406 my $array = eval {$self->secure_hash_keys };
407 if (! $array) {
408 $data->error('secure_hash_keys not found');
409 } elsif (! @$array) {
410 $data->error('secure_hash_keys empty');
411 } elsif ($data->{'secure_hash'} !~ /^sh\.(\d+)\.(\d+)$/ || $1 > $#$array) {
412 $data->error('Invalid secure hash');
413 } else {
414 my $rand1 = $1;
415 my $rand2 = $2;
416 my $real = $data->{'real_pass'} =~ /^[a-f0-9]{32}$/ ? lc($data->{'real_pass'}) : md5_hex($data->{'real_pass'});
417 my $str = join("/", @{$data}{qw(user cram_time expires_min payload)});
418 my $sum = md5_hex($str .'/'. $real .('/sh.'.$array->[$rand1].'.'.$rand2));
419 if ($data->{'expires_min'} > 0
420 && ($self->server_time - $data->{'cram_time'}) > $data->{'expires_min'} * 60) {
421 $data->error('Login expired');
422 } elsif (lc($data->{'test_pass'}) ne $sum) {
423 $data->error('Invalid login');
424 }
425 }
426
427 ### looks like a normal cram
428 } elsif ($data->{'cram_time'}) {
429 $data->add_data(type => 'cram');
430 my $real = $data->{'real_pass'} =~ /^[a-f0-9]{32}$/ ? lc($data->{'real_pass'}) : md5_hex($data->{'real_pass'});
431 my $str = join("/", @{$data}{qw(user cram_time expires_min payload)});
432 my $sum = md5_hex($str .'/'. $real);
433 if ($data->{'expires_min'} > 0
434 && ($self->server_time - $data->{'cram_time'}) > $data->{'expires_min'} * 60) {
435 $data->error('Login expired');
436 } elsif (lc($data->{'test_pass'}) ne $sum) {
437 $data->error('Invalid login');
438 }
439
440 ### plaintext_crypt
441 } elsif ($data->{'real_pass'} =~ m|^([./0-9A-Za-z]{2})([./0-9A-Za-z]{11})$|
442 && crypt($data->{'test_pass'}, $1) eq $data->{'real_pass'}) {
443 $data->add_data(type => 'crypt', was_plaintext => 1);
444
445 ### failed plaintext crypt
446 } elsif ($self->use_crypt) {
447 $data->error('Invalid login');
448 $data->add_data(type => 'crypt', was_plaintext => ($data->{'test_pass'} =~ /^[a-f0-9]{32}$/ ? 0 : 1));
449
450 ### plaintext and md5
451 } else {
452 my $is_md5_t = $data->{'test_pass'} =~ /^[a-f0-9]{32}$/;
453 my $is_md5_r = $data->{'real_pass'} =~ /^[a-f0-9]{32}$/;
454 my $test = $is_md5_t ? lc($data->{'test_pass'}) : md5_hex($data->{'test_pass'});
455 my $real = $is_md5_r ? lc($data->{'real_pass'}) : md5_hex($data->{'real_pass'});
456 $data->add_data(type => ($is_md5_r ? 'md5' : 'plaintext'), was_plaintext => ($is_md5_t ? 0 : 1));
457 $data->error('Invalid login')
458 if $test ne $real;
459 }
460
461 ### check the payload
462 if (! $data->error && ! $self->verify_payload($data->{'payload'})) {
463 $data->error('Invalid payload');
464 }
465
466 return $data;
467 }
468
469 sub new_auth_data {
470 my $self = shift;
471 return CGI::Ex::Auth::Data->new(@_);
472 }
473
474 sub last_auth_data { shift->{'_last_auth_data'} }
475
476 sub generate_token {
477 my $self = shift;
478 my $data = shift || $self->last_auth_data;
479 die "Can't generate a token off of a failed auth" if ! $data;
480
481 my $token;
482
483 ### do kinds that require staying plaintext
484 if ( (defined($data->{'use_plaintext'}) ? $data->{'use_plaintext'} : $self->use_plaintext) # ->use_plaintext is true if ->use_crypt is
485 || (defined($data->{'use_crypt'}) && $data->{'use_crypt'})
486 || (defined($data->{'type'}) && $data->{'type'} eq 'crypt')) {
487 $token = $data->{'user'} .'/'. $data->{'real_pass'};
488
489 ### all other types go to cram - secure_hash_cram, cram, plaintext and md5
490 } else {
491 my $user = $data->{'user'} || die "Missing user";
492 my $real = defined($data->{'real_pass'}) ? ($data->{'real_pass'} =~ /^[a-f0-9]{32}$/ ? lc($data->{'real_pass'}) : md5_hex($data->{'real_pass'}))
493 : die "Missing real_pass";
494 my $exp = defined($data->{'expires_min'}) ? $data->{'expires_min'} : $self->expires_min;
495 my $load = $self->generate_payload($data);
496 die "Payload can not contain a \"/\. Please escape it in generate_payload." if $load =~ m|/|;
497 die "User can not contain a \"/\." if $user =~ m|/|;
498
499 my $array;
500 if (! $data->{'prefer_cram'}
501 && ($array = eval { $self->secure_hash_keys })
502 && @$array) {
503 my $rand1 = int(rand @$array);
504 my $rand2 = int(rand 100000);
505 my $str = join("/", $user, $self->server_time, $exp, $load);
506 my $sum = md5_hex($str .'/'. $real .('/sh.'.$array->[$rand1].'.'.$rand2));
507 $token = $str .'/'. $sum . '/sh.'.$rand1.'.'.$rand2;
508 } else {
509 my $str = join("/", $user, $self->server_time, $exp, $load);
510 my $sum = md5_hex($str .'/'. $real);
511 $token = $str .'/'. $sum;
512 }
513 }
514
515 if (my $key = $data->{'use_blowfish'} || $self->use_blowfish) {
516 $token = encrypt_blowfish($token, $key);
517
518 } elsif (defined($data->{'use_base64'}) ? $data->{'use_base64'} : $self->use_base64) {
519 $token = encode_base64($token, '');
520 }
521
522 return $token;
523 }
524
525 sub generate_payload {
526 my $self = shift;
527 my $args = shift;
528 return defined($args->{'payload'}) ? $args->{'payload'} : '';
529 }
530
531 sub verify_user {
532 my $self = shift;
533 my $user = shift;
534 if (my $meth = $self->{'verify_user'}) {
535 return $meth->($self, $user);
536 }
537 return 1;
538 }
539
540 sub cleanup_user {
541 my $self = shift;
542 my $user = shift;
543 if (my $meth = $self->{'cleanup_user'}) {
544 return $meth->($self, $user);
545 }
546 return $user;
547 }
548
549 sub get_pass_by_user {
550 my $self = shift;
551 my $user = shift;
552 if (my $meth = $self->{'get_pass_by_user'}) {
553 return $meth->($self, $user);
554 }
555
556 die "Please override get_pass_by_user";
557 }
558
559 sub verify_payload {
560 my $self = shift;
561 my $payload = shift;
562 if (my $meth = $self->{'verify_payload'}) {
563 return $meth->($self, $payload);
564 }
565 return 1;
566 }
567
568 ###----------------------------------------------------------------###
569
570 sub encrypt_blowfish {
571 my ($str, $key) = @_;
572
573 require Crypt::Blowfish;
574 my $cb = Crypt::Blowfish->new($key);
575
576 $str .= (chr 0) x (8 - length($str) % 8); # pad to multiples of 8
577
578 my $enc = '';
579 $enc .= unpack "H16", $cb->encrypt($1) while $str =~ /\G(.{8})/g; # 8 bytes at a time
580
581 return $enc;
582 }
583
584 sub decrypt_blowfish {
585 my ($enc, $key) = @_;
586
587 require Crypt::Blowfish;
588 my $cb = Crypt::Blowfish->new($key);
589
590 my $str = '';
591 $str .= $cb->decrypt(pack "H16", $1) while $enc =~ /\G([A-Fa-f0-9]{16})/g;
592 $str =~ y/\00//d;
593
594 return $str
595 }
596
597 ###----------------------------------------------------------------###
598
599 sub login_template {
600 my $self = shift;
601 return $self->{'login_template'} if $self->{'login_template'};
602
603 my $text = ""
604 . $self->login_header
605 . $self->login_form
606 . $self->login_script
607 . $self->login_footer;
608 return \$text;
609 }
610
611 sub login_header {
612 return shift->{'login_header'} || q {
613 [%~ TRY ; PROCESS 'login_header.tt' ; CATCH %]<!-- [% error %] -->[% END ~%]
614 };
615 }
616
617 sub login_footer {
618 return shift->{'login_footer'} || q {
619 [%~ TRY ; PROCESS 'login_footer.tt' ; CATCH %]<!-- [% error %] -->[% END ~%]
620 };
621 }
622
623 sub login_form {
624 return shift->{'login_form'} || q {
625 <div class="login_chunk">
626 <span class="login_error">[% error %]</span>
627 <form class="login_form" name="[% form_name %]" method="post" action="[% script_name %][% path_info %]">
628 <input type="hidden" name="[% key_redirect %]" value="">
629 <input type="hidden" name="[% key_payload %]" value="">
630 <input type="hidden" name="[% key_time %]" value="">
631 <input type="hidden" name="[% key_expires_min %]" value="">
632 <table class="login_table">
633 <tr class="login_username">
634 <td>[% text_user %]</td>
635 <td><input name="[% key_user %]" type="text" size="30" value=""></td>
636 </tr>
637 <tr class="login_password">
638 <td>[% text_pass %]</td>
639 <td><input name="[% key_pass %]" type="password" size="30" value=""></td>
640 </tr>
641 <tr class="login_save">
642 <td colspan="2">
643 <input type="checkbox" name="[% key_save %]" value="1"> [% text_save %]
644 </td>
645 </tr>
646 <tr class="login_submit">
647 <td colspan="2" align="right">
648 <input type="submit" value="Submit">
649 </td>
650 </tr>
651 </table>
652 </form>
653 </div>
654 };
655 }
656
657 sub text_user { my $self = shift; return defined($self->{'text_user'}) ? $self->{'text_user'} : 'Username:' }
658 sub text_pass { my $self = shift; return defined($self->{'text_pass'}) ? $self->{'text_pass'} : 'Password:' }
659 sub text_save { my $self = shift; return defined($self->{'text_save'}) ? $self->{'text_save'} : 'Save Password ?' }
660
661 sub login_script {
662 return q {
663 [%~ IF ! use_plaintext %]
664 <script src="[% md5_js_path %]"></script>
665 <script>
666 if (document.md5_hex) document.[% form_name %].onsubmit = function () {
667 var f = document.[% form_name %];
668 var u = f.[% key_user %].value;
669 var p = f.[% key_pass %].value;
670 var t = f.[% key_time %].value;
671 var s = f.[% key_save %] && f.[% key_save %].checked ? -1 : f.[% key_expires_min %].value;
672 var l = f.[% key_payload %].value;
673 var r = f.[% key_redirect %].value;
674
675 var str = u+'/'+t+'/'+s+'/'+l;
676 var sum = document.md5_hex(str +'/' + document.md5_hex(p));
677 var loc = f.action + '?[% key_user %]='+escape(str +'/'+ sum)+'&[% key_redirect %]='+escape(r);
678
679 location.href = loc;
680 return false;
681 }
682 </script>
683 [% END ~%]
684 };
685 }
686
687 ###----------------------------------------------------------------###
688
689 package CGI::Ex::Auth::Data;
690
691 use strict;
692 use overload
693 'bool' => sub { ! shift->error },
694 '0+' => sub { 1 },
695 '""' => sub { shift->as_string },
696 fallback => 1;
697
698 sub new {
699 my ($class, $args) = @_;
700 return bless {%{ $args || {} }}, $class;
701 }
702
703 sub add_data {
704 my $self = shift;
705 my $args = @_ == 1 ? shift : {@_};
706 @{ $self }{keys %$args} = values %$args;
707 }
708
709 sub error {
710 my $self = shift;
711 if (@_ == 1) {
712 $self->{'error'} = shift;
713 $self->{'error_caller'} = [caller];
714 }
715 return $self->{'error'};
716 }
717
718 sub as_string {
719 my $self = shift;
720 return $self->error || ($self->{'user'} && $self->{'type'}) ? "Valid auth data" : "Unverified auth data";
721 }
722
723 ###----------------------------------------------------------------###
724
725 1;
726
727 __END__
728
729 =head1 SYNOPSIS
730
731 ### authorize the user
732 my $auth = $self->get_valid_auth({
733 get_pass_by_user => \&get_pass_by_user,
734 });
735
736
737 sub get_pass_by_user {
738 my $auth = shift;
739 my $user = shift;
740 my $pass = some_way_of_getting_password($user);
741 return $pass;
742 }
743
744 =head1 DESCRIPTION
745
746 CGI::Ex::Auth allows for auto-expiring, safe and easy web based logins. Auth uses
747 javascript modules that perform MD5 hashing to cram the password on
748 the client side before passing them through the internet.
749
750 For the stored cookie you can choose to use cram mechanisms,
751 secure hash cram tokens, auto expiring logins (not cookie based),
752 and Crypt::Blowfish protection. You can also choose to keep
753 passwords plaintext and to use perl's crypt for testing
754 passwords.
755
756 A downside to this module is that it does not use a session to
757 preserve state so get_pass_by_user has to happen on every request (any
758 authenticated area has to verify authentication each time). A plus is
759 that you don't need to use a session if you don't want to. It is up
760 to the interested reader to add caching to the get_pass_by_user
761 method.
762
763 =head1 METHODS
764
765 =over 4
766
767 =item C<new>
768
769 Constructor. Takes a hashref of properties as arguments.
770
771 Many of the methods which may be overridden in a subclass,
772 or may be passed as properties to the new constuctor such as in the following:
773
774 CGI::Ex::Auth->new({
775 get_pass_by_user => \&my_pass_sub,
776 key_user => 'my_user',
777 key_pass => 'my_pass',
778 login_template => \"<form><input name=my_user ... </form>",
779 });
780
781 The following methods will look for properties of the same name. Each of these will be
782 defined separately.
783
784 cgix
785 cleanup_user
786 cookies
787 expires_min
788 form
789 form_name
790 get_pass_by_user
791 js_uri_path
792 key_cookie
793 key_expires_min
794 key_logout
795 key_pass
796 key_payload
797 key_redirect
798 key_save
799 key_time
800 key_user
801 key_verify
802 login_footer
803 login_form
804 login_header
805 login_script
806 login_template
807 no_cookie_verify
808 path_info
809 script_name
810 secure_hash_keys
811 template_args
812 template_include_path
813 text_user
814 text_pass
815 text_save
816 use_base64
817 use_blowfish
818 use_crypt
819 use_plaintext
820 verify_payload
821 verify_user
822
823 =item C<generate_token>
824
825 Takes either an auth_data object from a auth_data returned by verify_token,
826 or a hashref of arguments.
827
828 Possible arguments are:
829
830 user - the username we are generating the token for
831 real_pass - the password of the user (if use_plaintext is false
832 and use_crypt is false, the password can be an md5sum
833 of the user's password)
834 use_blowfish - indicates that we should use Crypt::Blowfish to protect
835 the generated token. The value of this argument is used
836 as the key. Default is false.
837 use_base64 - indicates that we should use Base64 encoding to protect
838 the generated token. Default is true. Will not be
839 used if use_blowfish is true.
840 use_plaintext - indicates that we should keep the password in plaintext
841 use_crypt - also indicates that we should keep the password in plaintext
842 expires_min - says how many minutes until the generated token expires.
843 Values <= 0 indicate to not ever expire. Used only on cram
844 types.
845 payload - a payload that will be passed to generate_payload and then
846 will be added to cram type tokens. It cannot contain a /.
847 prefer_cram - If the secure_hash_keys method returns keys, and it is a non-plaintext
848 token, generate_token will create a secure_hash_cram. Set
849 this value to true to tell it to use a normal cram. This
850 is generally only useful in testing.
851
852 The following are types of tokens that can be generated by generate_token. Each type includes
853 pseudocode and a sample of a generated that token.
854
855 plaintext:
856 user := "paul"
857 real_pass := "123qwe"
858 token := join("/", user, real_pass);
859
860 use_base64 := 0
861 token == "paul/123qwe"
862
863 use_base64 := 1
864 token == "cGF1bC8xMjNxd2U="
865
866 use_blowfish := "foobarbaz"
867 token == "6da702975190f0fe98a746f0d6514683"
868
869 Notes: This token will be used if either use_plaintext or use_crypt is set.
870 The real_pass can also be the md5_sum of the password. If real_pass is an md5_sum
871 of the password but the get_pass_by_user hook returns the crypt'ed password, the
872 token will not be able to be verified.
873
874 cram:
875 user := "paul"
876 real_pass := "123qwe"
877 server_time := 1148512991 # a time in seconds since epoch
878 expires_min := 6 * 60
879 payload := "something"
880
881 md5_pass := md5_sum(real_pass) # if it isn't already a 32 digit md5 sum
882 str := join("/", user, server_time, expires_min, payload, md5_pass)
883 md5_str := md5(sum_str)
884 token := join("/", user, server_time, expires_min, payload, md5_str)
885
886 use_base64 := 0
887 token == "paul/1148512991/360/something/16d0ba369a4c9781b5981eb89224ce30"
888
889 use_base64 := 1
890 token == "cGF1bC8xMTQ4NTEyOTkxLzM2MC9zb21ldGhpbmcvMTZkMGJhMzY5YTRjOTc4MWI1OTgxZWI4OTIyNGNlMzA="
891
892 Notes: use_blowfish is available as well
893
894 secure_hash_cram:
895 user := "paul"
896 real_pass := "123qwe"
897 server_time := 1148514034 # a time in seconds since epoch
898 expires_min := 6 * 60
899 payload := "something"
900 secure_hash := ["aaaa", "bbbb", "cccc", "dddd"]
901 rand1 := 3 # int(rand(length(secure_hash)))
902 rand2 := 39163 # int(rand(100000))
903
904 md5_pass := md5_sum(real_pass) # if it isn't already a 32 digit md5 sum
905
906 sh_str1 := join(".", "sh", secure_hash[rand1], rand2)
907 sh_str2 := join(".", "sh", rand1, rand2)
908 str := join("/", user, server_time, expires_min, payload, md5_pass, sh_str1)
909 md5_str := md5(sum_str)
910 token := join("/", user, server_time, expires_min, payload, md5_str, sh_str2)
911
912 use_base64 := 0
913 token == "paul/1148514034/360/something/06db2914c9fd4e11499e0652bcf67dae/sh.3.39163"
914
915 Notes: use_blowfish is available as well. The secure_hash keys need to be set in the
916 "secure_hash_keys" property of the CGI::Ex::Auth object.
917
918 =item C<get_valid_auth>
919
920 Performs the core logic. Returns an auth object on successful login.
921 Returns false on errored login (with the details of the error stored in
922 $@). If a false value is returned, execution of the CGI should be halted.
923 get_valid_auth WILL NOT automatically stop execution.
924
925 $auth->get_valid_auth || exit;
926
927 Optionally, the class and a list of arguments may be passed. This will create a
928 new object using the passed arguments, and then run get_valid_auth.
929
930 CGI::Ex::Auth->get_valid_auth({key_user => 'my_user'}) || exit;
931
932 =item C<login_print>
933
934 Called if login errored. Defaults to printing a very basic (but
935 adequate) page loaded from login_template..
936
937 You will want to override it with a template from your own system.
938 The hook that is called will be passed the step to print (currently
939 only "get_login_info" and "no_cookies"), and a hash containing the
940 form variables as well as the following:
941
942 =item C<login_hash_common>
943
944 Passed to the template swapped during login_print.
945
946 %$form, # any keys passed to the login script
947 error # The text "Login Failed" if a login occurred
948 login_data # A login data object if they failed authentication.
949 key_user # $self->key_user, # the username fieldname
950 key_pass # $self->key_pass, # the password fieldname
951 key_time # $self->key_time, # the server time field name
952 key_save # $self->key_save, # the save password checkbox field name
953 key_payload # $self->key_payload, # the payload fieldname
954 key_redirect # $self->key_redirect, # the redirect fieldname
955 form_name # $self->form_name, # the name of the form
956 script_name # $self->script_name, # where the server will post back to
957 path_info # $self->path_info, # $ENV{PATH_INFO} if any
958 md5_js_path # $self->js_uri_path ."/CGI/Ex/md5.js", # script for cramming
959 use_plaintext # $self->use_plaintext, # used to avoid cramming
960 $self->key_user # $data->{'user'}, # the username (if any)
961 $self->key_pass # '', # intentional blankout
962 $self->key_time # $self->server_time, # the server's time
963 $self->key_payload # $data->{'payload'} # the payload (if any)
964 $self->key_expires_min # $self->expires_min # how many minutes crams are valid
965 text_user # $self->text_user # template text Username:
966 text_pass # $self->text_pass # template text Password:
967 text_save # $self->text_save # template text Save Password ?
968
969 =item C<key_logout>
970
971 If the form hash contains a true value in this field name, the current user will
972 be logged out. Default is "cea_logout".
973
974 =item C<key_cookie>
975
976 The name of the auth cookie. Default is "cea_user".
977
978 =item C<key_verify>
979
980 A field name used during a bounce to see if cookies exist. Default is "cea_verify".
981
982 =item C<key_user>
983
984 The form field name used to pass the username. Default is "cea_user".
985
986 =item C<key_pass>
987
988 The form field name used to pass the password. Default is "cea_pass".
989
990 =item C<key_save>
991
992 Works in conjunction with key_expires_min. If key_save is true, then
993 the cookie will be set to be saved for longer than the current session
994 (If it is a plaintext variety it will be given a 20 year life rather
995 than being a session cookie. If it is a cram variety, the expires_min
996 portion of the cram will be set to -1). If it is set to false, the cookie
997 will be available only for the session (If it is a plaintext variety, the cookie
998 will be session based and will be removed on the next loggout. If it is
999 a cram variety then the cookie will only be good for expires_min minutes.
1000
1001 Default is "cea_save".
1002
1003 =item C<key_expires_min>
1004
1005 The name of the form field that contains how long cram type cookies will be valid
1006 if key_save contains a false value.
1007
1008 Default key name is "cea_expires_min". Default field value is 6 * 60 (six hours).
1009
1010 This value will have no effect when use_plaintext or use_crypt is set.
1011
1012 A value of -1 means no expiration.
1013
1014 =item C<failed_sleep>
1015
1016 Number of seconds to sleep if the passed tokens are invalid. Does not apply
1017 if validation failed because of expired tokens. Default value is 0.
1018 Setting to 0 disables any sleeping.
1019
1020 =item C<form_name>
1021
1022 The name of the html login form to attach the javascript to. Default is "cea_form".
1023
1024 =item C<verify_token>
1025
1026 This method verifies the token that was passed either via the form or via cookies.
1027 It will accept plaintext or crammed tokens (A listing of the available algorithms
1028 for creating tokes is listed below). It also allows for armoring the token with
1029 base64 encoding, or using blowfish encryption. A listing of creating these tokens
1030 can be found under generate_token.
1031
1032 =item C<cleanup_user>
1033
1034 Called by verify_token. Default is to do no modification. Allows for usernames to
1035 be lowercased, or canonized in some other way. Should return the cleaned username.
1036
1037 =item C<verify_user>
1038
1039 Called by verify_token. Single argument is the username. May or may not be an
1040 initial check to see if the username is ok. The username will already be cleaned at
1041 this point. Default return is true.
1042
1043 =item C<get_pass_by_user>
1044
1045 Called by verify_token. Given the cleaned, verified username, should return a
1046 valid password for the user. It can always return plaintext. If use_crypt is
1047 enabled, it should return the crypted password. If use_plaintext and use_crypt
1048 are not enabled, it may return the md5 sum of the password.
1049
1050 get_pass_by_user => sub {
1051 my ($auth_obj, $user) = @_;
1052 return $some_obj->get_pass({user => $user});
1053 }
1054
1055 Alternately, get_pass_by_user may return a hashref of data items that
1056 will be added to the data object if the token is valid. The hashref
1057 must also contain a key named real_pass or password that contains the
1058 password. Note that keys passed back in the hashref that are already
1059 in the data object will override those in the data object.
1060
1061 get_pass_by_user => sub {
1062 my ($auth_obj, $user) = @_;
1063 my ($pass, $user_id) = $some_obj->get_pass({user => $user});
1064 return {
1065 password => $pass,
1066 user_id => $user_id,
1067 };
1068 }
1069
1070 =item C<cgix>
1071
1072 Returns a CGI::Ex object.
1073
1074 =item C<form>
1075
1076 A hash of passed form info. Defaults to CGI::Ex::get_form.
1077
1078 =item C<cookies>
1079
1080 The current cookies. Defaults to CGI::Ex::get_cookies.
1081
1082 =item C<login_template>
1083
1084 Should return either a template filename to use for the login template, or it
1085 should return a reference to a string that contains the template. The contents
1086 will be used in login_print and passed to the template engine.
1087
1088 Default login_template is the values of login_header, login_form, login_script, and
1089 login_script concatenated together.
1090
1091 Values from login_hash_common will be passed to the template engine, and will
1092 also be used to fill in the form.
1093
1094 The basic values are capable of handling most needs so long as appropriate
1095 headers and css styles are used.
1096
1097 =item C<login_header>
1098
1099 Should return a header to use in the default login_template. The default
1100 value will try to PROCESS a file called login_header.tt that should be
1101 located in directory specified by the template_include_path method.
1102
1103 It should ideally supply css styles that format the login_form as desired.
1104
1105 =item C<login_footer>
1106
1107 Same as login_header - but for the footer. Will look for login_footer.tt by
1108 default.
1109
1110 =item C<login_form>
1111
1112 An html chunk that contains the necessary form fields to login the user. The
1113 basic chunk has a username text entry, password text entry, save password checkbox,
1114 and submit button, and any hidden fields necessary for logging in the user.
1115
1116 =item C<login_script>
1117
1118 Contains javascript that will attach to the form from login_form. This script
1119 is capable of taking the login_fields and creating an md5 cram which prevents
1120 the password from being passed plaintext.
1121
1122 =item C<text_user, text_pass, text_save>
1123
1124 The text items shown in the default login template. The default values are:
1125
1126 text_user "Username:"
1127 text_pass "Password:"
1128 text_save "Save Password ?"
1129
1130 =back
1131
1132 =head1 AUTHORS
1133
1134 Paul Seamons <paul at seamons dot com>
1135
1136 =cut
This page took 0.109515 seconds and 3 git commands to generate.