#1528 closed defect (fixed)
escalation of authority from knowing a storage index to being able to delete corresponding shares
Reported by: | zooko | Owned by: | davidsarah |
---|---|---|---|
Priority: | critical | Milestone: | 1.8.3 |
Component: | code-storage | Version: | 1.9.0a1 |
Keywords: | security preservation anti-censorship storage leases | Cc: | |
Launchpad Bug: | 848476 |
Description (last modified by davidsarah)
The Tahoe-LAFS core team has discovered a bug in Tahoe-LAFS v1.8.2 and all earlier versions starting with Tahoe-LAFS v1.3.0 that could allow users to unauthorizedly delete immutable files in some cases.
In Tahoe-LAFS, each file is encoded into a redundant set of "shares" (like in RAID-5 or RAID-6), and each share is stored on a different server. There is a secret string called the "cancellation secret" which is stored on the server by being appended to the end of the share data. The bug is that the server allows a client to read past the end of the share data and thus learn the cancellation secret. A client that knows the cancellation secret can use it to cause that server to delete the shares it stores of that file.
We have prepared a set of patches that do three things:
- Fix the bounds violation in reading of immutable files that allowed the clients to learn the cancellation secrets.
- Remove the function that takes a cancellation secret and deletes shares. This function (named "remote_cancel_lease") was not actually used, as all users currently rely on a different mechanism for deleting unused data (a garbage collection mechanism in which unused shares get deleted by the server once no client has renewed its lease on them in more than a month).
- Fix some similar bounds violations in mutable files that could potentially lead to similar vulnerability. This vulnerability is probably not a concern in practice, because it doesn't arise unless the legitimate, authorized client deliberately writes a "hole" into the mutable file (by seeking past the end of the current data and not writing over all the bytes thus uncovered). No extant version of Tahoe-LAFS does this, so presumably no legitimate user would be exposed to that vulnerability.
known_issues.rst for 1.8.3 has more details, but I'll paste the most relevant bit here:
This vulnerability does not enable anyone to read file contents without authorization (confidentiality), nor to change the contents of a file (integrity).
A person could learn the storage index of a file in several ways:
- By being granted the authority to read the immutable file—i.e. by being granted a read capability to the file. They can determine the file's storage index from its read capability.
- By being granted a verify capability to the file. They can determine the file's storage index from its verify capability. This case probably doesn't happen often because users typically don't share verify caps.
- By operating a storage server, and receiving a request from a client that has a read cap or a verify cap. If the client attempts to upload, download, or verify the file with their storage server, even if it doesn't actually have the file, then they can learn the storage index of the file.
- By gaining read access to an existing storage server's local filesystem, and inspecting the directory structure that it stores its shares in. They can thus learn the storage indexes of all files that the server is holding at least one share of. Normally only the operator of an existing storage server would be able to inspect its local filesystem, so this requires either being such an operator of an existing storage server, or somehow gaining the ability to inspect the local filesystem of an existing storage server.
Change History (15)
comment:1 Changed at 2011-09-13T16:25:36Z by zooko@…
- Resolution set to fixed
- Status changed from new to closed
comment:2 Changed at 2011-09-13T16:25:36Z by zooko@…
In [5007/1.8.3]:
comment:3 Changed at 2011-09-13T16:50:11Z by david-sarah@…
In [5013/1.8.3]:
comment:4 Changed at 2011-09-13T18:34:31Z by davidsarah
- Component changed from unknown to code-storage
- Keywords security preservation anti-censorship storage leases added
- Milestone changed from undecided to 1.8.3
- Priority changed from major to critical
- Resolution fixed deleted
- Status changed from closed to reopened
comment:5 Changed at 2011-09-13T18:48:36Z by davidsarah
- Description modified (diff)
- Owner changed from nobody to davidsarah
- Status changed from reopened to new
- Summary changed from placeholder ticket to escalation of authority from knowing a storage index to being able to delete corresponding shares
Reassigning to me to apply the fix to trunk.
comment:6 Changed at 2011-09-13T18:53:14Z by davidsarah
- Description modified (diff)
- Status changed from new to assigned
comment:7 Changed at 2011-09-13T22:10:04Z by zooko@…
- Resolution set to fixed
- Status changed from assigned to closed
In 5476f67dc1177a26:
comment:8 Changed at 2011-09-13T22:10:04Z by zooko@…
In 20e2910c616531c9:
(The changeset message doesn't reference this ticket)
comment:9 Changed at 2011-09-13T22:10:04Z by zooko@…
In 401d0e7f69ddeaef:
comment:10 Changed at 2011-09-13T22:10:05Z by david-sarah@…
In c10099f982ee0803:
(The changeset message doesn't reference this ticket)
comment:11 Changed at 2011-09-13T22:23:32Z by davidsarah
Note that changesets [5004/1.8.3], [5005/1.8.3], and [5008/1.8.3]--[5012/1.8.3] inclusive on the 1.8.3 branch, and changesets cffc98780414760c, 65de17245da26a4c, 942c5e5162fc3d9c, 32f80625c912be45, 48f56dab6fb9cc20, 7a98abeb3a7b1efb, eb26075da077404e, b15bd674c3f1a73e, and 4c33d855d1fbfb51 on trunk, are also related to this ticket. (They didn't get posted here automatically because the 'refs' syntax in the patch descriptions was wrong.)
comment:12 Changed at 2011-09-14T07:22:03Z by zooko
- Launchpad Bug set to 848476
comment:13 Changed at 2011-09-14T16:52:13Z by warner
For future code-archaeologists, this bug was introduced in 6c4019ec33e7a253, which removed a precondition check in read_share_data() (because it used the original 4-byte size field, which was deprecated in favor of measuring the length of the container file with os.stat), but didn't provide a replacement. This was 536 patches after the 1.2.0 release, and about 295 patches before the 1.3.0 release.
comment:14 Changed at 2011-09-19T05:15:27Z by zooko
Brian pointed out to me that there is another way that someone can learn the storage index of a file. It is shown on the "Recent Uploads and Downloads" page of a gateway. If someone can access your gateway, and you've uploaded or downloaded the file recently (if I recall correctly it is a FIFO queue of the most recent 20 uploads or downloads)...
Oh, I see that it is actually something more complicated:
comment:15 Changed at 2012-01-13T17:50:17Z by zooko
According to this post by Josh Bressers from RedHat on the oss-sec mailing list, we should use the identifier CVE-2011-3617 for this bug.
In [5006/1.8.3]: