Re: [galaxy-dev] inconsistent use of tempfile.mkstemp during upload causes problems

2014-06-10 Thread John Chilton
On Tue, Jun 10, 2014 at 1:50 PM, John-Paul Robinson  wrote:
> Thanks for proposing a patch.
>
> We're looking at trying it out on our code base but are at least a few
> revisions behind and may need to do a little back porting (or catching up).

I think it has been a while since this stuff has been significantly
modified - I would guess the patch applies cleanly for last half dozen
releases.

>
> Let me make sure I understand the intention of the patch, though.
>
>
> >From the code changes, I trust that the intention is that all temporary
> files should be created in the Galaxy dataset directory.  That is the
> temp directory path will be the explicitly derived from the output_path
> that is an argument to upload.py.

The attempt is for all temp files that will just be "moved" into
output_path anyway be created and written out in the same directory as
output_path. It is difficult to imagine scenarios where this is not on
the same file system as output_path - this means shutil.move should be
maximally performant and minimally error prone (agreed?). In general I
agree that tools shouldn't really be modifying the TMPDIR - the system
configuration should be used and the upload process may still result
in some /tmp files - for instance uploading bam files causes some
files for samtools stdout and stderr to be written to /tmp. This patch
allow them to - because these files will never be "moved" to the
output_path directory.

>
> This is fine.
>
> I'm somewhat partial to the environment influencing the TMP dir via an
> unadorned mkstemp()  but I can appreciate having a definitive
> output_path specified on the call to upload.py.

Responded to this above.

>
> One issue that will affect us slightly (but probably not others) is that
> we currently have our dataset path on a glusterfs volume which doesn't
> support ACLs.  This means we won't have a way of overriding umask
> settings that may be in place for the user.  If a user with umask 022
> writes a file to their import dir, the permissions will at best be
> read-only for the galaxy processes group owner.  This may prevent with
> the os.rename as well.  With a default ACL we could cause the umask to
> be ignored in favor of a permissive ACL.  This is really a local deploy
> issue but it's worth knowing about.

So this expanded version of this pull request that will hopefully be
included with the next Galaxy release in July should centralize some
of the handling of this and have fewer paths through the code meaning
it will be easier to tailor to your local deployment. At that time -
if there is more we can do - adding different options, extension
points, etc... to further ease your deployment let me know.

>
> A second question, it looks like the patch only updates convert_newlines
> and convert_newlines_sep2tabs.   The handle_compressed_file and sep2tabs
> methods in sniff also have bare mkstemp() calls. Do they need
> modification as well?

Okay - so sep2tabs is used nowhere in Galaxy as far as I can tell. I
would like to just delete it at some point. handle_compressed_file is
never used during "upload.py" as far as I can tell - it is for formal
data source tools - which should all behave more like normal jobs and
normal Galaxy tools - so this is less likely to be a problem. There
are some assertions in that last sentence I could be wrong about - and
if that method proves problematic let me know and we can deal with it.

Thanks again for the e-mail and for pushing Galaxy forward on this,

-John

>
> ~jpr
>
> On 06/10/2014 10:49 AM, John Chilton wrote:
>> Hello All,
>>
>>   Thanks for the well laid out e-mails and great discussion. I think
>> John-Paul's comment about the code growing up organically is probably
>> exactly right. (A link below has some details from Nate about this).
>>
>>   So late last night I opened a sprawling pull request that cleaned up
>> a lot of stuff in upload.py and then realized it was a little bit
>> incorrect and wouldn't actually help any of you until you were able to
>> upgrade to the August 2014 release :) so I declined. I have reworked a
>> relatively small patch to fix the immediate problem of the consistency
>> tmpfile consistency as it relates to shutil.move. John-Paul Robinson,
>> can you apply it directly and see if it fixes your problems?
>>
>> https://bitbucket.org/jmchilton/galaxy-central-fork-1/commits/dc706d78d9b21a1175199fd9201fe9781d48ffb5/raw
>>
>>   If it does, the devteam will get this merged and I will continue
>> with the upload.py improvements that were inspired by this discussion
>> (see https://bitbucket.org/galaxy/galaxy-central/pull-request/408 for
>> more details).
>>
>> -John
>>
>> On Mon, Jun 9, 2014 at 2:50 PM, John-Paul Robinson  wrote:
>>> We've considered the sudo solution, but it opens the window to other
>>> bugs giving galaxy the power to change ownership of other files in our
>>> shared user cluster environment.  We could isolate the power to a script
>>> but then we still need to monitor this cod

