using removable disk as a storage backend #793
Labels
No Label
0.2.0
0.3.0
0.4.0
0.5.0
0.5.1
0.6.0
0.6.1
0.7.0
0.8.0
0.9.0
1.0.0
1.1.0
1.10.0
1.10.1
1.10.2
1.10a2
1.11.0
1.12.0
1.12.1
1.13.0
1.14.0
1.15.0
1.15.1
1.2.0
1.3.0
1.4.1
1.5.0
1.6.0
1.6.1
1.7.0
1.7.1
1.7β
1.8.0
1.8.1
1.8.2
1.8.3
1.8β
1.9.0
1.9.0-s3branch
1.9.0a1
1.9.0a2
1.9.0b1
1.9.1
1.9.2
1.9.2a1
LeastAuthority.com automation
blocker
cannot reproduce
cloud-branch
code
code-dirnodes
code-encoding
code-frontend
code-frontend-cli
code-frontend-ftp-sftp
code-frontend-magic-folder
code-frontend-web
code-mutable
code-network
code-nodeadmin
code-peerselection
code-storage
contrib
critical
defect
dev-infrastructure
documentation
duplicate
enhancement
fixed
invalid
major
minor
n/a
normal
operational
packaging
somebody else's problem
supercritical
task
trivial
unknown
was already fixed
website
wontfix
worksforme
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#793
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
For years, on my linux box, I've used an encrypted USB flash drive for my GPG
keys, SSH keys, future winning lottery numbers that I've written down after a
session at my secret time portal, etc. It's a two- or three- factor scheme:
you need to possess the drive (which stays in my pocket), and get into my
computer, and sometimes into my head too.
But I'm not very confident in the linux encrypted-disk schemes, and they
generally don't provide much integrity checking. And, one of these USB drives
has started to fail. On the other hand, I am confident in Tahoe's
encryption, and integrity checking, and, hey, waitaminute..
So what I'm thinking is that some aspects of #467 (specifically the creation
of alternate backends) would enable a "local storage" configuration: shares
are stored in a locally-designated directory instead of out on the network.
Each "server" could correspond to a different removeable drive. I'd probably
put k+1 shares on each drive, use two or three drives, and keep at least one
of them in a safe offline place. Having k+1 per drive might let me tolerate a
bad sector without having to go to the safe-deposit box. When a drive starts
failing, I mount a new one in the same place and hit "Repair". Mutable
updates would only change the shares on the drive in my pocket, until the
next time I fetch the safe-deposit-box drive and do a Repair (at which point
those shares will be updated to the latest versions).
The amount of data is usually quite small compared to the size of the drive.
I probably have about 10kB of data to keep safe, and a 4GB thumb drive to
store it on. So this can afford to use k=1 and a high expansion ratio.
Some wrinkles to figure out:
It might be useful to configure a "staging area", on a temporary ramdisk
(since the whole exercise is to maintain the two-factor requirement:
removable drive with the shares, plus the rootcap). Then tahoe would
encode to the staging area, and you could copy shares to the USB drive
later. Or maybe mount two drives at a time, and tell the Repairer to only
create certain shares (instead of also creating the shares for the missing
drive and putting them in the wrong place), and using the Repairer
multiple times.
instead of wrapping them in the usual "container" format (since we don't
need leases, or write-enablers)
path (i.e. the removable drive being removed) as the "server" being
offline, and look for a different one
might be useful to define the "server id" by writing a special file to the
removable drive (sort of like the regular disk UUID). When the tahoe
backend code looks to see if a "server" is "online", it looks for this
serverid file to decide which server is actually available.
Most of the time I use a hand-built "keycache" program (which copies the
data into a ramdisk and erases it after a timeout), for which a simple
"tahoe get" would be sufficient. But sometimes I want programs to read out
that data directly, for which I'd need FUSE.
Possibly merge with ticket #1107.