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