various changes to C::P::Session, including clear_flash
[catagits/Catalyst-Plugin-Session.git] / lib / Catalyst / Plugin / Session.pm
1 #!/usr/bin/perl
2
3 package Catalyst::Plugin::Session;
4 use base qw/Class::Accessor::Fast/;
5
6 use strict;
7 use warnings;
8
9 use NEXT;
10 use Catalyst::Exception ();
11 use Digest              ();
12 use overload            ();
13 use Object::Signature   ();
14
15 our $VERSION = "0.12";
16
17 my @session_data_accessors; # used in delete_session
18 BEGIN {
19     __PACKAGE__->mk_accessors(
20         "_session_delete_reason",
21         @session_data_accessors = qw/
22           _sessionid
23           _session
24           _session_expires
25           _extended_session_expires
26           _session_data_sig
27           _flash
28           _flash_keep_keys
29           _flash_key_hashes
30           _tried_loading_session_id
31           _tried_loading_session_data
32           _tried_loading_session_expires
33           _tried_loading_flash_data
34           /
35     );
36 }
37
38 sub setup {
39     my $c = shift;
40
41     $c->NEXT::setup(@_);
42
43     $c->check_session_plugin_requirements;
44     $c->setup_session;
45
46     return $c;
47 }
48
49 sub check_session_plugin_requirements {
50     my $c = shift;
51
52     unless ( $c->isa("Catalyst::Plugin::Session::State")
53         && $c->isa("Catalyst::Plugin::Session::Store") )
54     {
55         my $err =
56           (     "The Session plugin requires both Session::State "
57               . "and Session::Store plugins to be used as well." );
58
59         $c->log->fatal($err);
60         Catalyst::Exception->throw($err);
61     }
62 }
63
64 sub setup_session {
65     my $c = shift;
66
67     my $cfg = ( $c->config->{session} ||= {} );
68
69     %$cfg = (
70         expires        => 7200,
71         verify_address => 1,
72         %$cfg,
73     );
74
75     $c->NEXT::setup_session();
76 }
77
78 sub prepare_action {
79     my $c = shift;
80
81     if (    $c->config->{session}{flash_to_stash}
82         and $c->sessionid
83         and my $flash_data = $c->flash )
84     {
85         @{ $c->stash }{ keys %$flash_data } = values %$flash_data;
86     }
87
88     $c->NEXT::prepare_action(@_);
89 }
90
91 sub finalize {
92     my $c = shift;
93
94     $c->finalize_session;
95     
96     $c->NEXT::finalize(@_);
97 }
98
99 sub finalize_session {
100     my $c = shift;
101
102     $c->NEXT::finalize_session;
103
104     $c->_save_session_id;
105     $c->_save_session;
106     $c->_save_flash;
107     $c->_save_session_expires;
108
109     $c->_clear_session_instance_data;
110 }
111
112 sub _save_session_id {
113     my $c = shift;
114
115     # we already called set when allocating
116     # no need to tell the state plugins anything new
117 }
118
119 sub _save_session_expires {
120     my $c = shift;
121
122     if ( defined($c->_session_expires) ) {
123         my $expires = $c->session_expires; # force extension
124
125         my $sid = $c->sessionid;
126         $c->store_session_data( "expires:$sid" => $expires );
127     }
128 }
129
130 sub _save_session {
131     my $c = shift;
132
133     if ( my $session_data = $c->_session ) {
134
135         no warnings 'uninitialized';
136         if ( Object::Signature::signature($session_data) ne
137             $c->_session_data_sig )
138         {
139             $session_data->{__updated} = time();
140             my $sid = $c->sessionid;
141             $c->store_session_data( "session:$sid" => $session_data );
142         }
143     }
144 }
145
146 sub _save_flash {
147     my $c = shift;
148
149     if ( my $flash_data = $c->_flash ) {
150
151         my $hashes = $c->_flash_key_hashes || {};
152         my $keep = $c->_flash_keep_keys || {};
153         foreach my $key ( keys %$hashes ) {
154             if ( !exists $keep->{$key} and Object::Signature::signature( \$flash_data->{$key} ) eq $hashes->{$key} ) {
155                 delete $flash_data->{$key};
156             }
157         }
158         
159         my $sid = $c->sessionid;
160
161         if (%$flash_data) {
162             $c->store_session_data( "flash:$sid", $flash_data );
163         }
164         else {
165             $c->delete_session_data("flash:$sid");
166         }
167     }
168 }
169
170 sub _load_session_expires {
171     my $c = shift;
172     return $c->_session_expires if $c->_tried_loading_session_expires;
173     $c->_tried_loading_session_expires(1);
174
175     if ( my $sid = $c->sessionid ) {
176         my $expires = $c->get_session_data("expires:$sid") || 0;
177
178         if ( $expires >= time() ) {
179             $c->_session_expires( $expires );
180             return $expires;
181         } else {
182             $c->delete_session( "session expired" );
183             return 0;
184         }
185     }
186
187     return;
188 }
189
190 sub _load_session {
191     my $c = shift;
192     return $c->_session if $c->_tried_loading_session_data;
193     $c->_tried_loading_session_data(1);
194
195     if ( my $sid = $c->sessionid ) {
196         if ( $c->_load_session_expires ) {    # > 0
197
198             my $session_data = $c->get_session_data("session:$sid") || return;
199             $c->_session($session_data);
200
201             no warnings 'uninitialized';    # ne __address
202             if (   $c->config->{session}{verify_address}
203                 && $session_data->{__address} ne $c->request->address )
204             {
205                 $c->log->warn(
206                         "Deleting session $sid due to address mismatch ("
207                       . $session_data->{__address} . " != "
208                       . $c->request->address . ")"
209                 );
210                 $c->delete_session("address mismatch");
211                 return;
212             }
213
214             $c->log->debug(qq/Restored session "$sid"/) if $c->debug;
215             $c->_session_data_sig( Object::Signature::signature($session_data) ) if $session_data;
216             $c->_expire_session_keys;
217
218             return $session_data;
219         }
220     }
221
222     return;
223 }
224
225 sub _load_flash {
226     my $c = shift;
227     return $c->_flash if $c->_tried_loading_flash_data;
228     $c->_tried_loading_flash_data(1);
229
230     if ( my $sid = $c->sessionid ) {
231         if ( my $flash_data = $c->_flash
232             || $c->_flash( $c->get_session_data("flash:$sid") ) )
233         {
234             $c->_flash_key_hashes({ map { $_ => Object::Signature::signature( \$flash_data->{$_} ) } keys %$flash_data });
235             
236             return $flash_data;
237         }
238     }
239
240     return;
241 }
242
243 sub _expire_session_keys {
244     my ( $c, $data ) = @_;
245
246     my $now = time;
247
248     my $expire_times = ( $data || $c->_session || {} )->{__expire_keys} || {};
249     foreach my $key ( grep { $expire_times->{$_} < $now } keys %$expire_times ) {
250         delete $c->_session->{$key};
251         delete $expire_times->{$key};
252     }
253 }
254
255 sub _clear_session_instance_data {
256     my $c = shift;
257     $c->$_(undef) for @session_data_accessors;
258     $c->NEXT::_clear_session_instance_data; # allow other plugins to hook in on this
259 }
260
261 sub delete_session {
262     my ( $c, $msg ) = @_;
263
264     $c->log->debug("Deleting session" . ( defined($msg) ? "($msg)" : '(no reason given)') ) if $c->debug;
265
266     # delete the session data
267     if ( my $sid = $c->sessionid ) {
268         $c->delete_session_data("${_}:${sid}") for qw/session expires flash/;
269         $c->delete_session_id($sid);
270     }
271
272     # reset the values in the context object
273     # see the BEGIN block
274     $c->_clear_session_instance_data;
275
276     $c->_session_delete_reason($msg);
277 }
278
279 sub session_delete_reason {
280     my $c = shift;
281
282     $c->session_is_valid; # check that it was loaded
283
284     $c->_session_delete_reason(@_);
285 }
286
287 sub session_expires {
288     my $c = shift;
289
290     if ( defined( my $expires = $c->_extended_session_expires ) ) {
291         return $expires;
292     } elsif ( defined( $expires = $c->_load_session_expires ) ) {
293         return $c->extend_session_expires( $expires );
294     } else {
295         return 0;
296     }
297 }
298
299 sub extend_session_expires {
300     my ( $c, $expires ) = @_;
301     $c->_extended_session_expires( my $updated = $c->calculate_extended_session_expires( $expires ) );
302     $c->extend_session_id( $c->sessionid, $updated );
303     return $updated;
304 }
305
306 sub calculate_initial_session_expires {
307     my $c = shift;
308     return ( time() + $c->config->{session}{expires} );
309 }
310
311 sub calculate_extended_session_expires {
312     my ( $c, $prev ) = @_;
313     $c->calculate_initial_session_expires;
314 }
315
316 sub reset_session_expires {
317     my ( $c, $sid ) = @_;
318     
319     my $exp = $c->calculate_initial_session_expires;
320     $c->_session_expires( $exp );
321     $c->_extended_session_expires( $exp );
322     $exp;
323 }
324
325 sub sessionid {
326     my $c = shift;
327     
328     return $c->_sessionid || $c->_load_sessionid;
329 }
330
331 sub _load_sessionid {
332     my $c = shift;
333     return if $c->_tried_loading_session_id;
334     $c->_tried_loading_session_id(1);
335
336     if ( defined( my $sid = $c->get_session_id ) ) {
337         if ( $c->validate_session_id($sid) ) {
338             # temporarily set the inner key, so that validation will work
339             $c->_sessionid($sid);
340             return $sid;
341         } else {
342             my $err = "Tried to set invalid session ID '$sid'";
343             $c->log->error($err);
344             Catalyst::Exception->throw($err);
345         }
346     }
347
348     return;
349 }
350
351 sub session_is_valid {
352     my $c = shift;
353
354     # force a check for expiry, but also __address, etc
355     if ( $c->_load_session ) {
356         return 1;
357     } else {
358         return;
359     }
360 }
361
362 sub validate_session_id {
363     my ( $c, $sid ) = @_;
364
365     $sid and $sid =~ /^[a-f\d]+$/i;
366 }
367
368 sub session {
369     my $c = shift;
370
371     $c->_session || $c->_load_session || do {
372         $c->create_session_id_if_needed;
373         $c->initialize_session_data;
374     };
375 }
376
377 sub keep_flash {
378     my ( $c, @keys ) = @_;
379     my $href = $c->_flash_keep_keys || $c->_flash_keep_keys({});
380     (@{$href}{@keys}) = ((undef) x @keys);
381 }
382
383 sub flash {
384     my $c = shift;
385     $c->_flash || $c->_load_flash || do {
386         $c->create_session_id_if_needed;
387         $c->_flash( {} );
388     }
389 }
390
391 sub clear_flash {
392     my $c = shift;
393     $c->_flash_key_hashes({});
394     $c->_flash({});
395 }
396
397 sub session_expire_key {
398     my ( $c, %keys ) = @_;
399
400     my $now = time;
401     @{ $c->session->{__expire_keys} }{ keys %keys } =
402       map { $now + $_ } values %keys;
403 }
404
405 sub initialize_session_data {
406     my $c = shift;
407
408     my $now = time;
409
410     return $c->_session(
411         {
412             __created => $now,
413             __updated => $now,
414
415             (
416                 $c->config->{session}{verify_address}
417                 ? ( __address => $c->request->address )
418                 : ()
419             ),
420         }
421     );
422 }
423
424 sub generate_session_id {
425     my $c = shift;
426
427     my $digest = $c->_find_digest();
428     $digest->add( $c->session_hash_seed() );
429     return $digest->hexdigest;
430 }
431
432 sub create_session_id_if_needed {
433     my $c = shift;
434     $c->create_session_id unless $c->sessionid;
435 }
436
437 sub create_session_id {
438     my $c = shift;
439     
440     my $sid = $c->generate_session_id;
441
442     $c->log->debug(qq/Created session "$sid"/) if $c->debug;
443
444     $c->_sessionid($sid);
445     $c->reset_session_expires;
446     $c->set_session_id($sid);
447
448     return $sid;
449 }
450
451 my $counter;
452
453 sub session_hash_seed {
454     my $c = shift;
455
456     return join( "", ++$counter, time, rand, $$, {}, overload::StrVal($c), );
457 }
458
459 my $usable;
460
461 sub _find_digest () {
462     unless ($usable) {
463         foreach my $alg (qw/SHA-1 SHA-256 MD5/) {
464             if ( eval { Digest->new($alg) } ) {
465                 $usable = $alg;
466                 last;
467             }
468         }
469         Catalyst::Exception->throw(
470                 "Could not find a suitable Digest module. Please install "
471               . "Digest::SHA1, Digest::SHA, or Digest::MD5" )
472           unless $usable;
473     }
474
475     return Digest->new($usable);
476 }
477
478 sub dump_these {
479     my $c = shift;
480
481     (
482         $c->NEXT::dump_these(),
483
484         $c->sessionid
485         ? ( [ "Session ID" => $c->sessionid ], [ Session => $c->session ], )
486         : ()
487     );
488 }
489
490
491 sub get_session_id { shift->NEXT::get_session_id(@_) }
492 sub set_session_id { shift->NEXT::set_session_id(@_) }
493 sub delete_session_id { shift->NEXT::delete_session_id(@_) }
494 sub extend_session_id { shift->NEXT::extend_session_id(@_) }
495
496 __PACKAGE__;
497
498 __END__
499
500 =pod
501
502 =head1 NAME
503
504 Catalyst::Plugin::Session - Generic Session plugin - ties together server side
505 storage and client side state required to maintain session data.
506
507 =head1 SYNOPSIS
508
509     # To get sessions to "just work", all you need to do is use these plugins:
510
511     use Catalyst qw/
512       Session
513       Session::Store::FastMmap
514       Session::State::Cookie
515       /;
516
517         # you can replace Store::FastMmap with Store::File - both have sensible
518         # default configurations (see their docs for details)
519
520         # more complicated backends are available for other scenarios (DBI storage,
521         # etc)
522
523
524     # after you've loaded the plugins you can save session data
525     # For example, if you are writing a shopping cart, it could be implemented
526     # like this:
527
528     sub add_item : Local {
529         my ( $self, $c ) = @_;
530
531         my $item_id = $c->req->param("item");
532
533         # $c->session is a hash ref, a bit like $c->stash
534         # the difference is that it' preserved across requests
535
536         push @{ $c->session->{items} }, $item_id;
537
538         $c->forward("MyView");
539     }
540
541     sub display_items : Local {
542         my ( $self, $c ) = @_;
543
544         # values in $c->session are restored
545         $c->stash->{items_to_display} =
546           [ map { MyModel->retrieve($_) } @{ $c->session->{items} } ];
547
548         $c->forward("MyView");
549     }
550
551 =head1 DESCRIPTION
552
553 The Session plugin is the base of two related parts of functionality required
554 for session management in web applications.
555
556 The first part, the State, is getting the browser to repeat back a session key,
557 so that the web application can identify the client and logically string
558 several requests together into a session.
559
560 The second part, the Store, deals with the actual storage of information about
561 the client. This data is stored so that the it may be revived for every request
562 made by the same client.
563
564 This plugin links the two pieces together.
565
566 =head1 RECCOMENDED BACKENDS
567
568 =over 4
569
570 =item Session::State::Cookie
571
572 The only really sane way to do state is using cookies.
573
574 =item Session::Store::File
575
576 A portable backend, based on Cache::File.
577
578 =item Session::Store::FastMmap
579
580 A fast and flexible backend, based on Cache::FastMmap.
581
582 =back
583
584 =head1 METHODS
585
586 =over 4
587
588 =item sessionid
589
590 An accessor for the session ID value.
591
592 =item session
593
594 Returns a hash reference that might contain unserialized values from previous
595 requests in the same session, and whose modified value will be saved for future
596 requests.
597
598 This method will automatically create a new session and session ID if none
599 exists.
600
601 =item session_expires
602
603 =item session_expires $reset
604
605 This method returns the time when the current session will expire, or 0 if
606 there is no current session. If there is a session and it already expired, it
607 will delete the session and return 0 as well.
608
609 If the C<$reset> parameter is true, and there is a session ID the expiry time
610 will be reset to the current time plus the time to live (see
611 L</CONFIGURATION>). This is used when creating a new session.
612
613 =item flash
614
615 This is like Ruby on Rails' flash data structure. Think of it as a stash that
616 lasts for longer than one request, letting you redirect instead of forward.
617
618 The flash data will be cleaned up only on requests on which actually use
619 $c->flash (thus allowing multiple redirections), and the policy is to delete
620 all the keys which haven't changed since the flash data was loaded at the end
621 of every request.
622
623     sub moose : Local {
624         my ( $self, $c ) = @_;
625
626         $c->flash->{beans} = 10;
627         $c->response->redirect( $c->uri_for("foo") );
628     }
629
630     sub foo : Local {
631         my ( $self, $c ) = @_;
632
633         my $value = $c->flash->{beans};
634
635         # ...
636
637         $c->response->redirect( $c->uri_for("bar") );
638     }
639
640     sub bar : Local {
641         my ( $self, $c ) = @_;
642
643         if ( exists $c->flash->{beans} ) { # false
644         
645         }
646     }
647
648 =item clear_flash
649
650 Zap all the keys in the flash regardless of their current state.
651
652 =item keep_flash @keys
653
654 If you wawnt to keep a flash key for the next request too, even if it hasn't
655 changed, call C<keep_flash> and pass in the keys as arguments.
656
657 =item delete_session REASON
658
659 This method is used to invalidate a session. It takes an optional parameter
660 which will be saved in C<session_delete_reason> if provided.
661
662 =item session_delete_reason
663
664 This accessor contains a string with the reason a session was deleted. Possible
665 values include:
666
667 =over 4
668
669 =item *
670
671 C<address mismatch>
672
673 =item *
674
675 C<session expired>
676
677 =back
678
679 =item session_expire_key $key, $ttl
680
681 Mark a key to expire at a certain time (only useful when shorter than the
682 expiry time for the whole session).
683
684 For example:
685
686     __PACKAGE__->config->{session}{expires} = 1000000000000; # forever
687
688     # later
689
690     $c->session_expire_key( __user => 3600 );
691
692 Will make the session data survive, but the user will still be logged out after
693 an hour.
694
695 Note that these values are not auto extended.
696
697 =back
698
699 =head1 INTERNAL METHODS
700
701 =over 4
702
703 =item setup
704
705 This method is extended to also make calls to
706 C<check_session_plugin_requirements> and C<setup_session>.
707
708 =item check_session_plugin_requirements
709
710 This method ensures that a State and a Store plugin are also in use by the
711 application.
712
713 =item setup_session
714
715 This method populates C<< $c->config->{session} >> with the default values
716 listed in L</CONFIGURATION>.
717
718 =item prepare_action
719
720 This methoid is extended.
721
722 It's only effect is if the (off by default) C<flash_to_stash> configuration
723 parameter is on - then it will copy the contents of the flash to the stash at
724 prepare time.
725
726 =item finalize
727
728 This method is extended and will extend the expiry time, as well as persist the
729 session data if a session exists.
730
731 =item initialize_session_data
732
733 This method will initialize the internal structure of the session, and is
734 called by the C<session> method if appropriate.
735
736 =item create_session_id
737
738 Creates a new session id using C<generate_session_id> if there is no session ID
739 yet.
740
741 =item validate_session_id SID
742
743 Make sure a session ID is of the right format.
744
745 This currently ensures that the session ID string is any amount of case
746 insensitive hexadecimal characters.
747
748 =item generate_session_id
749
750 This method will return a string that can be used as a session ID. It is
751 supposed to be a reasonably random string with enough bits to prevent
752 collision. It basically takes C<session_hash_seed> and hashes it using SHA-1,
753 MD5 or SHA-256, depending on the availibility of these modules.
754
755 =item session_hash_seed
756
757 This method is actually rather internal to generate_session_id, but should be
758 overridable in case you want to provide more random data.
759
760 Currently it returns a concatenated string which contains:
761
762 =over 4
763
764 =item *
765
766 A counter
767
768 =item *
769
770 The current time
771
772 =item *
773
774 One value from C<rand>.
775
776 =item *
777
778 The stringified value of a newly allocated hash reference
779
780 =item *
781
782 The stringified value of the Catalyst context object
783
784 =back
785
786 In the hopes that those combined values are entropic enough for most uses. If
787 this is not the case you can replace C<session_hash_seed> with e.g.
788
789     sub session_hash_seed {
790         open my $fh, "<", "/dev/random";
791         read $fh, my $bytes, 20;
792         close $fh;
793         return $bytes;
794     }
795
796 Or even more directly, replace C<generate_session_id>:
797
798     sub generate_session_id {
799         open my $fh, "<", "/dev/random";
800         read $fh, my $bytes, 20;
801         close $fh;
802         return unpack("H*", $bytes);
803     }
804
805 Also have a look at L<Crypt::Random> and the various openssl bindings - these
806 modules provide APIs for cryptographically secure random data.
807
808 =item finalize_session
809
810 Clean up the session during C<finalize>.
811
812 This clears the various accessors after saving to the store.
813
814 =item dump_these
815
816 See L<Catalyst/dump_these> - ammends the session data structure to the list of
817 dumped objects if session ID is defined.
818
819 =back
820
821 =head1 USING SESSIONS DURING PREPARE
822
823 The earliest point in time at which you may use the session data is after
824 L<Catalyst::Plugin::Session>'s C<prepare_action> has finished.
825
826 State plugins must set $c->session ID before C<prepare_action>, and during
827 C<prepare_action> L<Catalyst::Plugin::Session> will actually load the data from
828 the store.
829
830         sub prepare_action {
831                 my $c = shift;
832
833                 # don't touch $c->session yet!
834
835                 $c->NEXT::prepare_action( @_ );
836
837                 $c->session;  # this is OK
838                 $c->sessionid; # this is also OK
839         }
840
841 =head1 CONFIGURATION
842
843     $c->config->{session} = {
844         expires => 1234,
845     };
846
847 All configuation parameters are provided in a hash reference under the
848 C<session> key in the configuration hash.
849
850 =over 4
851
852 =item expires
853
854 The time-to-live of each session, expressed in seconds. Defaults to 7200 (two
855 hours).
856
857 =item verify_address
858
859 When true, C<<$c->request->address>> will be checked at prepare time. If it is
860 not the same as the address that initiated the session, the session is deleted.
861
862 =item flash_to_stash
863
864 This option makes it easier to have actions behave the same whether they were
865 forwarded to or redirected to. On prepare time it copies the contents of
866 C<flash> (if any) to the stash.
867
868 =back
869
870 =head1 SPECIAL KEYS
871
872 The hash reference returned by C<< $c->session >> contains several keys which
873 are automatically set:
874
875 =over 4
876
877 =item __expires
878
879 This key no longer exists. Use C<session_expires> instead.
880
881 =item __updated
882
883 The last time a session was saved to the store.
884
885 =item __created
886
887 The time when the session was first created.
888
889 =item __address
890
891 The value of C<< $c->request->address >> at the time the session was created.
892 This value is only populated if C<verify_address> is true in the configuration.
893
894 =back
895
896 =head1 CAVEATS
897
898 =head2 Round the Robin Proxies
899
900 C<verify_address> could make your site inaccessible to users who are behind
901 load balanced proxies. Some ISPs may give a different IP to each request by the
902 same client due to this type of proxying. If addresses are verified these
903 users' sessions cannot persist.
904
905 To let these users access your site you can either disable address verification
906 as a whole, or provide a checkbox in the login dialog that tells the server
907 that it's OK for the address of the client to change. When the server sees that
908 this box is checked it should delete the C<__address> sepcial key from the
909 session hash when the hash is first created.
910
911 =head2 Race Conditions
912
913 In this day and age where cleaning detergents and dutch football (not the
914 american kind) teams roam the plains in great numbers, requests may happen
915 simultaneously. This means that there is some risk of session data being
916 overwritten, like this:
917
918 =over 4
919
920 =item 1.
921
922 request a starts, request b starts, with the same session id
923
924 =item 2.
925
926 session data is loaded in request a
927
928 =item 3.
929
930 session data is loaded in request b
931
932 =item 4.
933
934 session data is changed in request a
935
936 =item 5.
937
938 request a finishes, session data is updated and written to store
939
940 =item 6.
941
942 request b finishes, session data is updated and written to store, overwriting
943 changes by request a
944
945 =back
946
947 If this is a concern in your application, a soon to be developed locking
948 solution is the only safe way to go. This will have a bigger overhead.
949
950 For applications where any given user is only making one request at a time this
951 plugin should be safe enough.
952
953 =head1 AUTHORS
954
955 =over 4
956
957 =item Andy Grundman
958
959 =item Christian Hansen
960
961 =item Yuval Kogman, C<nothingmuch@woobling.org> (current maintainer)
962
963 =item Sebastian Riedel
964
965 =back
966
967 And countless other contributers from #catalyst. Thanks guys!
968
969 =head1 COPYRIGHT & LICENSE
970
971         Copyright (c) 2005 the aforementioned authors. All rights
972         reserved. This program is free software; you can redistribute
973         it and/or modify it under the same terms as Perl itself.
974
975 =cut
976
977