Skip to content

Commit

Permalink
fix #78624: session_gc return value for user defined session handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
bshaffer authored and krakjoe committed Oct 4, 2019
1 parent 9a2b42a commit a6d2196
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 7 deletions.
4 changes: 4 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ PHP NEWS
. Fixed bug #76809 (SSL settings aren't respected when persistent connections
are used). (fabiomsouto)

- Session:
. Fixed bug #78624 (session_gc return value for user defined session
handlers). (bshaffer)

- Standard:
. Fixed bug #76342 (file_get_contents waits twice specified timeout).
(Thomas Calvet)
Expand Down
15 changes: 8 additions & 7 deletions ext/session/mod_user.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,14 +192,15 @@ PS_GC_FUNC(user)

if (Z_TYPE(retval) == IS_LONG) {
convert_to_long(&retval);
return Z_LVAL(retval);
}
/* This is for older API compatibility */
if (Z_TYPE(retval) == IS_TRUE) {
return 1;
*nrdels = Z_LVAL(retval);
} else if (Z_TYPE(retval) == IS_TRUE) {
/* This is for older API compatibility */
*nrdels = 1;
} else {
/* Anything else is some kind of error */
*nrdels = -1; // Error
}
/* Anything else is some kind of error */
return -1; // Error
return *nrdels;
}

PS_CREATE_SID_FUNC(user)
Expand Down
61 changes: 61 additions & 0 deletions ext/session/tests/bug78624.phpt
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
--TEST--
Test session_set_save_handler() : session_gc() returns the number of deleted records.
--INI--
session.name=PHPSESSID
session.save_handler=files
--SKIPIF--
<?php include('skipif.inc'); ?>
--FILE--
<?php

ob_start();

/*
* Prototype : bool session_set_save_handler(SessionHandler $handler [, bool $register_shutdown_function = true])
* Description : Sets user-level session storage functions
* Source code : ext/session/session.c
*/

echo "*** Test session_set_save_handler() : session_gc() returns the number of deleted records. ***\n";

class MySession implements SessionHandlerInterface {
public function open($path, $name) {
echo 'Open', "\n";
return true;
}
public function read($key) {
echo 'Read ', session_id(), "\n";
return '';
}
public function write($key, $data) {
echo 'Write ', session_id(), "\n";
return true;
}
public function close() {
echo 'Close ', session_id(), "\n";
return true;
}
public function destroy($key) {
echo 'Destroy ', session_id(), "\n";
return true;
}
public function gc($ts) {
echo 'Garbage collect', "\n";
return 1;
}
}

$handler = new MySession;
session_set_save_handler($handler);
session_start();
var_dump(session_gc());
session_write_close();

--EXPECTF--
*** Test session_set_save_handler() : session_gc() returns the number of deleted records. ***
Open
Read %s
Garbage collect
int(1)
Write %s
Close %s
12 changes: 12 additions & 0 deletions ext/session/tests/session_set_save_handler_basic.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ var_dump($_SESSION);
$_SESSION['Bar'] = 'Foo';
session_write_close();

echo "Garbage collection..\n";
session_id($session_id);
session_start();
var_dump(session_gc());
session_write_close();

echo "Cleanup..\n";
session_id($session_id);
session_start();
Expand Down Expand Up @@ -101,6 +107,12 @@ array(3) {
}
Write [%s,%s,Blah|s:12:"Hello World!";Foo|b:0;Guff|i:1234567890;Bar|s:3:"Foo";]
Close [%s,PHPSESSID]
Garbage collection..
Open [%s,PHPSESSID]
Read [%s,%s]
int(0)
Write [%s,%s,Blah|s:12:"Hello World!";Foo|b:0;Guff|i:1234567890;Bar|s:3:"Foo";]
Close [%s,PHPSESSID]
Cleanup..
Open [%s,PHPSESSID]
Read [%s,%s]
Expand Down

0 comments on commit a6d2196

Please sign in to comment.