Re: [galaxy-dev] inconsistent use of tempfile.mkstemp during upload causes problems

2014-06-10 Thread John-Paul Robinson
Thanks for proposing a patch.

We're looking at trying it out on our code base but are at least a few
revisions behind and may need to do a little back porting (or catching up).

Let me make sure I understand the intention of the patch, though.


>From the code changes, I trust that the intention is that all temporary
files should be created in the Galaxy dataset directory.  That is the
temp directory path will be the explicitly derived from the output_path
that is an argument to upload.py.

This is fine.

I'm somewhat partial to the environment influencing the TMP dir via an
unadorned mkstemp()  but I can appreciate having a definitive
output_path specified on the call to upload.py.

One issue that will affect us slightly (but probably not others) is that
we currently have our dataset path on a glusterfs volume which doesn't
support ACLs.  This means we won't have a way of overriding umask
settings that may be in place for the user.  If a user with umask 022
writes a file to their import dir, the permissions will at best be
read-only for the galaxy processes group owner.  This may prevent with
the os.rename as well.  With a default ACL we could cause the umask to
be ignored in favor of a permissive ACL.  This is really a local deploy
issue but it's worth knowing about.

A second question, it looks like the patch only updates convert_newlines
and convert_newlines_sep2tabs.   The handle_compressed_file and sep2tabs
methods in sniff also have bare mkstemp() calls. Do they need
modification as well?

~jpr

On 06/10/2014 10:49 AM, John Chilton wrote:
> Hello All,
>
>   Thanks for the well laid out e-mails and great discussion. I think
> John-Paul's comment about the code growing up organically is probably
> exactly right. (A link below has some details from Nate about this).
>
>   So late last night I opened a sprawling pull request that cleaned up
> a lot of stuff in upload.py and then realized it was a little bit
> incorrect and wouldn't actually help any of you until you were able to
> upgrade to the August 2014 release :) so I declined. I have reworked a
> relatively small patch to fix the immediate problem of the consistency
> tmpfile consistency as it relates to shutil.move. John-Paul Robinson,
> can you apply it directly and see if it fixes your problems?
>
> https://bitbucket.org/jmchilton/galaxy-central-fork-1/commits/dc706d78d9b21a1175199fd9201fe9781d48ffb5/raw
>
>   If it does, the devteam will get this merged and I will continue
> with the upload.py improvements that were inspired by this discussion
> (see https://bitbucket.org/galaxy/galaxy-central/pull-request/408 for
> more details).
>
> -John
>
> On Mon, Jun 9, 2014 at 2:50 PM, John-Paul Robinson  wrote:
>> We've considered the sudo solution, but it opens the window to other
>> bugs giving galaxy the power to change ownership of other files in our
>> shared user cluster environment.  We could isolate the power to a script
>> but then we still need to monitor this code closely.  We'd prefer not to
>> introduce that requirement.
>>
>> I didn't have the time to trace this down either. ;)  I just got tired
>> of this issue and the inconsistent failures causing confusion in our
>> community.
>>
>> I hope your insight into the logic drift over time is accurate and can
>> be corrected.  The upload code looks like it's gone through a whole lot
>> of organic growth. :/
>>
>> Looking forward to additional comments from the dev team.
>>
>> ~jpr
>>
>>
>> On 06/09/2014 03:30 PM, Kandalaft, Iyad wrote:
>>> Hi JPR,
>>>
>>> I had the same questions while trying to figure out a fool-proof way to 
>>> allow users to import files into galaxy on our Cluster.  I couldn't exactly 
>>> figure out, nor did I have the time to really review, why the galaxy code 
>>> did these steps and why that shutil.move failed.  I opted to simply insert 
>>> code in upload.py to sudo chown/chmod the files as an "easier" "hack" to 
>>> this problem.  There are pros and cons to using the tmp var from the env, 
>>> and it will depend on your intentions/infrastructure.  I think the ideology 
>>> was that the Galaxy folder was supposed to be shared across all nodes in a 
>>> cluster, and they opted to use the TMP path within the galaxy folder.  
>>> Overtime, the code probably partially diverged from that notion, which 
>>> caused this dilemma.
>>>
>>> I believe that the best fix is to make the underlying code simply copy the 
>>> files into the environment-provided temp, which is configurable in galaxy's 
>>> universe_wsgi.ini, and assume ownership from the get-go.  This code of 
>>> copying and/or moving in discrete steps creates unnecessary complexity.
>>>
>>> Regards,
>>> Iyad
>>>
>>> -Original Message-
>>> From: galaxy-dev-boun...@lists.bx.psu.edu 
>>> [mailto:galaxy-dev-boun...@lists.bx.psu.edu] On Behalf Of John-Paul Robinson
>>> Sent: Monday, June 09, 2014 3:08 PM
>>> To: galaxy-dev@lists.bx.psu.edu
>>> Subject: [galaxy-dev] inconsistent use of tempfile.mkstemp during uplo

