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