Bug 249525 - extract on NFS out of space doesn't return errors.
Summary: extract on NFS out of space doesn't return errors.
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 5
Classification: Red Hat
Component: unzip
Version: 5.0
Hardware: All
OS: Linux
high
high
Target Milestone: ---
: ---
Assignee: Ivana Varekova
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2007-07-25 12:22 UTC by Ivana Varekova
Modified: 2013-04-12 19:15 UTC (History)
1 user (show)

Fixed In Version: RHBA-2008-0609
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2008-07-30 13:00:11 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHBA-2008:0609 0 normal SHIPPED_LIVE unzip bug fix update 2008-07-30 13:00:00 UTC

Description Ivana Varekova 2007-07-25 12:22:54 UTC
+++ This bug was initially created as a clone of Bug #249057 +++

Description of problem:

Using unzip to extract data to an NFS filesystem, if this one doesn't have any
space left to store more bytes, then unzip won't detect the error and keep
'extracting'.

This is, in fact, a bug in the Kernel NFS client side, when using write(2)
against it, if the file was not opened with O_SYNC or the operation is not
followed with fsync() or sync(), then the ENOSPC is not reported.

I didn't want to use O_SYNC or fsync()/sync() as they are performance killers,
so the choice of passing an option to sync data was not good IMHO. In the other
hand, I noticed unzip never tests close(2)... and this is a major bug to me.
In fact, close(2) can report ENOSPC without issues and I choosed that approach,
being this one, a non performance killer.

There are 4 patches here, (2 for Rawhide 5.52 and 2 for RHEL4 5.51).
Each pairs are :
  - changes that just affect RHEL/Linux/..
  - the whole change (that changes void to int for close in all OSs unzip supports).

Version-Release number of selected component (if applicable):
5.51 and 5.52... upstream too.
By the way upstream wants to change void to int too to check close() errors,
this might be a good example for them to accept the patch.

How reproducible:
Always.

Steps to Reproduce:
1. Export an NFS share of 10 Mbytes (Linux NFS)
2. Import it.
3. unzip big_file.zip into it.
4. no errors, echo $? = 0.
  
Actual results:
no errors, empy files, error code = 0.

Expected results:
  inflating: file.bin  
file.bin: write error (disk full?).   Continue? (y/n/^C) y
echo $? = 80 (this comes from unzip...)

Let me know if you need more details,

    Jose

-- Additional comment from jplans on 2007-07-20 13:07 EST --
Created an attachment (id=159666)
changes that affects RHEL


-- Additional comment from jplans on 2007-07-20 13:09 EST --
Created an attachment (id=159667)
multi arch change

Notice I return PK_OK, just to not change anything related to void().
the arch maintainers will change the return codes if they want.

-- Additional comment from jplans on 2007-07-20 13:14 EST --
Ivana,
 the fedora patches need work, I will clone this BZ.
Jose

-- Additional comment from varekova on 2007-07-24 07:42 EST --
Thanks, for really detailed bz and attached patch. The patch is right so thanks
again.

Comment 6 errata-xmlrpc 2008-07-30 13:00:11 UTC
An advisory has been issued which should help the problem
described in this bug report. This report is therefore being
closed with a resolution of ERRATA. For more information
on therefore solution and/or where to find the updated files,
please follow the link below. You may reopen this bug report
if the solution does not work for you.

http://rhn.redhat.com/errata/RHBA-2008-0609.html


Note You need to log in before you can comment on or make changes to this bug.