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