Re: [galaxy-dev] inconsistent use of tempfile.mkstemp during upload causes problems

2014-06-10 Thread John Chilton
Hello All,

  Thanks for the well laid out e-mails and great discussion. I think
John-Paul's comment about the code growing up organically is probably
exactly right. (A link below has some details from Nate about this).

  So late last night I opened a sprawling pull request that cleaned up
a lot of stuff in upload.py and then realized it was a little bit
incorrect and wouldn't actually help any of you until you were able to
upgrade to the August 2014 release :) so I declined. I have reworked a
relatively small patch to fix the immediate problem of the consistency
tmpfile consistency as it relates to shutil.move. John-Paul Robinson,
can you apply it directly and see if it fixes your problems?

https://bitbucket.org/jmchilton/galaxy-central-fork-1/commits/dc706d78d9b21a1175199fd9201fe9781d48ffb5/raw

  If it does, the devteam will get this merged and I will continue
with the upload.py improvements that were inspired by this discussion
(see https://bitbucket.org/galaxy/galaxy-central/pull-request/408 for
more details).

-John

On Mon, Jun 9, 2014 at 2:50 PM, John-Paul Robinson  wrote:
> We've considered the sudo solution, but it opens the window to other
> bugs giving galaxy the power to change ownership of other files in our
> shared user cluster environment.  We could isolate the power to a script
> but then we still need to monitor this code closely.  We'd prefer not to
> introduce that requirement.
>
> I didn't have the time to trace this down either. ;)  I just got tired
> of this issue and the inconsistent failures causing confusion in our
> community.
>
> I hope your insight into the logic drift over time is accurate and can
> be corrected.  The upload code looks like it's gone through a whole lot
> of organic growth. :/
>
> Looking forward to additional comments from the dev team.
>
> ~jpr
>
>
> On 06/09/2014 03:30 PM, Kandalaft, Iyad wrote:
>> Hi JPR,
>>
>> I had the same questions while trying to figure out a fool-proof way to 
>> allow users to import files into galaxy on our Cluster.  I couldn't exactly 
>> figure out, nor did I have the time to really review, why the galaxy code 
>> did these steps and why that shutil.move failed.  I opted to simply insert 
>> code in upload.py to sudo chown/chmod the files as an "easier" "hack" to 
>> this problem.  There are pros and cons to using the tmp var from the env, 
>> and it will depend on your intentions/infrastructure.  I think the ideology 
>> was that the Galaxy folder was supposed to be shared across all nodes in a 
>> cluster, and they opted to use the TMP path within the galaxy folder.  
>> Overtime, the code probably partially diverged from that notion, which 
>> caused this dilemma.
>>
>> I believe that the best fix is to make the underlying code simply copy the 
>> files into the environment-provided temp, which is configurable in galaxy's 
>> universe_wsgi.ini, and assume ownership from the get-go.  This code of 
>> copying and/or moving in discrete steps creates unnecessary complexity.
>>
>> Regards,
>> Iyad
>>
>> -Original Message-
>> From: galaxy-dev-boun...@lists.bx.psu.edu 
>> [mailto:galaxy-dev-boun...@lists.bx.psu.edu] On Behalf Of John-Paul Robinson
>> Sent: Monday, June 09, 2014 3:08 PM
>> To: galaxy-dev@lists.bx.psu.edu
>> Subject: [galaxy-dev] inconsistent use of tempfile.mkstemp during upload 
>> causes problems
>>
>> There appears to be some inconsistent use of tempfile.mkstemp() within 
>> upload.py that causes problems when users import data files to galaxy from a 
>> cluster directory via the upload process and import/temp/dataset directories 
>> are on different file systems.
>>
>> The issue manifests when Galaxy's job directory, dataset directory and 
>> import directory are on different file systems (common for cluster
>> environments) in conjunction with a configuration where users can copy their 
>> data files directly to the import directory from which Galaxy selects data 
>> sets to upload (as opposed to using an FTP gateway).
>>
>> While allowing users to copy files to an import directory rather than using 
>> the FTP gateway may not be that common, we use this configuration locally to 
>> help build a more seamless interface with our local collection of HPC 
>> resources.  Users can be logged into their cluster account and move data 
>> into galaxy with a file copy command rather than having to use FTP.
>>
>> This configuration has worked well in our environment as long as the correct 
>> ownership configuration existed on the import directory and as long as the 
>> import directory, job temporary directory, and galaxy data set directory 
>> were all on the same file system.
>>
>> We now have our galaxy dataset directory on a different file system and are 
>> seeing inconsistent behavior during the upload.py runs depending on if the 
>> data is ordinary text, BAM files, or gzipped data.
>>
>> A subset of uploads will fail because of the way temporary files are created 
>> by Galaxy to facilitate the import a

