Initial release 2006 | Available in C++ | |
![]() | ||
Stable release 0.19.34 / January 28, 2010 (2010-01-28) Repository [cvs://anonymous:@offsystem.cvs.sourceforge.net/cvsroot/offsystem offsystem.cvs.sourceforge.net/cvsroot/offsystem] Development status stable, unmaintained, minor bug only Operating system |
The Owner-Free File System (OFF System, or OFF for short) is a peer-to-peer distributed file system in which all shared files are represented by randomized multi-used data blocks. Instead of anonymizing the network, the data blocks are anonymized and therefore, only data garbage is ever exchanged and stored and no forwarding via intermediate nodes is required. OFF claims to have been created with the expressed intention "to cut off some gangrene-infested bits of the copyright industry."
Contents
History
OFF development started within the hacktivism group The Big Hack in 2003 by the hackers Cheater512, CaptainMorgan, Aqlo and WhiteRaven. In 2004, a rudimentary version was finished, written in PHP, which was distributed as two demo CDs. Following these, SpectralMorning re-implemented the functionality in 2004 in C++, which led to the current "mainline" OFF client.
On August 14, 2006, CaptainMorgan posted a letter of "closing" addressed to the "Copyright Industry Associations of America", such as the RIAA and MPAA, stating that they have created OFF with the purpose of ending "all of your problems with consumer copyright infringement."
In 2008, the network consisted of around 50 nodes. On April 11, 2008, a beta test was held with a network size of over 100 nodes. Since SpectralMorning stopped work on OFF in late 2008, only minor bug fix releases were made to mainline OFF.
Starting from 2007, an alternative, but compatible client was developed, called BlocksNet. Written in Ruby and well-maintained, it saw major improvements over recent time. It has been under development until 2011.
The client OFFLoad is a fork from mainline OFF, which seemingly adds no features. Reasons for the fork are unclear. Another distantly related program is Monolith, which uses a similar principle to OFF. It was created after OFF and features no multi-use of blocks and no networking.
Functional Principle
The OFF System is a kind of anonymous, fully decentralized P2P file sharing program and network. In contrast to other anonymous file sharing networks, which derive their anonymity from forwarding their data blocks via intermediate network nodes, OFF derives its anonymity from anonymizing the data files. Thus, the system refers to itself as a brightnet to contrast its method of operation with that of private file sharing systems known as darknets and with traditional, forwarding anonymous P2P programs.
Store Procedure
In order to store a file into the local OFF storage, resp. block cache, choose the tuple size
- Select
t − 1 blocks for use as randomizer blocks, or for short, randomizers, from the existing OFF cache, which have not been used in previous iterations. If not enough randomizers exist in the cache, generate them using a random number generator. - Calculate
o i = s i ⊕ r 1 ⊕ r 2 ⊕ . . . ⊕ r t − 1 o i ⊕ being the XOR operation. - Update the descriptor list, which contains the information on how to restore each source block
s i t :{ o i , r 1 , r 2 . . . r t − 1 } .
Finally, store the descriptor list in its own block (or blocks, if the list is larger than 128 KiB) and insert these blocks
Retrieve Procedure
To retrieve, obtain the descriptor block or blocks and for each contained set of size
- Obtain the listed blocks
b 1 , b 2 . . . b t o i , r 1 , r 2 . . . r t − 1 - Perform
s i = b 1 ⊕ b 2 ⊕ . . . ⊕ b t s i
Anonymity
OFF derives its anonymity from the following:
- No source file content is stored in the block cache, only blocks that consist of probably random data.
- No source file content is searched for on the network.
- No source file content is transmitted over the network.
- (No block in the cache is copyrightable by itself, because numbers - however large - cannot be subject to copyright (and neither would be small parts of a copyrighted work).)
- The original uploader remains unknown, because blocks are dispersed into the network and therefore downloading is done from multiple sources.
- During disperse, the usage of the block cannot be stated, because blocks are re-used in other contexts to re-assemble other source file blocks. (TODO that is true also for retrieve)
- (No block can be copyrighted without logical contradictions, because blocks used for re-assembling a source file block are re-used for re-assembly of other source file blocks. It is undecidable who would have copyright on a block, which has several meanings. Everyone would have copyright on everything.)
- If the OFF-internal search function is used, search terms are untraceable to its originator, because the search request is forwarded to the next node and its results back to that node instead of directly to the originator. It is thus not possible to decide whether a node is the originating node or a node doing a search request on behalf of another node.
- TODO add digital copyright note
Efficiency
Because OFF anonymizes the data blocks being exchanged instead of the network, no forwarding via intermediate nodes is required. Therefore, this method has a higher degree of efficiency than traditional, forwarding-based anonymous P2P systems.
The forwarding method requires that a data block is uploaded and downloaded several times before it reaches its destination, which happens between 5 and 15 times., which, according to the resulting formula
Efficiency can be further increased:
- Re-use some of the result blocks
o i s ∗ ( t − 1 ) ∗ e 100 s is the source file size,t the tuple size ande the percentage of unrelated blocks used in the randomizing step during the store procedure. By default,e is chosen 75 (andt chosen 3), which leads to an overhead of 150%. - If some of the blocks required to fully retrieve, resp. re-assemble, the source file are already present in the block cache from other transfers or stored files because of the multi-use nature of OFF blocks, the degree of efficiency is increased further.
- Use of the targeted store feature leads to the blocks of specific other files to be chosen as randomizers for this file with higher probability and therefore a reduction in overhead. This is especially useful when storing a group of related files.