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