Re: [galaxy-dev] inconsistent use of tempfile.mkstemp during upload causes problems

2014-06-09 Thread John-Paul Robinson
We've considered the sudo solution, but it opens the window to other
bugs giving galaxy the power to change ownership of other files in our
shared user cluster environment.  We could isolate the power to a script
but then we still need to monitor this code closely.  We'd prefer not to
introduce that requirement.

I didn't have the time to trace this down either. ;)  I just got tired
of this issue and the inconsistent failures causing confusion in our
community.

I hope your insight into the logic drift over time is accurate and can
be corrected.  The upload code looks like it's gone through a whole lot
of organic growth. :/

Looking forward to additional comments from the dev team.

~jpr


On 06/09/2014 03:30 PM, Kandalaft, Iyad wrote:
> Hi JPR,
>
> I had the same questions while trying to figure out a fool-proof way to allow 
> users to import files into galaxy on our Cluster.  I couldn't exactly figure 
> out, nor did I have the time to really review, why the galaxy code did these 
> steps and why that shutil.move failed.  I opted to simply insert code in 
> upload.py to sudo chown/chmod the files as an "easier" "hack" to this 
> problem.  There are pros and cons to using the tmp var from the env, and it 
> will depend on your intentions/infrastructure.  I think the ideology was that 
> the Galaxy folder was supposed to be shared across all nodes in a cluster, 
> and they opted to use the TMP path within the galaxy folder.  Overtime, the 
> code probably partially diverged from that notion, which caused this dilemma.
>
> I believe that the best fix is to make the underlying code simply copy the 
> files into the environment-provided temp, which is configurable in galaxy's 
> universe_wsgi.ini, and assume ownership from the get-go.  This code of 
> copying and/or moving in discrete steps creates unnecessary complexity. 
>
> Regards,
> Iyad
>
> -Original Message-
> From: galaxy-dev-boun...@lists.bx.psu.edu 
> [mailto:galaxy-dev-boun...@lists.bx.psu.edu] On Behalf Of John-Paul Robinson
> Sent: Monday, June 09, 2014 3:08 PM
> To: galaxy-dev@lists.bx.psu.edu
> Subject: [galaxy-dev] inconsistent use of tempfile.mkstemp during upload 
> causes problems
>
> There appears to be some inconsistent use of tempfile.mkstemp() within 
> upload.py that causes problems when users import data files to galaxy from a 
> cluster directory via the upload process and import/temp/dataset directories 
> are on different file systems.
>
> The issue manifests when Galaxy's job directory, dataset directory and import 
> directory are on different file systems (common for cluster
> environments) in conjunction with a configuration where users can copy their 
> data files directly to the import directory from which Galaxy selects data 
> sets to upload (as opposed to using an FTP gateway).
>
> While allowing users to copy files to an import directory rather than using 
> the FTP gateway may not be that common, we use this configuration locally to 
> help build a more seamless interface with our local collection of HPC 
> resources.  Users can be logged into their cluster account and move data into 
> galaxy with a file copy command rather than having to use FTP.
>
> This configuration has worked well in our environment as long as the correct 
> ownership configuration existed on the import directory and as long as the 
> import directory, job temporary directory, and galaxy data set directory were 
> all on the same file system.
>
> We now have our galaxy dataset directory on a different file system and are 
> seeing inconsistent behavior during the upload.py runs depending on if the 
> data is ordinary text, BAM files, or gzipped data.
>
> A subset of uploads will fail because of the way temporary files are created 
> by Galaxy to facilitate the import and any associated conversion processes of 
> different file types.
>
> During the import,
>
> 1) Galaxy will copy the original file to a temporary target file (converting 
> as needed during the copy).
> 2) Once this first conversion step is complete, Galaxy then attempts to move 
> the temporary file back to the original location, ie. the import directory.
> 3) If this move is succeeds, Galaxy completes the upload processing and the 
> data becomes a registered data set in the user's dataset collection.
>
> Galaxy prefers the Python shutil.move method to move tempfile . This results 
> in a simple os.rename if the files remain on the same file system.  However, 
> if os.rename raises OSError because a move was attempted across a file system 
> boundary, shutil.move resorts to a copy2, which copies the data to the 
> original import file and then tries to copy the file attributes (permissions 
> and utimes) to the original import file from the source file (which will be 
> the temporary file Galaxy created in step 1 to begin the conversion process).
>
> The os.rename and shutil.copy2 behave (and fail) differently depending on the 
> file ownership of the original import file.

