Skip to content
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

MSC4154: Request max body size #4154

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions proposals/4154-request-max-body-size.md
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Implementation requirements:

  • Reverse proxy configuration demonstrating Matrix standard error response.
    • nginx
    • apache2
    • haproxy
    • traefik
    • caddy

Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# MSC4154: Request max body size

When making requests to the homeserver, clients have a lot of freedom to include large strings and
similar. Homeserver implementations may not be prepared for long text fields, for example, and may
encounter issues or present errors to clients.

This proposal aims to place a *minimum* expectation into the specification on request sizes rather
than trying to limit individual field types to certain lengths. The obvious disadvantage is that
most endpoints accept only a few fields, so whatever limit is chosen for the whole request will need
to also apply to the database level - an API with a single field which ends up in the database will
need that column to support nearly the entire body size, as a user could feasibly pad their request
out to meet the limit.

## Proposal

A request body size limit of 1,000,000 bytes (1 MB) MUST be expected by clients on *all* Client-Server
API endpoints. If a request exceeds this limit, the client SHOULD be presented with a `413 M_TOO_LARGE`
error. The `M_TOO_LARGE` error code [already exists](https://spec.matrix.org/v1.10/client-server-api/#other-error-codes).

Servers MAY raise this limit to higher than 1 MB, but SHOULD NOT lower it below 1 MB.
Comment on lines +17 to +20

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I find this wording a little unclear: Is it that servers should send M_TOO_LARGE for requests larger than 1 MB? Or that servers should send M_TOO_LARGE for requests larger than the servers' limit, which may be above 1 MB, but should not be under it?

I personally prefer the second interpretation, but whichever is the intended one, I think the wording should make it clear.

DISCLAIMER: I am just an ordinary matrix user with zero standards writing experience.


This limit is applied before any endpoint-specific considerations, such as
[event size limits](https://spec.matrix.org/v1.10/client-server-api/#size-limits).

*Note*: The 1 MB requirement is fairly arbitrary. It's just what
[nginx does by default](https://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size).
Critically, the limit *must* be more than the 65,536 bytes permitted for events at a minimum.

Response sizes from servers are *not* affected by this proposal. For example, a `/sync` response may
exceed 1 MB.

## Potential issues

None perceived. By using a default already found in popular reverse proxy software, clients will be
subject to these limits unintentionally today. This proposal improves the error response in these
cases, hopefully.

## Alternatives

Per-field or field type size restrictions may be a better fit, though open a can of worms on what
the 'right' size should be. Limiting strings to 512 KB (for example) may mean some APIs generate way
more than 1 MB of JSON, running into the nginx default request body limit. This also doesn't address
clients including off-spec fields in their requests, such as a `/login` containing namespaced fields:
can the client send an infinite number of 512 KB strings, or is there a limit? What is that limit?

## Security considerations

This proposal technically fixes a security concern regarding unbounded requests.

## Unstable prefix

It is difficult to implement this MSC in a namespaced way. Clients may already be encountering `413`
errors without the Matrix standardized error response, and so should generally expect to receive such
errors.

## Dependencies

None relevant.