remove key-generator #2783
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#2783
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?
Hey, would anybody object if I ripped out the key-generator?
This is a standalone process that does nothing but create RSA keypairs for people who set
key_generator.furl=
in their tahoe.cfg . It creates them in the background so mutable-file creation doesn't need to wait. We built this back in the AllMyData days because we were worried about how long clients would block while creating keys.I argued against removing it in #542 (in 2008), but I've changed my mind since then. I'm no longer really comfortable with users (even AllMyData-style customers) getting their keys from anywhere other than their own computers (I shouldn't have been comfortable with it back then either, really). Also it's one more daemon that needs a
--location
argument (#2773) that I could avoid spending time updating.The speed used to bother me too, but on my home workstation (a 2012 Mac, 2.6GHz i7) the 2048-bit RSA key generation takes 80-90 milliseconds per key. Not great, but not a big deal.
OTOH, on the latest Raspberry Pi (v3 model B, 1.2GHz ARMv8), it takes about 1.1 seconds (per key). That's a drag, and I'm still looking forward to super-fast !Ed25519-based mutable files, but I don't think there's enough demand for an external key-generator to let the RPi speed influence our decision.
Incidentally, one non-security-impacting use of the key-generator would be to run it on the same machine as the client that uses it. Since python is basically single-threaded (and tahoe certainly doesn't attempt to take advantage of multiple cores), this would be a win if you're making a whole lot of mutable files, because the keys could be created on one core in the background, so the main tahoe process would be less likely to ever wait for one.
BTW, in writing the patch for this, I noticed a comment from April 2008 (when the key-generator was first added) that said "RSA key generation for a 2048 bit key takes between 0.8 and 3.2 secs". Fortunately this is way faster these days.
PR in https://github.com/tahoe-lafs/tahoe-lafs/pull/271
It's been a week and nobody's complained, so the key-generator is history. RIP.
In d1d9884/trunk:
+1. I think hardly anyone used this. We should switch to !Ed25519 keypairs if we want mutable file creation to be faster.