Re: [galaxy-dev] inconsistent use of tempfile.mkstemp during upload causes problems

2014-06-09 Thread Curtis Hendrickson (Campus)
Iyad, 

Thanks for chiming in. We looked at the patch you had posted, but we run on a 
cluster galaxy shares with other apps, so the galaxy user does not have sudo 
outside of the galaxy head-node. 
The upload.py code you posted, therefore does not work for us. 
Therefore, we're also looking at a chown hook in 
lib/galaxy/tools/actions/upload_common.py, but find that code a little more 
inscrutable ( see earlier thread with you on this subject ) 

http://dev.list.galaxyproject.org/Uploading-files-to-galaxy-from-a-folder-tt4664614.html#a4664669
However, both chown hooks seem too heavy handed, and like a workaround or 
band-aid on an underlying problem. I hate to use elevated privileges (with the 
security risks that brings) if we don't really have to. That being said, we 
need to change something in the short terms so things work, be it the 
filesystem layout, the upload.py workflow, or a chown in upload_common.py.

Regards, 
Curtis



-Original Message-
From: galaxy-dev-boun...@lists.bx.psu.edu 
[mailto:galaxy-dev-boun...@lists.bx.psu.edu] On Behalf Of Kandalaft, Iyad
Sent: Monday, June 09, 2014 2:30 PM
To: John-Paul Robinson (Campus); galaxy-dev@lists.bx.psu.edu
Subject: Re: [galaxy-dev] inconsistent use of tempfile.mkstemp during upload 
causes problems

