mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-04-30 14:14:09 +02:00
Merge c175953e80 into 486a8f8764
This commit is contained in:
commit
1549efe8d6
|
|
@ -0,0 +1 @@
|
||||||
|
Clarify how multiple signatures should be handled during signature verification. Contributed by @nexy7574.
|
||||||
|
|
@ -1484,34 +1484,27 @@ the Policy Server for a signature too.
|
||||||
When a server receives an event over federation from another server, the
|
When a server receives an event over federation from another server, the
|
||||||
receiving server should check the hashes and signatures on that event.
|
receiving server should check the hashes and signatures on that event.
|
||||||
|
|
||||||
First the signature is checked. The event is redacted following the
|
First the signatures are checked. The event is redacted following the
|
||||||
[redaction
|
[redaction algorithm](/client-server-api#redactions), and
|
||||||
algorithm](/client-server-api#redactions), and
|
the resultant object is checked for signatures from the originating
|
||||||
the resultant object is checked for a signature from the originating
|
|
||||||
server, following the algorithm described in [Checking for a
|
server, following the algorithm described in [Checking for a
|
||||||
signature](/appendices#checking-for-a-signature). Note that this
|
signature](/appendices#checking-for-a-signature). Note that this
|
||||||
step should succeed whether we have been sent the full event or a
|
step should succeed whether we have been sent the full event or a
|
||||||
redacted copy.
|
redacted copy.
|
||||||
|
|
||||||
The signatures expected on an event are:
|
Unless the event is a 3rd party invite, only the signature(s) from the
|
||||||
|
originating server (the server the `sender` belongs to) are required for
|
||||||
|
verification. If a signature is from an unknown or expired key, it is skipped.
|
||||||
|
|
||||||
- The `sender`'s server, unless the invite was created as a result of
|
If the event is a 3rd party invite, the sender must already match the 3rd party
|
||||||
3rd party invite. The sender must already match the 3rd party
|
invite, and the server which actually sends the event may be a different
|
||||||
invite, and the server which actually sends the event may be a
|
server.
|
||||||
different server.
|
|
||||||
- For room versions 1 and 2, the server which created the `event_id`.
|
|
||||||
Other room versions do not track the `event_id` over federation and
|
|
||||||
therefore do not need a signature from those servers.
|
|
||||||
|
|
||||||
If the signature is found to be valid, the expected content hash is
|
Only signatures from known server keys are validated here. Any unknown keys are ignored.
|
||||||
calculated as described below. The content hash in the `hashes` property
|
In particular, the [policy server key](#validating-policy-server-signatures) is not
|
||||||
of the received event is base64-decoded, and the two are compared for
|
expected to be published and therefore should be skipped at this stage.
|
||||||
equality.
|
Additionally, any keys that are known to have expired prior to the event's
|
||||||
|
`origin_server_ts` are ignored.
|
||||||
If the hash check fails, then it is assumed that this is because we have
|
|
||||||
only been given a redacted version of the event. To enforce this, the
|
|
||||||
receiving server should use the redacted copy it calculated rather than
|
|
||||||
the full copy it received.
|
|
||||||
|
|
||||||
{{% boxes/note %}}
|
{{% boxes/note %}}
|
||||||
{{% added-in v="1.18" %}}
|
{{% added-in v="1.18" %}}
|
||||||
|
|
@ -1519,6 +1512,16 @@ Events sent in rooms with [Policy Servers](#policy-servers) have [additional](#v
|
||||||
signature validation requirements.
|
signature validation requirements.
|
||||||
{{% /boxes/note %}}
|
{{% /boxes/note %}}
|
||||||
|
|
||||||
|
If all signatures from known unexpired keys from the originating server(s) are
|
||||||
|
found to be valid, the expected content hash is calculated as described below.
|
||||||
|
The content hash in the `hashes` property of the received event is base64-decoded,
|
||||||
|
and the two are compared for equality.
|
||||||
|
|
||||||
|
If the hash check fails, then it is assumed that this is because we have
|
||||||
|
only been given a redacted version of the event. To enforce this, the
|
||||||
|
receiving server should use the redacted copy it calculated rather than
|
||||||
|
the full copy it received.
|
||||||
|
|
||||||
### Calculating the reference hash for an event
|
### Calculating the reference hash for an event
|
||||||
|
|
||||||
The *reference hash* of an event covers the essential fields of an
|
The *reference hash* of an event covers the essential fields of an
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue