Description
When a seek fails on a php://memory stream, or on a blob stream from SQLite3::openBlob() or Pdo\Sqlite::openBlob(), the stream's position is set to -1. Meanwhile the stream's own read/write offset is moved: php://memory resets it to 0, and the blob streams clamp it to 0 or to the blob size.
After that:
- ftell() returns false, although the stream is still usable.
- Debug builds abort on the next fseek(..., SEEK_CUR) with Assertion 'stream->position >= 0' failed in php_stream_seek().
- Release builds hit a signed integer overflow in the SEEK_CUR overflow guard, where ZEND_LONG_MAX - stream->position is computed with position -1. The requested offset becomes PHP_INT_MAX:
- php://memory moves to PHP_INT_MAX and reads return "".
- The blob stream fails the seek again and stays at -1.
Plain files and php://temp behave correctly: a failed seek returns -1 and leaves the position unchanged.
Reproducer 1: php://memory
<?php
$stream = fopen('php://memory', 'r+');
fwrite($stream, 'hello world');
fseek($stream, 6);
var_dump(fseek($stream, -7, SEEK_CUR)); // fails: before start of stream
var_dump(ftell($stream));
var_dump(fseek($stream, 1, SEEK_CUR));
var_dump(ftell($stream));
var_dump(fread($stream, 4));
Actual output:
int(-1)
bool(false)
int(0)
int(9223372036854775807)
string(0) ""
Actual output (debug build):
int(-1)
bool(false)
php: main/streams/streams.c:1393: php_stream_seek: Assertion `stream->position >= 0' failed.
Aborted (core dumped)
Expected output:
int(-1)
int(6)
int(0)
int(7)
string(4) "orld"
Reproducer 2: SQLite3 blob (Pdo\Sqlite::openBlob() is affected the same way)
<?php
$db = new SQLite3(':memory:');
$db->exec('CREATE TABLE test (id INTEGER PRIMARY KEY, data BLOB)');
$db->exec("INSERT INTO test (id, data) VALUES (1, 'hello world')");
$stream = $db->openBlob('test', 'data', 1);
var_dump(fseek($stream, 12)); // fails: beyond end of blob
var_dump(ftell($stream));
var_dump(fseek($stream, 6, SEEK_CUR));
var_dump(ftell($stream));
var_dump(fread($stream, 5));
Actual output:
int(-1)
bool(false)
int(-1)
bool(false)
string(0) ""
(Debug builds abort with the same assertion as reproducer 1.)
Expected output:
int(-1)
int(0)
int(0)
int(6)
string(5) "world"
Related: #21433 #20964 #20927
PHP Version
PHP 8.4.27-dev (cli) (built: Sep 25 2026 10:06:46) (NTS)
PHP 8.5.12-dev (cli) (built: Sep 25 2026 10:12:00) (NTS)
PHP 8.6.0-dev (cli) (built: Sep 25 2026 10:17:03) (NTS)
Operating System
Ubuntu 24.04
Description
When a seek fails on a php://memory stream, or on a blob stream from SQLite3::openBlob() or Pdo\Sqlite::openBlob(), the stream's position is set to -1. Meanwhile the stream's own read/write offset is moved: php://memory resets it to 0, and the blob streams clamp it to 0 or to the blob size.
After that:
Plain files and php://temp behave correctly: a failed seek returns -1 and leaves the position unchanged.
Reproducer 1: php://memory
Actual output:
Actual output (debug build):
Expected output:
Reproducer 2: SQLite3 blob (Pdo\Sqlite::openBlob() is affected the same way)
Actual output:
(Debug builds abort with the same assertion as reproducer 1.)
Expected output:
Related: #21433 #20964 #20927
PHP Version
Operating System
Ubuntu 24.04