vote up 2 vote down star

When a user uploads a file, randomly it gets replaced by another user's upload, I've finally tracked down the issue to PHP and the tmp file name being reused. Is there a way to fix this? Is there a way to make better random names? It seems to degrade over time, as in the random file name seed gets weaker? This is on PHP 5.2.8 and FreeBSD 7.0

Here is a log showing how the same tmp file name gets used and is overwritten by another upload: http://pastebin.com/m65790440

Any help is GREATLY appreciated. I've been trying to fix this for over 4 months and has gotten worse over time. Thank you.

EDIT: Keep in mind that this is not a PHP code issue, this is happening before it reaches any PHP code, the file received via $_FILES['name']['tmp_name'] is incorrect when it is received and its been traced back that it is being overwritten with someone else's upload before it reaches the upload processing script

flag
It it your tmp dir thats the problem or the dir that you copy/move the file to? – Greg Mar 10 at 19:33

4 Answers

vote up 3 vote down

It sounds like something is seriously wrong with either your PHP installation or whichever system call PHP is internally using to generate the random file names (most likely tempnam).

For everyone else: PHP handles uploaded files internally before the user code is ever processed. These names are stored in $_FILES['file']['tmp_name'] (where 'file' is the (quoted) name of the file input element on the form).

link|flag
Yes I believe you are correct, now I need to figure out how to fix it =B – noaheverett Mar 10 at 19:39
I've been seeing if I could find anything on Google, but I haven't. Does the problem still occur if you set upload_tmp_dir to a different directory? – R. Bemrose Mar 10 at 19:43
Yeah just tested it out and the problem still happens when the upload_tmp_dir is set to something different, would "noatime" set on the /var partition (where the files are uploaded to) have an affect on this? – noaheverett Mar 10 at 20:07
I wouldn't think so, but I'd have to check. Also, I noticed in the pastebin that the group on those files is set to wheel... another reason to use a different temp directory. – R. Bemrose Mar 10 at 20:26
About the wheel group issue: nabble.com/Problem-when-uploading-files-with-Apac… – R. Bemrose Mar 10 at 20:28
show 3 more comments
vote up 1 vote down

Move your files to a user dir after they have been uploaded. Those temp files should be removed.

link|flag
This is the correct fix. PHP's temporary upload files are only meant to stay where they are for the amount of time it takes your processing script to move them to where they actually belong. – chaos Mar 10 at 19:49
At some point, PHP's policy became to delete the temp files at the end of the request if you haven't moved/renamed them, so your entire current mechanism will also break if you upgrade past that version. – chaos Mar 10 at 19:50
They are being moved. The file that the PHP upload processing script receives from $_FILES['name']['tmp_name'] is wrong to begin with – noaheverett Mar 10 at 20:02
vote up 0 vote down

Is PHP running under apache, as mod_php?

You may try to create a per-process temporary upload directory whose name contains your php getmypid(), then ini_set your PHP process' upload_tmp_dir to that directory. This will not work if a new php process is spawned for every request.

link|flag
Is there a way to override how PHP names file uploads coming in? – noaheverett Mar 10 at 19:29
no, but you may be able to override (at runtime) the temporary directory where temporary files are dumped – Vlad Romascanu Mar 10 at 19:43
vote up -1 vote down

I would recommend using a GUID generator for the filename seeing that you are getting so many.

link|flag
Is there a way to override how PHP names file uploads coming in? as of right now php uses a 'phpxxxxx' schema – noaheverett Mar 10 at 19:27

Your Answer

Get an OpenID
or

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