Hi JPR,

I had the same questions while trying to figure out a fool-proof way to allow 
users to import files into galaxy on our Cluster.  I couldn't exactly figure 
out, nor did I have the time to really review, why the galaxy code did these 
steps and why that shutil.move failed.  I opted to simply insert code in 
upload.py to sudo chown/chmod the files as an "easier" "hack" to this problem.  
There are pros and cons to using the tmp var from the env, and it will depend 
on your intentions/infrastructure.  I think the ideology was that the Galaxy 
folder was supposed to be shared across all nodes in a cluster, and they opted 
to use the TMP path within the galaxy folder.  Overtime, the code probably 
partially diverged from that notion, which caused this dilemma.

I believe that the best fix is to make the underlying code simply copy the 
files into the environment-provided temp, which is configurable in galaxy's 
universe_wsgi.ini, and assume ownership from the get-go.  This code of copying 
and/or moving in discrete steps creates unnecessary complexity. 

Regards,
Iyad

-Original Message-
From: galaxy-dev-boun...@lists.bx.psu.edu 
[mailto:galaxy-dev-boun...@lists.bx.psu.edu] On Behalf Of John-Paul Robinson
Sent: Monday, June 09, 2014 3:08 PM
To: galaxy-dev@lists.bx.psu.edu
Subject: [galaxy-dev] inconsistent use of tempfile.mkstemp during upload causes 
problems

There appears to be some inconsistent use of tempfile.mkstemp() within 
upload.py that causes problems when users import data files to galaxy from a 
cluster directory via the upload process and import/temp/dataset directories 
are on different file systems.

The issue manifests when Galaxy's job directory, dataset directory and import 
directory are on different file systems (common for cluster
environments) in conjunction with a configuration where users can copy their 
data files directly to the import directory from which Galaxy selects data sets 
to upload (as opposed to using an FTP gateway).

While allowing users to copy files to an import directory rather than using the 
FTP gateway may not be that common, we use this configuration locally to help 
build a more seamless interface with our local collection of HPC resources.  
Users can be logged into their cluster account and move data into galaxy with a 
file copy command rather than having to use FTP.

This configuration has worked well in our environment as long as the correct 
ownership configuration existed on the import directory and as long as the 
import directory, job temporary directory, and galaxy data set directory were 
all on the same file system.

We now have our galaxy dataset directory on a different file system and are 
seeing inconsistent behavior during the upload.py runs depending on if the data 
is ordinary text, BAM files, or gzipped data.

A subset of uploads will fail because of the way temporary files are created by 
Galaxy to facilitate the import and any associated conversion processes of 
different file types.

During the import,

1) Galaxy will copy the original file to a temporary target file (converting as 
needed during the copy).
2) Once this first conversion step is complete, Galaxy then attempts to move 
the temporary file back to the original location, ie. the import directory.
3) If this move is succeeds, Galaxy completes the upload processing and the 
data becomes a registered data set in the user's dataset collection.

Galaxy prefers the Python shutil.move method to move tempfile . This results in 
a simple os.rename if the files remain on the same file system.  However, if 
os.rename raises OSError because a move was att

Re: [galaxy-dev] inconsistent use of tempfile.mkstemp during upload causes problems

2014-06-09 Thread Kandalaft, Iyad
Hi JPR,

