we shouldn't use "assert" to validate incoming data in introducer client #1085
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
3 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#1085
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?
(http://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/src/allmydata/introducer/client.py?rev=8df15e9f30a3bda7#L163)
Says:
This means that validation of this incoming data is turned off by the PYTHONOPTIMIZE setting, and it means that introducers have the power to cause AssertionFailure to be raised from this function. Now, in practice causing AssertionFailure to be raised from this function won't hurt anything in the current version, but this is still not the right way to do it. We would like for failures of any of these validations to result in an exception that will get logged as explicitly being "we received an ill-formed announcement" rather than "AssertionError", which is supposed to mean "there was an internal error in our source code".
(Note that the introduction server may well just be passing this announcement through as it was given to the introduction server by someone else, and may not be responsible for the ill-formedness itself...)
Relatedly, this code shouldn't catch all possible kinds of exceptions:
http://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/src/allmydata/introducer/client.py?rev=8df15e9f30a3bda7#L149
But should instead catch the specific kind of exception that means "we received an ill-formed announcement". Any other kind of exception, including AssertionFailure, should not be caught here.
I agree, although I'll mention that most of the time that I add asserts, it's just to move exceptions closer to the point of the bug. So I wasn't specifically trying to guard against malicious behavior on the part of the Introducer or some other publisher, rather I just wanted the exception (especially during testing) to be less confusing.
Making real exception-catching code frequently makes me think I need to invent a new exception type for that case, then catch it and do something useful with it elsewhere. I should probably be less worried about that: in this case, raising TypeError or ValueError would be sufficient, and even letting the exception bubble all the way up to the foolscap callRemote handler would be good enough. That would get logged.
Incidentally, whoever touches this code next: that client.py try/except on line 149 should be replaced with an 'except BaseException', or whatever it is that doesn't catch SIGINT and out-of-memory exceptions. Also, the log.err needs to use %(ann)r instead of %(ann)s (and we need to test that that actually works in foolscap.logging and 'flogtool dump'), or some other checking should be done, to make sure that the logging call can tolerate a non-stringable-in-some-output-encoding announcement string (imagine weird binary stuff in an announcement).
Essentially a duplicate of ticket:1944 and ticket:1968