Fixed bug with updating session when expiry_threshold is set
[catagits/Catalyst-Plugin-Session.git] / lib / Catalyst / Plugin / Session.pm
1 #!/usr/bin/perl
2
3 package Catalyst::Plugin::Session;
4
5 use Moose;
6 with 'MooseX::Emulate::Class::Accessor::Fast';
7 use MRO::Compat;
8 use Catalyst::Exception ();
9 use Digest              ();
10 use overload            ();
11 use Object::Signature   ();
12 use Carp;
13 use List::Util qw/ max /;
14
15 use namespace::clean -except => 'meta';
16
17 our $VERSION = '0.38';
18 $VERSION = eval $VERSION;
19
20 my @session_data_accessors; # used in delete_session
21
22 __PACKAGE__->mk_accessors(
23         "_session_delete_reason",
24         @session_data_accessors = qw/
25           _sessionid
26           _session
27           _session_expires
28           _extended_session_expires
29           _session_data_sig
30           _flash
31           _flash_keep_keys
32           _flash_key_hashes
33           _tried_loading_session_id
34           _tried_loading_session_data
35           _tried_loading_session_expires
36           _tried_loading_flash_data
37           /
38 );
39
40 sub _session_plugin_config {
41     my $c = shift;
42     # FIXME - Start warning once all the state/store modules have also been updated.
43     #$c->log->warn("Deprecated 'session' config key used, please use the key 'Plugin::Session' instead")
44     #    if exists $c->config->{session}
45     #$c->config->{'Plugin::Session'} ||= delete($c->config->{session}) || {};
46     $c->config->{'Plugin::Session'} ||= $c->config->{session} || {};
47 }
48
49 sub setup {
50     my $c = shift;
51
52     $c->maybe::next::method(@_);
53
54     $c->check_session_plugin_requirements;
55     $c->setup_session;
56
57     return $c;
58 }
59
60 sub check_session_plugin_requirements {
61     my $c = shift;
62
63     unless ( $c->isa("Catalyst::Plugin::Session::State")
64         && $c->isa("Catalyst::Plugin::Session::Store") )
65     {
66         my $err =
67           (     "The Session plugin requires both Session::State "
68               . "and Session::Store plugins to be used as well." );
69
70         $c->log->fatal($err);
71         Catalyst::Exception->throw($err);
72     }
73 }
74
75 sub setup_session {
76     my $c = shift;
77
78     my $cfg = $c->_session_plugin_config;
79
80     %$cfg = (
81         expires        => 7200,
82         verify_address => 0,
83         verify_user_agent => 0,
84         expiry_threshold => 0,
85         %$cfg,
86     );
87
88     $c->maybe::next::method();
89 }
90
91 sub prepare_action {
92     my $c = shift;
93
94     $c->maybe::next::method(@_);
95
96     if (    $c->_session_plugin_config->{flash_to_stash}
97         and $c->sessionid
98         and my $flash_data = $c->flash )
99     {
100         @{ $c->stash }{ keys %$flash_data } = values %$flash_data;
101     }
102 }
103
104 sub finalize_headers {
105     my $c = shift;
106
107     # fix cookie before we send headers
108     $c->_save_session_expires;
109
110     # Force extension of session_expires before finalizing headers, so a pos
111     # up to date. First call to session_expires will extend the expiry, subs
112     # just return the previously extended value.
113     $c->session_expires;
114
115     return $c->maybe::next::method(@_);
116 }
117
118 sub finalize_body {
119     my $c = shift;
120
121     # We have to finalize our session *before* $c->engine->finalize_xxx is called,
122     # because we do not want to send the HTTP response before the session is stored/committed to
123     # the session database (or whatever Session::Store you use).
124     $c->finalize_session;
125
126     return $c->maybe::next::method(@_);
127 }
128
129 sub finalize_session {
130     my $c = shift;
131
132     $c->maybe::next::method(@_);
133
134     $c->_save_session_id;
135     $c->_save_session;
136     $c->_save_flash;
137
138     $c->_clear_session_instance_data;
139 }
140
141 sub _session_updated {
142     my $c = shift;
143
144     if ( my $session_data = $c->_session ) {
145
146         no warnings 'uninitialized';
147         if ( Object::Signature::signature($session_data) ne
148             $c->_session_data_sig )
149         {
150             return $session_data;
151         } else {
152             return;
153         }
154
155     } else {
156
157         return;
158
159     }
160 }
161
162 sub _save_session_id {
163     my $c = shift;
164
165     # we already called set when allocating
166     # no need to tell the state plugins anything new
167 }
168
169 sub _save_session_expires {
170     my $c = shift;
171
172     if ( defined($c->_session_expires) ) {
173
174         if (my $sid = $c->sessionid) {
175
176             my $current  = $c->_get_stored_session_expires;
177             my $extended = $c->session_expires;
178             if ($extended > $current) {
179                 $c->store_session_data( "expires:$sid" => $extended );
180             }
181
182         }
183     }
184 }
185
186 sub _save_session {
187     my $c = shift;
188
189     if ( my $session_data = $c->_session_updated ) {
190
191         $session_data->{__updated} = time();
192         my $sid = $c->sessionid;
193         $c->store_session_data( "session:$sid" => $session_data );
194     }
195 }
196
197 sub _save_flash {
198     my $c = shift;
199
200     if ( my $flash_data = $c->_flash ) {
201
202         my $hashes = $c->_flash_key_hashes || {};
203         my $keep = $c->_flash_keep_keys || {};
204         foreach my $key ( keys %$hashes ) {
205             if ( !exists $keep->{$key} and Object::Signature::signature( \$flash_data->{$key} ) eq $hashes->{$key} ) {
206                 delete $flash_data->{$key};
207             }
208         }
209
210         my $sid = $c->sessionid;
211
212         my $session_data = $c->_session;
213         if (%$flash_data) {
214             $session_data->{__flash} = $flash_data;
215         }
216         else {
217             delete $session_data->{__flash};
218         }
219         $c->_session($session_data);
220         $c->_save_session;
221     }
222 }
223
224 sub _load_session_expires {
225     my $c = shift;
226     return $c->_session_expires if $c->_tried_loading_session_expires;
227     $c->_tried_loading_session_expires(1);
228
229     if ( my $sid = $c->sessionid ) {
230         my $expires =  $c->_get_stored_session_expires;
231
232         if ( $expires >= time() ) {
233             $c->_session_expires( $expires );
234             return $expires;
235         } else {
236             $c->delete_session( "session expired" );
237             return 0;
238         }
239     }
240
241     return;
242 }
243
244 sub _load_session {
245     my $c = shift;
246     return $c->_session if $c->_tried_loading_session_data;
247     $c->_tried_loading_session_data(1);
248
249     if ( my $sid = $c->sessionid ) {
250         if ( $c->_load_session_expires ) {    # > 0
251
252             my $session_data = $c->get_session_data("session:$sid") || return;
253             $c->_session($session_data);
254
255             no warnings 'uninitialized';    # ne __address
256             if (   $c->_session_plugin_config->{verify_address}
257                 && exists $session_data->{__address}
258                 && $session_data->{__address} ne $c->request->address )
259             {
260                 $c->log->warn(
261                         "Deleting session $sid due to address mismatch ("
262                       . $session_data->{__address} . " != "
263                       . $c->request->address . ")"
264                 );
265                 $c->delete_session("address mismatch");
266                 return;
267             }
268             if (   $c->_session_plugin_config->{verify_user_agent}
269                 && $session_data->{__user_agent} ne $c->request->user_agent )
270             {
271                 $c->log->warn(
272                         "Deleting session $sid due to user agent mismatch ("
273                       . $session_data->{__user_agent} . " != "
274                       . $c->request->user_agent . ")"
275                 );
276                 $c->delete_session("user agent mismatch");
277                 return;
278             }
279
280             $c->log->debug(qq/Restored session "$sid"/) if $c->debug;
281             $c->_session_data_sig( Object::Signature::signature($session_data) ) if $session_data;
282             $c->_expire_session_keys;
283
284             return $session_data;
285         }
286     }
287
288     return;
289 }
290
291 sub _load_flash {
292     my $c = shift;
293     return $c->_flash if $c->_tried_loading_flash_data;
294     $c->_tried_loading_flash_data(1);
295
296     if ( my $sid = $c->sessionid ) {
297
298         my $session_data = $c->session;
299         $c->_flash($session_data->{__flash});
300
301         if ( my $flash_data = $c->_flash )
302         {
303             $c->_flash_key_hashes({ map { $_ => Object::Signature::signature( \$flash_data->{$_} ) } keys %$flash_data });
304
305             return $flash_data;
306         }
307     }
308
309     return;
310 }
311
312 sub _expire_session_keys {
313     my ( $c, $data ) = @_;
314
315     my $now = time;
316
317     my $expire_times = ( $data || $c->_session || {} )->{__expire_keys} || {};
318     foreach my $key ( grep { $expire_times->{$_} < $now } keys %$expire_times ) {
319         delete $c->_session->{$key};
320         delete $expire_times->{$key};
321     }
322 }
323
324 sub _clear_session_instance_data {
325     my $c = shift;
326     $c->$_(undef) for @session_data_accessors;
327     $c->maybe::next::method(@_); # allow other plugins to hook in on this
328 }
329
330 sub change_session_id {
331     my $c = shift;
332
333     my $sessiondata = $c->session;
334     my $oldsid = $c->sessionid;
335     my $newsid = $c->create_session_id;
336
337     if ($oldsid) {
338         $c->log->debug(qq/change_sessid: deleting session data from "$oldsid"/) if $c->debug;
339         $c->delete_session_data("${_}:${oldsid}") for qw/session expires flash/;
340     }
341
342     $c->log->debug(qq/change_sessid: storing session data to "$newsid"/) if $c->debug;
343     $c->store_session_data( "session:$newsid" => $sessiondata );
344
345     return $newsid;
346 }
347
348 sub delete_session {
349     my ( $c, $msg ) = @_;
350
351     $c->log->debug("Deleting session" . ( defined($msg) ? "($msg)" : '(no reason given)') ) if $c->debug;
352
353     # delete the session data
354     if ( my $sid = $c->sessionid ) {
355         $c->delete_session_data("${_}:${sid}") for qw/session expires flash/;
356         $c->delete_session_id($sid);
357     }
358
359     # reset the values in the context object
360     # see the BEGIN block
361     $c->_clear_session_instance_data;
362
363     $c->_session_delete_reason($msg);
364 }
365
366 sub session_delete_reason {
367     my $c = shift;
368
369     $c->session_is_valid; # check that it was loaded
370
371     $c->_session_delete_reason(@_);
372 }
373
374 sub session_expires {
375     my $c = shift;
376
377     if ( defined( my $expires = $c->_extended_session_expires ) ) {
378         return $expires;
379     } elsif ( defined( $expires = $c->_load_session_expires ) ) {
380         return $c->extend_session_expires( $expires );
381     } else {
382         return 0;
383     }
384 }
385
386 sub extend_session_expires {
387     my ( $c, $expires ) = @_;
388
389     my $threshold = $c->_session_plugin_config->{expiry_threshold} || 0;
390
391     if ( my $sid = $c->sessionid ) {
392         my $expires = $c->_get_stored_session_expires;
393         my $cutoff  = $expires - $threshold;
394
395         if (!$threshold || $cutoff <= time || $c->_session_updated) {
396
397             $c->_extended_session_expires( my $updated = $c->calculate_initial_session_expires() );
398             $c->extend_session_id( $sid, $updated );
399
400             return $updated;
401
402         } else {
403
404             return $expires;
405
406         }
407
408     } else {
409
410         return;
411
412     }
413
414 }
415
416 sub change_session_expires {
417     my ( $c, $expires ) = @_;
418
419     $expires ||= 0;
420     my $sid = $c->sessionid;
421     my $time_exp = time() + $expires;
422     $c->store_session_data( "expires:$sid" => $time_exp );
423 }
424
425 sub _get_stored_session_expires {
426     my ($c) = @_;
427
428     if ( my $sid = $c->sessionid ) {
429         return $c->get_session_data("expires:$sid") || 0;
430     } else {
431         return 0;
432     }
433 }
434
435 sub initial_session_expires {
436     my $c = shift;
437     return ( time() + $c->_session_plugin_config->{expires} );
438 }
439
440 sub calculate_initial_session_expires {
441     my ($c) = @_;
442     return max( $c->initial_session_expires, $c->_get_stored_session_expires );
443 }
444
445 sub calculate_extended_session_expires {
446     my ( $c, $prev ) = @_;
447     return ( time() + $prev );
448 }
449
450 sub reset_session_expires {
451     my ( $c, $sid ) = @_;
452
453     my $exp = $c->calculate_initial_session_expires;
454     $c->_session_expires( $exp );
455     #
456     # since we're setting _session_expires directly, make load_session_expires
457     # actually use that value.
458     #
459     $c->_tried_loading_session_expires(1);
460     $c->_extended_session_expires( $exp );
461     $exp;
462 }
463
464 sub sessionid {
465     my $c = shift;
466
467     return $c->_sessionid || $c->_load_sessionid;
468 }
469
470 sub _load_sessionid {
471     my $c = shift;
472     return if $c->_tried_loading_session_id;
473     $c->_tried_loading_session_id(1);
474
475     if ( defined( my $sid = $c->get_session_id ) ) {
476         if ( $c->validate_session_id($sid) ) {
477             # temporarily set the inner key, so that validation will work
478             $c->_sessionid($sid);
479             return $sid;
480         } else {
481             my $err = "Tried to set invalid session ID '$sid'";
482             $c->log->error($err);
483             Catalyst::Exception->throw($err);
484         }
485     }
486
487     return;
488 }
489
490 sub session_is_valid {
491     my $c = shift;
492
493     # force a check for expiry, but also __address, etc
494     if ( $c->_load_session ) {
495         return 1;
496     } else {
497         return;
498     }
499 }
500
501 sub validate_session_id {
502     my ( $c, $sid ) = @_;
503
504     $sid and $sid =~ /^[a-f\d]+$/i;
505 }
506
507 sub session {
508     my $c = shift;
509
510     my $session = $c->_session || $c->_load_session || do {
511         $c->create_session_id_if_needed;
512         $c->initialize_session_data;
513     };
514
515     if (@_) {
516       my $new_values = @_ > 1 ? { @_ } : $_[0];
517       croak('session takes a hash or hashref') unless ref $new_values;
518
519       for my $key (keys %$new_values) {
520         $session->{$key} = $new_values->{$key};
521       }
522     }
523
524     $session;
525 }
526
527 sub keep_flash {
528     my ( $c, @keys ) = @_;
529     my $href = $c->_flash_keep_keys || $c->_flash_keep_keys({});
530     (@{$href}{@keys}) = ((undef) x @keys);
531 }
532
533 sub _flash_data {
534     my $c = shift;
535     $c->_flash || $c->_load_flash || do {
536         $c->create_session_id_if_needed;
537         $c->_flash( {} );
538     };
539 }
540
541 sub _set_flash {
542     my $c = shift;
543     if (@_) {
544         my $items = @_ > 1 ? {@_} : $_[0];
545         croak('flash takes a hash or hashref') unless ref $items;
546         @{ $c->_flash }{ keys %$items } = values %$items;
547     }
548 }
549
550 sub flash {
551     my $c = shift;
552     $c->_flash_data;
553     $c->_set_flash(@_);
554     return $c->_flash;
555 }
556
557 sub clear_flash {
558     my $c = shift;
559
560     #$c->delete_session_data("flash:" . $c->sessionid); # should this be in here? or delayed till finalization?
561     $c->_flash_key_hashes({});
562     $c->_flash_keep_keys({});
563     $c->_flash({});
564 }
565
566 sub session_expire_key {
567     my ( $c, %keys ) = @_;
568
569     my $now = time;
570     @{ $c->session->{__expire_keys} }{ keys %keys } =
571       map { $now + $_ } values %keys;
572 }
573
574 sub initialize_session_data {
575     my $c = shift;
576
577     my $now = time;
578
579     return $c->_session(
580         {
581             __created => $now,
582             __updated => $now,
583
584             (
585                 $c->_session_plugin_config->{verify_address}
586                 ? ( __address => $c->request->address||'' )
587                 : ()
588             ),
589             (
590                 $c->_session_plugin_config->{verify_user_agent}
591                 ? ( __user_agent => $c->request->user_agent||'' )
592                 : ()
593             ),
594         }
595     );
596 }
597
598 sub generate_session_id {
599     my $c = shift;
600
601     my $digest = $c->_find_digest();
602     $digest->add( $c->session_hash_seed() );
603     return $digest->hexdigest;
604 }
605
606 sub create_session_id_if_needed {
607     my $c = shift;
608     $c->create_session_id unless $c->sessionid;
609 }
610
611 sub create_session_id {
612     my $c = shift;
613
614     my $sid = $c->generate_session_id;
615
616     $c->log->debug(qq/Created session "$sid"/) if $c->debug;
617
618     $c->_sessionid($sid);
619     $c->reset_session_expires;
620     $c->set_session_id($sid);
621
622     return $sid;
623 }
624
625 my $counter;
626
627 sub session_hash_seed {
628     my $c = shift;
629
630     return join( "", ++$counter, time, rand, $$, {}, overload::StrVal($c), );
631 }
632
633 my $usable;
634
635 sub _find_digest () {
636     unless ($usable) {
637         foreach my $alg (qw/SHA-1 SHA-256 MD5/) {
638             if ( eval { Digest->new($alg) } ) {
639                 $usable = $alg;
640                 last;
641             }
642         }
643         Catalyst::Exception->throw(
644                 "Could not find a suitable Digest module. Please install "
645               . "Digest::SHA1, Digest::SHA, or Digest::MD5" )
646           unless $usable;
647     }
648
649     return Digest->new($usable);
650 }
651
652 sub dump_these {
653     my $c = shift;
654
655     (
656         $c->maybe::next::method(),
657
658         $c->_sessionid
659         ? ( [ "Session ID" => $c->sessionid ], [ Session => $c->session ], )
660         : ()
661     );
662 }
663
664
665 sub get_session_id { shift->maybe::next::method(@_) }
666 sub set_session_id { shift->maybe::next::method(@_) }
667 sub delete_session_id { shift->maybe::next::method(@_) }
668 sub extend_session_id { shift->maybe::next::method(@_) }
669
670 __PACKAGE__;
671
672 __END__
673
674 =pod
675
676 =head1 NAME
677
678 Catalyst::Plugin::Session - Generic Session plugin - ties together server side storage and client side state required to maintain session data.
679
680 =head1 SYNOPSIS
681
682     # To get sessions to "just work", all you need to do is use these plugins:
683
684     use Catalyst qw/
685       Session
686       Session::Store::FastMmap
687       Session::State::Cookie
688       /;
689
690     # you can replace Store::FastMmap with Store::File - both have sensible
691     # default configurations (see their docs for details)
692
693     # more complicated backends are available for other scenarios (DBI storage,
694     # etc)
695
696
697     # after you've loaded the plugins you can save session data
698     # For example, if you are writing a shopping cart, it could be implemented
699     # like this:
700
701     sub add_item : Local {
702         my ( $self, $c ) = @_;
703
704         my $item_id = $c->req->param("item");
705
706         # $c->session is a hash ref, a bit like $c->stash
707         # the difference is that it' preserved across requests
708
709         push @{ $c->session->{items} }, $item_id;
710
711         $c->forward("MyView");
712     }
713
714     sub display_items : Local {
715         my ( $self, $c ) = @_;
716
717         # values in $c->session are restored
718         $c->stash->{items_to_display} =
719           [ map { MyModel->retrieve($_) } @{ $c->session->{items} } ];
720
721         $c->forward("MyView");
722     }
723
724 =head1 DESCRIPTION
725
726 The Session plugin is the base of two related parts of functionality required
727 for session management in web applications.
728
729 The first part, the State, is getting the browser to repeat back a session key,
730 so that the web application can identify the client and logically string
731 several requests together into a session.
732
733 The second part, the Store, deals with the actual storage of information about
734 the client. This data is stored so that the it may be revived for every request
735 made by the same client.
736
737 This plugin links the two pieces together.
738
739 =head1 RECOMENDED BACKENDS
740
741 =over 4
742
743 =item Session::State::Cookie
744
745 The only really sane way to do state is using cookies.
746
747 =item Session::Store::File
748
749 A portable backend, based on Cache::File.
750
751 =item Session::Store::FastMmap
752
753 A fast and flexible backend, based on Cache::FastMmap.
754
755 =back
756
757 =head1 METHODS
758
759 =over 4
760
761 =item sessionid
762
763 An accessor for the session ID value.
764
765 =item session
766
767 Returns a hash reference that might contain unserialized values from previous
768 requests in the same session, and whose modified value will be saved for future
769 requests.
770
771 This method will automatically create a new session and session ID if none
772 exists.
773
774 You can also set session keys by passing a list of key/value pairs or a
775 hashref.
776
777     $c->session->{foo} = "bar";      # This works.
778     $c->session(one => 1, two => 2); # And this.
779     $c->session({ answer => 42 });   # And this.
780
781 =item session_expires
782
783 This method returns the time when the current session will expire, or 0 if
784 there is no current session. If there is a session and it already expired, it
785 will delete the session and return 0 as well.
786
787 =item flash
788
789 This is like Ruby on Rails' flash data structure. Think of it as a stash that
790 lasts for longer than one request, letting you redirect instead of forward.
791
792 The flash data will be cleaned up only on requests on which actually use
793 $c->flash (thus allowing multiple redirections), and the policy is to delete
794 all the keys which haven't changed since the flash data was loaded at the end
795 of every request.
796
797 Note that use of the flash is an easy way to get data across requests, but
798 it's also strongly disrecommended, due it it being inherently plagued with
799 race conditions. This means that it's unlikely to work well if your
800 users have multiple tabs open at once, or if your site does a lot of AJAX
801 requests.
802
803 L<Catalyst::Plugin::StatusMessage> is the recommended alternative solution,
804 as this doesn't suffer from these issues.
805
806     sub moose : Local {
807         my ( $self, $c ) = @_;
808
809         $c->flash->{beans} = 10;
810         $c->response->redirect( $c->uri_for("foo") );
811     }
812
813     sub foo : Local {
814         my ( $self, $c ) = @_;
815
816         my $value = $c->flash->{beans};
817
818         # ...
819
820         $c->response->redirect( $c->uri_for("bar") );
821     }
822
823     sub bar : Local {
824         my ( $self, $c ) = @_;
825
826         if ( exists $c->flash->{beans} ) { # false
827
828         }
829     }
830
831 =item clear_flash
832
833 Zap all the keys in the flash regardless of their current state.
834
835 =item keep_flash @keys
836
837 If you want to keep a flash key for the next request too, even if it hasn't
838 changed, call C<keep_flash> and pass in the keys as arguments.
839
840 =item delete_session REASON
841
842 This method is used to invalidate a session. It takes an optional parameter
843 which will be saved in C<session_delete_reason> if provided.
844
845 NOTE: This method will B<also> delete your flash data.
846
847 =item session_delete_reason
848
849 This accessor contains a string with the reason a session was deleted. Possible
850 values include:
851
852 =over 4
853
854 =item *
855
856 C<address mismatch>
857
858 =item *
859
860 C<session expired>
861
862 =back
863
864 =item session_expire_key $key, $ttl
865
866 Mark a key to expire at a certain time (only useful when shorter than the
867 expiry time for the whole session).
868
869 For example:
870
871     __PACKAGE__->config('Plugin::Session' => { expires => 10000000000 }); # "forever"
872     (NB If this number is too large, Y2K38 breakage could result.)
873
874     # later
875
876     $c->session_expire_key( __user => 3600 );
877
878 Will make the session data survive, but the user will still be logged out after
879 an hour.
880
881 Note that these values are not auto extended.
882
883 =item change_session_id
884
885 By calling this method you can force a session id change while keeping all
886 session data. This method might come handy when you are paranoid about some
887 advanced variations of session fixation attack.
888
889 If you want to prevent this session fixation scenario:
890
891     0) let us have WebApp with anonymous and authenticated parts
892     1) a hacker goes to vulnerable WebApp and gets a real sessionid,
893        just by browsing anonymous part of WebApp
894     2) the hacker inserts (somehow) this values into a cookie in victim's browser
895     3) after the victim logs into WebApp the hacker can enter his/her session
896
897 you should call change_session_id in your login controller like this:
898
899       if ($c->authenticate( { username => $user, password => $pass } )) {
900         # login OK
901         $c->change_session_id;
902         ...
903       } else {
904         # login FAILED
905         ...
906       }
907
908 =item change_session_expires $expires
909
910 You can change the session expiration time for this session;
911
912     $c->change_session_expires( 4000 );
913
914 Note that this only works to set the session longer than the config setting.
915
916 =back
917
918 =head1 INTERNAL METHODS
919
920 =over 4
921
922 =item setup
923
924 This method is extended to also make calls to
925 C<check_session_plugin_requirements> and C<setup_session>.
926
927 =item check_session_plugin_requirements
928
929 This method ensures that a State and a Store plugin are also in use by the
930 application.
931
932 =item setup_session
933
934 This method populates C<< $c->config('Plugin::Session') >> with the default values
935 listed in L</CONFIGURATION>.
936
937 =item prepare_action
938
939 This method is extended.
940
941 Its only effect is if the (off by default) C<flash_to_stash> configuration
942 parameter is on - then it will copy the contents of the flash to the stash at
943 prepare time.
944
945 =item finalize_headers
946
947 This method is extended and will extend the expiry time before sending
948 the response.
949
950 =item finalize_body
951
952 This method is extended and will call finalize_session before the other
953 finalize_body methods run.  Here we persist the session data if a session exists.
954
955 =item initialize_session_data
956
957 This method will initialize the internal structure of the session, and is
958 called by the C<session> method if appropriate.
959
960 =item create_session_id
961
962 Creates a new session ID using C<generate_session_id> if there is no session ID
963 yet.
964
965 =item validate_session_id SID
966
967 Make sure a session ID is of the right format.
968
969 This currently ensures that the session ID string is any amount of case
970 insensitive hexadecimal characters.
971
972 =item generate_session_id
973
974 This method will return a string that can be used as a session ID. It is
975 supposed to be a reasonably random string with enough bits to prevent
976 collision. It basically takes C<session_hash_seed> and hashes it using SHA-1,
977 MD5 or SHA-256, depending on the availability of these modules.
978
979 =item session_hash_seed
980
981 This method is actually rather internal to generate_session_id, but should be
982 overridable in case you want to provide more random data.
983
984 Currently it returns a concatenated string which contains:
985
986 =over 4
987
988 =item * A counter
989
990 =item * The current time
991
992 =item * One value from C<rand>.
993
994 =item * The stringified value of a newly allocated hash reference
995
996 =item * The stringified value of the Catalyst context object
997
998 =back
999
1000 in the hopes that those combined values are entropic enough for most uses. If
1001 this is not the case you can replace C<session_hash_seed> with e.g.
1002
1003     sub session_hash_seed {
1004         open my $fh, "<", "/dev/random";
1005         read $fh, my $bytes, 20;
1006         close $fh;
1007         return $bytes;
1008     }
1009
1010 Or even more directly, replace C<generate_session_id>:
1011
1012     sub generate_session_id {
1013         open my $fh, "<", "/dev/random";
1014         read $fh, my $bytes, 20;
1015         close $fh;
1016         return unpack("H*", $bytes);
1017     }
1018
1019 Also have a look at L<Crypt::Random> and the various openssl bindings - these
1020 modules provide APIs for cryptographically secure random data.
1021
1022 =item finalize_session
1023
1024 Clean up the session during C<finalize>.
1025
1026 This clears the various accessors after saving to the store.
1027
1028 =item dump_these
1029
1030 See L<Catalyst/dump_these> - ammends the session data structure to the list of
1031 dumped objects if session ID is defined.
1032
1033
1034 =item calculate_extended_session_expires
1035
1036 =item calculate_initial_session_expires
1037
1038 =item create_session_id_if_needed
1039
1040 =item delete_session_id
1041
1042 =item extend_session_expires
1043
1044 Note: this is *not* used to give an individual user a longer session. See
1045 'change_session_expires'.
1046
1047 =item extend_session_id
1048
1049 =item get_session_id
1050
1051 =item reset_session_expires
1052
1053 =item session_is_valid
1054
1055 =item set_session_id
1056
1057 =item initial_session_expires
1058
1059 =back
1060
1061 =head1 USING SESSIONS DURING PREPARE
1062
1063 The earliest point in time at which you may use the session data is after
1064 L<Catalyst::Plugin::Session>'s C<prepare_action> has finished.
1065
1066 State plugins must set $c->session ID before C<prepare_action>, and during
1067 C<prepare_action> L<Catalyst::Plugin::Session> will actually load the data from
1068 the store.
1069
1070     sub prepare_action {
1071         my $c = shift;
1072
1073         # don't touch $c->session yet!
1074
1075         $c->NEXT::prepare_action( @_ );
1076
1077         $c->session;  # this is OK
1078         $c->sessionid; # this is also OK
1079     }
1080
1081 =head1 CONFIGURATION
1082
1083     $c->config('Plugin::Session' => {
1084         expires => 1234,
1085     });
1086
1087 All configuation parameters are provided in a hash reference under the
1088 C<Plugin::Session> key in the configuration hash.
1089
1090 =over 4
1091
1092 =item expires
1093
1094 The time-to-live of each session, expressed in seconds. Defaults to 7200 (two
1095 hours).
1096
1097 =item expiry_threshold
1098
1099 Only update the session expiry time if it would otherwise expire
1100 within this many seconds from now.
1101
1102 The purpose of this is to keep the session store from being updated
1103 when nothing else in the session is updated.
1104
1105 Defaults to 0 (in which case, the expiration will always be updated).
1106
1107 =item verify_address
1108
1109 When true, C<< $c->request->address >> will be checked at prepare time. If it is
1110 not the same as the address that initiated the session, the session is deleted.
1111
1112 Defaults to false.
1113
1114 =item verify_user_agent
1115
1116 When true, C<< $c->request->user_agent >> will be checked at prepare time. If it
1117 is not the same as the user agent that initiated the session, the session is
1118 deleted.
1119
1120 Defaults to false.
1121
1122 =item flash_to_stash
1123
1124 This option makes it easier to have actions behave the same whether they were
1125 forwarded to or redirected to. On prepare time it copies the contents of
1126 C<flash> (if any) to the stash.
1127
1128 =back
1129
1130 =head1 SPECIAL KEYS
1131
1132 The hash reference returned by C<< $c->session >> contains several keys which
1133 are automatically set:
1134
1135 =over 4
1136
1137 =item __expires
1138
1139 This key no longer exists. Use C<session_expires> instead.
1140
1141 =item __updated
1142
1143 The last time a session was saved to the store.
1144
1145 =item __created
1146
1147 The time when the session was first created.
1148
1149 =item __address
1150
1151 The value of C<< $c->request->address >> at the time the session was created.
1152 This value is only populated if C<verify_address> is true in the configuration.
1153
1154 =item __user_agent
1155
1156 The value of C<< $c->request->user_agent >> at the time the session was created.
1157 This value is only populated if C<verify_user_agent> is true in the configuration.
1158
1159 =back
1160
1161 =head1 CAVEATS
1162
1163 =head2 Round the Robin Proxies
1164
1165 C<verify_address> could make your site inaccessible to users who are behind
1166 load balanced proxies. Some ISPs may give a different IP to each request by the
1167 same client due to this type of proxying. If addresses are verified these
1168 users' sessions cannot persist.
1169
1170 To let these users access your site you can either disable address verification
1171 as a whole, or provide a checkbox in the login dialog that tells the server
1172 that it's OK for the address of the client to change. When the server sees that
1173 this box is checked it should delete the C<__address> special key from the
1174 session hash when the hash is first created.
1175
1176 =head2 Race Conditions
1177
1178 In this day and age where cleaning detergents and Dutch football (not the
1179 American kind) teams roam the plains in great numbers, requests may happen
1180 simultaneously. This means that there is some risk of session data being
1181 overwritten, like this:
1182
1183 =over 4
1184
1185 =item 1.
1186
1187 request a starts, request b starts, with the same session ID
1188
1189 =item 2.
1190
1191 session data is loaded in request a
1192
1193 =item 3.
1194
1195 session data is loaded in request b
1196
1197 =item 4.
1198
1199 session data is changed in request a
1200
1201 =item 5.
1202
1203 request a finishes, session data is updated and written to store
1204
1205 =item 6.
1206
1207 request b finishes, session data is updated and written to store, overwriting
1208 changes by request a
1209
1210 =back
1211
1212 For applications where any given user's session is only making one request
1213 at a time this plugin should be safe enough.
1214
1215 =head1 AUTHORS
1216
1217 Andy Grundman
1218
1219 Christian Hansen
1220
1221 Yuval Kogman, C<nothingmuch@woobling.org>
1222
1223 Sebastian Riedel
1224
1225 Tomas Doran (t0m) C<bobtfish@bobtfish.net> (current maintainer)
1226
1227 Sergio Salvi
1228
1229 kmx C<kmx@volny.cz>
1230
1231 Florian Ragwitz (rafl) C<rafl@debian.org>
1232
1233 Kent Fredric (kentnl)
1234
1235 And countless other contributers from #catalyst. Thanks guys!
1236
1237 =head1 Contributors
1238
1239 Devin Austin (dhoss) <dhoss@cpan.org>
1240
1241 Robert Rothenberg <rrwo@cpan.org>
1242
1243 =head1 COPYRIGHT & LICENSE
1244
1245     Copyright (c) 2005 the aforementioned authors. All rights
1246     reserved. This program is free software; you can redistribute
1247     it and/or modify it under the same terms as Perl itself.
1248
1249 =cut
1250
1251