proc_open_bug60120.phpt 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. --TEST--
  2. Bug #60120 proc_open hangs with stdin/out with 2048+ bytes
  3. --FILE--
  4. <?php
  5. error_reporting(E_ALL);
  6. if (substr(PHP_OS, 0, 3) == 'WIN') {
  7. $cmd = PHP_BINARY . ' -n -r "fwrite(STDOUT, $in = file_get_contents(\'php://stdin\')); fwrite(STDERR, $in);"';
  8. } else {
  9. $cmd = PHP_BINARY . ' -n -r \'fwrite(STDOUT, $in = file_get_contents("php://stdin")); fwrite(STDERR, $in);\'';
  10. }
  11. $descriptors = array(array('pipe', 'r'), array('pipe', 'w'), array('pipe', 'w'));
  12. $stdin = str_repeat('*', 1024 * 16) . '!';
  13. $stdin = str_repeat('*', 2049 );
  14. $options = array_merge(array('suppress_errors' => true, 'binary_pipes' => true, 'bypass_shell' => false));
  15. $process = proc_open($cmd, $descriptors, $pipes, getcwd(), array(), $options);
  16. foreach ($pipes as $pipe) {
  17. stream_set_blocking($pipe, false);
  18. }
  19. $writePipes = array($pipes[0]);
  20. $stdinLen = strlen($stdin);
  21. $stdinOffset = 0;
  22. unset($pipes[0]);
  23. while ($pipes || $writePipes) {
  24. $r = $pipes;
  25. $w = $writePipes;
  26. $e = null;
  27. $n = stream_select($r, $w, $e, 60);
  28. if (false === $n) {
  29. break;
  30. } elseif ($n === 0) {
  31. proc_terminate($process);
  32. }
  33. if ($w) {
  34. $written = fwrite($writePipes[0], (binary)substr($stdin, $stdinOffset), 8192);
  35. if (false !== $written) {
  36. $stdinOffset += $written;
  37. }
  38. if ($stdinOffset >= $stdinLen) {
  39. fclose($writePipes[0]);
  40. $writePipes = null;
  41. }
  42. }
  43. foreach ($r as $pipe) {
  44. $type = array_search($pipe, $pipes);
  45. $data = fread($pipe, 8192);
  46. var_dump($data);
  47. if (false === $data || feof($pipe)) {
  48. fclose($pipe);
  49. unset($pipes[$type]);
  50. }
  51. }
  52. }
  53. ?>
  54. ===DONE===
  55. --EXPECTF--
  56. string(2049) "%s"
  57. string(2049) "%s"
  58. string(0) ""
  59. string(0) ""
  60. ===DONE===