-
Notifications
You must be signed in to change notification settings - Fork 260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ctfe: Add readonly mode #927
Conversation
PTAL |
It looks like this will cause a 404 to be served as the endpoint definition is literally deleted. Is that analysis correct, and is that the actual behaviour we'd want? Seems like it would be surprising for a client that was writing to a given URL to be suddenly provided with a 404. My first instinct would be that the log is down, not that it has been made read-only. |
Yes, it would return 404. Which code would you expect? |
I like the idea of returning a 404, it's simple and not ambiguous: the endpoint was not found. I see your point Martin, and we could also consider a different error code such as "405 Method Not Allowed". However:
Do you have any other suggestion? |
|
We may want to consider
|
Spec of the 405 error says it MUST provide an Allow header with the list of allowed methods: https://datatracker.ietf.org/doc/html/rfc7231#section-6.5.5. Also, "method" means a specific thing in HTTP: https://datatracker.ietf.org/doc/html/rfc7231#section-4, it doesn't look like a synonym to our (more narrowly defined) "endpoint". It still applies in our case though, but the way I interpret it is that "POST" method is not allowed on "/ct/v1/add-chain" resource. In this regard, no method is allowed on this resource, and one can also argue that "add-chain" resource is not found. Other codes would probably also have peculiarities. 422 says "the syntax of the request entity is correct", which effectively binds us to have some request validation before returning this code. 403 says:
I propose to go with 404, to avoid [over-]thinking these peculiarities, because it "just works", and is also a (tinily) simpler implementation. |
The new
is_readonly
flag in CTFE config allows setting up logs that acceptonly read requests. This is particularly useful in the scenario when a CT log is
gradually phased out from the ecosystem.
Handling readonly transition at CTFE level is beneficial over (in some ways),
but is mostly complementary to the current approach of setting the Trillian log
to
DRAINING
/FROZEN
state.The Trillian state transition is:
on Trillian level).
The state transition at the CTFE level is:
tree (e.g. if some CTFE job is stale or rolled back), but is
Checklist