Project

General

Profile

Actions

Bug #431

closed

mod_fastcgi.c fcgi_demux_response() stops sometimes when server is busy

Added by Anonymous over 19 years ago. Updated over 16 years ago.

Status:
Missing Feedback
Priority:
Normal
Category:
mod_fastcgi
Target version:
-
ASK QUESTIONS IN Forums:

Description

PHP via fastcgi stops responding sometimes in lighttpd v1.4.8. It can be replayed like belows:


php -i > test.php
ab -n 5000 -c 200 http://localhost/test.php

If you turn fastcgi.debug = 1, "unexpected end-of-file (perhaps the fastcgi process died)" will be reported.

I checked mod_fastcgi.c and found that fcgi_demux_response() process FIONREAD wrong. Line 2262 should return 0 instead of log_error_write and return -1. I have tested by myself and it works.


/* init read-buffer */

if (toread > 0) {
    ...
} else {
    log_error_write(srv, __FILE__, __LINE__, "ssdsdsd",
    "unexpected end-of-file (perhaps the fastcgi process died):",
    ...
}

/* init read-buffer */

if (toread > 0) {
    ...
} else {
    return 0;
}

-- singnoo

Actions #1

Updated by Anonymous about 19 years ago

  • Status changed from New to Assigned

No, if toread is 0 this is a EOF from the socket without a FCGI_FINISH packet.

This violates the FastCGI spec and usually means that the backend segfaulted before it could send the FCGI_FINISH packet.

Please provide a strace so we can check both what is going on in your case.

-- jan

Actions #2

Updated by stbuehler over 16 years ago

  • Status changed from Assigned to Fixed
  • Resolution set to worksforme

missing feedback.

Actions #3

Updated by stbuehler over 16 years ago

  • Status changed from Fixed to Missing Feedback
Actions

Also available in: Atom