I had the same questions while trying to figure out a fool-proof way to allow 
users to import files into galaxy on our Cluster.  I couldn't exactly figure 
out, nor did I have the time to really review, why the galaxy code did these 
steps and why that shutil.move failed.  I opted to simply insert code in 
upload.py to sudo chown/chmod the files as an "easier" "hack" to this problem.  
There are pros and cons to using the tmp var from the env, and it will depend 
on your intentions/infrastructure.  I think the ideology was that the Galaxy 
folder was supposed to be shared across all nodes in a cluster, and they opted 
to use the TMP path within the galaxy folder.  Overtime, the code probably 
partially diverged from that notion, which caused this dilemma.

I believe that the best fix is to make the underlying code simply copy the 
files into the environment-provided temp, which is configurable in galaxy's 
universe_wsgi.ini, and assume ownership from the get-go.  This code of copying 
and/or moving in discrete steps creates unnecessary complexity. 

Regards,
Iyad

-Original Message-
From: galaxy-dev-boun...@lists.bx.psu.edu 
[mailto:galaxy-dev-boun...@lists.bx.psu.edu] On Behalf Of John-Paul Robinson
Sent: Monday, June 09, 2014 3:08 PM
To: galaxy-dev@lists.bx.psu.edu
Subject: [galaxy-dev] inconsistent use of tempfile.mkstemp during upload causes 
problems

There appears to be some inconsistent use of tempfile.mkstemp() within 
upload.py that causes problems when users import data files to galaxy from a 
cluster directory via the upload process and import/temp/dataset directories 
are on different file systems.

The issue manifests when Galaxy's job directory, dataset directory and import 
directory are on different file systems (common for cluster
environments) in conjunction with a configuration where users can copy their 
data files directly to the import directory from which Galaxy selects data sets 
to upload (as opposed to using an FTP gateway).

While allowing users to copy files to an import directory rather than using the 
FTP gateway may not be that common, we use this configuration locally to help 
build a more seamless interface with our local collection of HPC resources.  
Users can be logged into their cluster account and move data into galaxy with a 
file copy command rather than having to use FTP.

This configuration has worked well in our environment as long as the correct 
ownership configuration existed on the import directory and as long as the 
import directory, job temporary directory, and galaxy data set directory were 
all on the same file system.

We now have our galaxy dataset directory on a different file system and are 
seeing inconsistent behavior during the upload.py runs depending on if the data 
is ordinary text, BAM files, or gzipped data.

A subset of uploads will fail because of the way temporary files are created by 
Galaxy to facilitate the import and any associated conversion processes of 
different file types.

During the import,

1) Galaxy will copy the original file to a temporary target file (converting as 
needed during the copy).
2) Once this first conversion step is complete, Galaxy then attempts to move 
the temporary file back to the original location, ie. the import directory.
3) If this move is succeeds, Galaxy completes the upload processing and the 
data becomes a registered data set in the user's dataset collection.

Galaxy prefers the Python shutil.move method to move tempfile . This results in 
a simple os.rename if the files remain on the same file system.  However, if 
os.rename raises OSError because a move was attempted across a file system 
boundary, shutil.move resorts to a copy2, which copies the data to the original 
import file and then tries to copy the file attributes (permissions and utimes) 
to the original import file from the source file (which will be the temporary 
file Galaxy created in step 1 to begin the conversion process).

The os.rename and shutil.copy2 behave (and fail) differently depending on the 
file ownership of the original import file.  The os.rename will succeed even if 
the Galaxy upload.py job process only maps to the group-owner of the original 
import file (which can be ensured with group sticky bit on the import dir or 
ACLs). The shutil.copy2 command, however, will fail if the Galaxy upload.py job 
process UID is not the user-owner of the original import file.

We could ensure the os.rename succeeds by keeping the job temporary directory 
and the import directory on the same file system.  However, it seems the 
temporary directories used by upload.py are inconsistent across data types 
which prevents this simple fix from working for all data types.

When text files are imported, upload calls the sniff.* methods to perform 
conversion.  These methods use a bare call to tempfile.mkstemp() which ensures 
the file is created in the directory specified by the env var $TMPDIR. For 
example in sniff.conver