Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[v1.11.0] Accessing array offset on null value - Failed TCP connection without ext-sockets #286

Closed
matheusb-comp opened this issue Mar 12, 2022 · 2 comments · Fixed by #290

Comments

@matheusb-comp
Copy link

I'm receiving the following error in this line:

   ErrorException  : Trying to access array offset on value of type null

  at /var/www/html/vendor/react/socket/src/TcpConnector.php:123
    119|                         @\fwrite($stream, \PHP_EOL);
    120|                         $error = \error_get_last();
    121| 
    122|                         // fwrite(): send of 2 bytes failed with errno=111 Connection refused
  > 123|                         \preg_match('/errno=(\d+) (.+)/', $error['message'], $m);
    124|                         $errno = isset($m[1]) ? (int) $m[1] : 0;
    125|                         $errstr = isset($m[2]) ? $m[2] : $error['message'];
    126|                     } else {
    127|                         // Not on Linux and ext-sockets not available? Too bad.

  Exception trace:

  1   Illuminate\Foundation\Bootstrap\HandleExceptions::handleError("Trying to access array offset on value of type null", "/var/www/html/vendor/react/socket/src/TcpConnector.php")
      /var/www/html/vendor/react/socket/src/TcpConnector.php:123

  2   React\Socket\TcpConnector::React\Socket\{closure}()
      /var/www/html/vendor/react/event-loop/src/StreamSelectLoop.php:253

  Please use the argument -v to see more details.

The $error is null, but I have no idea why.
I'm using another library that depends on this one indirectly.

The composer require tree:

beyondcode/laravel-websockets 1.8.1 An easy to use WebSocket server
├──cboden/ratchet ^0.4.1
│  └──react/socket ^1.0 || ^0.8 || ^0.7 || ^0.6 || ^0.5
└──clue/buzz-react ^2.5
   ├──react/http-client ^0.5.10
   |  └──react/socket ^1.0 || ^0.8.4
   └──react/socket ^1.1

PHP version:

PHP 7.4.27 (cli) (built: Dec 16 2021 22:42:18) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
@clue clue added this to the v1.12.0 milestone Mar 15, 2022
@clue
Copy link
Member

clue commented Mar 15, 2022

@matheusb-comp Thank you for reporting, I can indeed reproduce the problem you're seeing provided all of the following prerequisites are met:

I've started looking into this and will file a PR as soon as time permits coming up with some reproducible test cases. Expect an update no later than a week or two.

In the meantime, it should be easy enough to work around this by making sure any of the items from the above list are no longer true, e.g. by installing ext-sockets.

@matheusb-comp
Copy link
Author

  • ext-sockets is not available (installed by default on most platforms)

The code is running inside a Docker container that does not have the sockets module by default.
Thanks for the help, after installing the module it no longer fails.

Default PHP modules on php:7-fpm-alpine
$ docker run --rm -it --entrypoint sh php:7-fpm-alpine
/var/www/html # php -m
[PHP Modules]
Core
ctype
curl
date
dom
fileinfo
filter
ftp
hash
iconv
json
libxml
mbstring
mysqlnd
openssl
pcre
PDO
pdo_sqlite
Phar
posix
readline
Reflection
session
SimpleXML
sodium
SPL
sqlite3
standard
tokenizer
xml
xmlreader
xmlwriter
zlib

[Zend Modules]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants