Can anybody tell me why using the pcntl lib on production servers is discouraged? The PHP manual tells very briefly about it, and I'm in a dire need to use this library... Is there another way to do the same thing in php?

link|improve this question

56% accept rate
First guess? Scripts served over the web allowing access to unix processes. Sounds pretty insecure. – Stephen Feb 4 '11 at 15:34
Could you elaborate a bit more on what you need to use? POSIX signals aren't inherently a "bad idea", but it is really implementation dependent. – Tim Post Feb 4 '11 at 15:42
Well, it's for optimization purposes - I need to process a really big amount of data and doing this synchronously would take huge amount of time. – marek Feb 4 '11 at 18:04
1  
@Stephen - could you elaborate a bit more please? I mean - I'm pretty sure I'm able to secure my web serv properly, though I had never used this lib, so maybe you can tell me what should I do to secure it better? According to manual: "unexpected results may happen if any Process Control functions are used within a web server environment" - expression unexpected results got my attention. What do you think can it mean? Data loss, or maybe serv hang-up? – marek Feb 4 '11 at 18:12
I've never used the lib either! :) I read that very same sentence in the documentation, along with what the library does, and drew a conclusion. That's why I commented instead of answering. Sorry :) – Stephen Feb 4 '11 at 18:19
show 6 more comments
feedback

2 Answers

pcntl is discouraged in production environments because the functionality it supports (fork, process control, signal handling) are fairly explicitly things you should not be using in a CGI style application. Now, if you're writing a daemon or command line application in PHP, that is another matter...

From the PHP manual:

Process Control should not be enabled within a web server environment and unexpected results may happen if any Process Control functions are used within a web server environment.

link|improve this answer
Ok, but this doesn't explain what are those mysterious unexpected results I should expect if I use pcntl on prod-serv :). – marek Feb 5 '11 at 8:41
1  
Crap, I just discovered that to use pcntl you'll have to compile php as cgi... – marek Feb 5 '11 at 12:31
feedback

one has to be clear about the differences of a php cli script and a sapi/cgi script. php on production systems may as well have support for pcntl.

the important thing here is to have 2 php config files. one for cli and one for cgi setup. one then has to disable pctnl in the cgi setup because the real security issue is, that forking a script when executed by the webserver may leave zombie processes flooding the system.

in a cli environment it might be necessary to be able to write scripts that fork...

link|improve this answer
@Edward Z. Yang: that's what i said. the php manual specifically refers to the danger of forking scripts run by the web server software. – glasz Apr 1 '11 at 13:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.