Download & Extend

Private Upload can change file settings back to 'private'

Project:Private Upload
Version:5.x-1.x-dev
Component:Code
Category:bug report
Priority:critical
Assigned:Unassigned
Status:patch (to be ported)

Issue Summary

function _private_upload_create_url uses variable_set to momentarily change the file system to 'private' and then back to 'public'. In theory this should be harmless, but we've seen our production site get switched to 'private' filesystem twice now, presumably if something goes wrong in that function. This causes all kinds of problems and is not immediately detected.

This patch uses the variable storage global $conf to temporarily change the setting without actually saving it to the database. This approach seems less dangerous and better performance anyway.

AttachmentSize
private_upload_file_downloads.patch1.48 KB

Comments

#1

Title:Private Upload can change private settings back to 'private'» Private Upload can change file settings back to 'private'

#2

In theory this should be harmless, but we've seen our production site get switched to 'private' filesystem twice now, presumably if something goes wrong in that function.

Using variable_set() is definitely not harmless. It would leave you open to race conditions when multiple requests execute that code simultaneously.

Assuming that the sequence is:
a) store the current setting
b) over-ride with 'private'
c) restore original setting

Then the following could happen:
1. method is 'public'
2. request 1 reads 'public'
3. request 1 writes 'private'
4. request 2 reads 'private'
5. request 2 writes 'private'
6. request 1 restores 'public'
7. request 2 restores 'private'
8. method remains 'private'

Using the global $conf array is correct. It affects the values that variable_get() returns, without writing that value to the database, so it only affects the current request.

#3

Status:needs review» reviewed & tested by the community

Thanks for the clearer explanation. Setting to 'reviewed'.

#4

You might also want to modify the 'HACK' comment accordingly.

#5

AttachmentSize
private.patch 1.32 KB

#6

Seconded - this has broken our site three times today!! :o)

#7

Priority:normal» critical

#8

And there was me thinking i was going mad. This breaks my site every few days or so. Will test the next release.

#9

Version:6.x-1.0-rc2» 5.x-1.x-dev
Status:reviewed & tested by the community» patch (to be ported)

Committed to the D6 branch.

Needs to be tested for D5 version before being committed to D5.

#10

This bug makes the 6.x-1.0-rc2 version of the module completely unusable for me. The bug has been fixed in the 6.x-1.x-dev version of the module. I think it would be good to release another stable version of the module soon. I know I prefer to not to run development versions of modules on live sites. And this bug means that the latest 'stable' version of the module is likely to cause major problems for many sites.

Thanks,
-Ian

nobody click here