cs3org / OCM-API

OpenCloudMesh API
38 stars 11 forks source link

Spec rewrite #103

Closed michielbdejong closed 1 month ago

michielbdejong commented 1 month ago

I'm running into some versioning questions. I think a goal is to keep full compatibility with existing 1.0-proposal1 servers. At the same time it would be bad to send a sharedSecret when the receiving server is also capable of using code. So I think code should be a capability.

Also, not all servers should be forced to implement support for multi protocol shares or for the shuffled single protocol format. So maybe we can announce that as capabilities too.

And then at the same time, full compatibility with incoming 1.0-proposal1 shares stays required.

michielbdejong commented 1 month ago

It does feel weird then that the default minimal server discovery document describes a server that uses sharedSecret. But we can just describe this in the spec, explain that it is for historical reasons and advise against using it.

michielbdejong commented 1 month ago

I now have the following sections, it's chronological in terms of what should happen before what, so I can actually create separate PRs to the existing README:

michielbdejong commented 1 month ago

The goal of this rewrite should mainly be to talk more about how trust is established. Other than that I think the existing spec in the readme file does a pretty good job. So I'll create separate PRs with smaller changes.

michielbdejong commented 1 month ago

I'll clean up the text with the new section headers and make that a separate PR, then take it from there.

michielbdejong commented 1 month ago

Here is a dump of my abandoned rewrite, for cherry-picking:

Open Cloud Mesh (OCM) is a server federation protocol that is used to notify a remote user that they have been granted access to some resource. It has similarities with authorization flows such as OAuth, as well as with social internet protocols such as ActivityPub and email.

Establishing recipient details

An OCM share creation may start in various ways. Here is a non-exhaustive list of examples. The initiation ends with the sending server knowing the receiving user id and OCM FQDN.

share with

In the simplest case, the sending user types in the receiving user or group id and the OCM FQDN. They may also select it from a list of contacts. The OCM FQDN the user can choose MAY be restricted to ones the sending server already trusts. The receiving user or group id the user can choose MAY be restricted to ones the user has established contact with using out-of-band invite codes.

The receiving server MAY expose a directory service for the sending server to discover potential recipient users and (federated) groups. The servers MAY also share a directory service such as a community-administered Authorization and Authentication Infrastructure of which both servers are a member, and where (federated) group information or user identifiers can be looked up.

invites

If Alice (alice at sender.com) and Bob (bob at receiver.com) know each other, yet they may not have a mechanism to trust any received share request, as that may be similar to receiving spam.

In this case, Alice may invite Bob to initiate a mutual trust relationship: on the provider side, the sender.com service MAY implement an interface for Alice to generate a single-use token and send it to Bob off-band (e.g. via e-mail). In addition, the sender.com service MAY integrate this interface with ScienceMesh, and only allow a curated white list of sites as receivers.

On the receiving end, assuming that Bob wishes to accept the invitation, the receiving server MAY provide an interface for Bob to input the received token, or to interact with the ScienceMesh directory. In any case, the receiving server SHOULD make a HTTP POST request to the /invite-accepted endpoint of the sending server, sending the token and disclosing Bob's identity details such as bob at receiver.com. If the token matches the one created earlier by Alice, the response MUST include Alice's identity details such as alice at sender.com.

Following this step, both services at sender.com and receiver.com MAY display, respectively, bob and alice as trusted or white-listed contacts, and enable sharing between them. Sites MAY enforce a policy to only accept shares between such trusted contacts, or MAY display a warning to users when a share from an unknown party is received.

For further details on this concept, see also #54 and related issues. For a discussion about trust policies, see sciencemesh#196.

Servers MAY also support the /invite-accepted capability, and if both the sending and the receiving server do, and both servers trust each other, then the invite flow may be used to bootstrap common knowledge of user identifiers between the participating users. If supported, this optional capability of OCM servers works as follows.

send a unique string

Say Alice wants to initiate a connection with Bob, with the goal of discovering Bob's user identifier and OCM server, and at the same time sending her own user identifier and OCM server information to Bob. Using an out-of-band communication channel (for instance email or voice), she shares a unique string with Bob. Bob passes this string on to his OCM server in some way. This might involve opening a URL at a redirect server and finding his OCM server in a list, copy-pasting the string into a graphical user interface, scanning a QR code with a smartphone application, etcetera.

server-to-server information exchange

The string contains the fully qualified domain name of Alice's OCM server, so Bob's server can use server config discovery (see above) to contact Alice's server. It can then make an invite-accepted request to it (see example), sharing a unique user identifier for Bob. Alice's server can respond and include a unique user identifier for Alice in the reply.

contacts interface

Next time Alice wants to share a resource with Bob, she will not have to input Bob's full user identifier and OCM server FQDN into her OCM server's interface. Instead, she will be able to select Bob from a list of contacts, and initiate the sharing from there.

share with

It uses a specific implementation of GNAP notifications, and a specific implementation of GNAP client instance discovery in case the client instance to which the notification is addressed is not (yet) registered at the AS.

public link to resource

In another scenario, Alice creates a public link for a resource on her account on server 1. Bob visits the GUI of server 1 to view it, and clicks 'save to my cloud bob@server2'. Since Bob has access to this resource, he is allowed to tell server 1 to share it forward, so server sends a notification to server 2. Bob now visits the GUI of server 2 to accept the share there.

The fact that Bob is allowed to do this means Bob is essentially a resource owner for this resource on server 1.

So then it's not much different from the share-with flow.

It can be interpreted as a client instance switching protocol: bob@server1 acts as an RO, registers server2 as a client instance, and grants bob@server2 access.

public link to invite

Likewise, Alice could create a public link that doesn't expose the document, but just allows people to send access requests to it by entering their OCM address.

Decision to send

In the share-with flow, the sender is (in OAUth terms) the Resource Owner who vets and registers the receiving server as a client instance, and triggers a notification.

Client instance registration may happen on the fly.

Scenario 1: only pre-trusted receiving servers. Scenario 2: dynamic client instance registration as part of invite accepting. Scenario 3: client instance discovery triggered by RO.

dynamic client registration

Although OCM is useful in a closed community such as a continent-wide network of universities that mutually trust each other, it can also be used in open mode, more like email or social networking, where a sending server is allowed to send an OCM share to ANY receiving server that understands it.

To enable this, the sending server needs to:

server config discovery

From a fully qualified domain name, the sending and receiving servers could discover information about each other by fetching https://<fqdn>/.well-known/ocm or (if that fails) https://<fqdn>/ocm-provider. If that also fails, they could try a DNS SRV lookup of _ocm._tcp.<fqdn> which could then for instance resolve to service = 10 10 443 <alt-fqdn>, after which discovery could be reattempted using <alt-fqdn> instead of <fqdn>.

The resulting configuration document can contain the following fields:

Notification of share creation

Suppose Alice has an account on a sending server (sender.com) and Bob has an account on a receiving server (receiver.com). The receiving server is registered as an API client of the sending server, or it MAY be registered dynamically as part of the process. Alice gestures that she wants to grant Bob access to a given resource, and wants him to be notified of this. In this scenario, suppose that the sending server knows the OCM endpoint of the receiving server (say https://receiver.com/ocm), and also knows some identifier of Bob's account at that server (say bob-153). The sending and receiving server also know each other's public key for http signatures. To send the notification, the sending server:

{ "shareWith": "bob-153@receiver.com", "code": "123456", "protocol": { "webdav": { "uri": "https://sender.com/webdav/some/folder/" } } }

* generates and adds http signature headers as described in [draft-cavage-http-signatures-12](https://datatracker.ietf.org/doc/html/draft-cavage-http-signatures-12)

## share creation request fields
The JSON object in the `/shares` POST body can have the following fields:
* REQUIRED `shareWith` - of the form `<receiver_id>@<fqdn>`, where `<receiver_id>` SHOULD be a user or group identifier, and `<fqdn>` should be the fully qualified domain name
of the receiving server.
* REQUIRED `code` - SHOULD contain a string that can be exchanged for a short-lived bearer token and refresh token using a signed POST to the sending server's `tokenEndpoint`. See "obtaining a bearer token" below.
* REQUIRED `protocol` - SHOULD have one or more sub-objects, as per the OCM protocol registry (see below).
* OPTIONAL `shareType` - can be omitted, or set to 'user', 'group' or 'federation', to add information to the `<receiver_id>` part of the `shareWith` field.
* OPTIONAL `name` - can be used in a notification to the receiving user(s), could be authored by the sender or generated automatically from for instance the file name and path of the resource being shared.
* OPTIONAL `resourceType` - can be for instance 'file' or 'folder', or other types depending on the protocol field.
* OPTIONAL `description` - human-readable string that describes the resource
* OPTIONAL `providerId` - identifier for this share, to be used to refer to it in notifications. Required if notifications are supported.
* OPTIONAL `sharedBy` - an identifier of the form `<sender_id>@<fqdn>` that describes the sending user or origin of this share.
* OPTIONAL `sharedByDisplayName` - a human-readable display name for the sending user or origin of this share.
* OPTIONAL `owner` - an identifier of the form `<sender_id>@<fqdn>` that describes the main authority in control of the resource.
* OPTIONAL `ownerDisplayName` - a human-readable display name for the main authority in control of the resource.

## OCM protocol registry
### `webdav`
To indicate a resource can be accessed via the WebDAV protocol. It may contain:
* REQUIRED `URI` - URI of the resource. The receiving server SHOULD make sure this URI is on a domain that is under the sending server's control.
* DEPRECATED `sharedSecret` - version 1.1 implementations of OCM expect a long-lived bearer token to be directly included here. This is not recommended.
### `webapp`
[...]
### ...
[...]

# Decision to receive
The share creation notification SHOULD be signed using httpsig. The receiving server MAY reject any incoming notifications from servers it doesn't explicitly trust,
or from OCM addresses who didn't go through the invite flow with the listed recipient OCM address.

# Notification of acceptance/rejection
The receiving server MAY respond with a [notification](https://cs3org.github.io/OCM-API/docs.html?branch=v1.1.0&repo=OCM-API&user=cs3org#/paths/~1notifications/post) of type `"SHARE_ACCEPTED"`
or `"SHARE_DECLINED"`.

This information MAY be shown to the sending user and/or to the administrator of the sending server.
If this information is shown, a revoke button MAY be presented alongside.

# Obtaining the access token
When the receiving server receives the request, it can obtain a bearer token by making a signed POST request to the `/token` path within the sending server's OCM API, with a JSON body:
```http
POST /ocm/token
Host: sender.com
Content-Type: application/json
request-target: post /ocm/token
Content-Length: 92
Host: localhost
Date: Tue, 03 Sep 2024 12:30:03 GMT
Digest: SHA-256=GgoXGmns9ORRxTwHEp8s4UJ6ehjaSQzHgxEbeBFE1is=
Signature: keyId="localhost",algorithm="rsa-sha256",headers="request-target,content-length,host,date,digest",signature="OSGjChaUHiHOfolJLkgdtjDIzeqdcZz42RciNtqaYH4DSifwl+qIoPvB/4ETTGTlizQvyJaPYYVuRWDJ/f+J/nW9FU+ZWahjsyIY/PYHY1ak3IAKUMCf/T/eoS67Tx6DtKCwj5tesN0r6LoMmakYYKNMD/2xM/2Mi8xl4pcPyWcoleRxG7uKsk8CBLahwiYs/OBPe4aJEX6pkdp7iYxTVVxMVOS9gJC/krJGgNx3fwBMPJ22aODRCEMsFnhgSKJPPlsu8hdIGx2A/HTQRI0Ys2Q7MV1Iq+V5vtX2tm9AqxdTxP1AxTHA1Zx38wXKQc5YrneGm4deI1Dph1/k95JyIQ=="

{
    "client_id": "receiver.com",
    "code": "123456"
}

To which the sending server's token endpoint could reply:

{
   "access_token": "asdfgh",
   "token_type": "bearer",
   "expires_in": 3600,
   "refresh_token": "qwertyuiop" 
}

Accessing the resource

With the access_token from the previous section, the receiving server could access the resource at its URI:

GET /webdav/some/folder/
Host: sender.com
Authorization: Bearer asdfgh

This completes the description of the basic Open Cloud Mesh mechanism. The rest of this specification details optional extensions and legacy versions of it.

sharedSecret-based resource access

In OCM version 1.1, for the webdav protocol, the resource could be accessed using a WebDAV request to the URI specified in protocol.webdav.URI, adding an Authorization: Bearer <protocol.webdav.sharedSecret> or Authorization: Bearer <protocol.options.sharedSecret> header. In OCM version 1.0, for the webdav protocol, the resource could be accessed using a WebDAV request a previously agreed URI, adding an Authorization: Basic <base64(protocol.webdav.sharedSecret + ':') or Authorization: Basic <base64(protocol.options.sharedSecret + ':')> header. The protocol.webdav.sharedSecret and protocol.options.sharedSecret fields SHOULD NOT be included in a share creation request unless the receiving server is known to support only older versions of OCM. When received, they SHOULD NOT be used unless the sending server is known to support only older versions of OCM.

Multi Factor Authentication

If an OCM provider exposes the capability /mfa-capable, it indicates that it will try and comply with a MFA requirement set as a permission on a share. If the sharer OCM provider trusts the receiver OCM provider, the sharer MAY set the permission mfa-enforced on a share, which SHOULD be honored. A compliant OCM provider that signals that it is MFA-capable MUST not allow access to a resource protected with the mfa-enforced permission, if the consumer has not provided a second factor to establish their identity with greater confidence.

Since there is no way to guarantee that the sharee OCM provider will actually enforce the MFA requirement, it is up to the sharer OCM provider to establish a trust with the OCM sharee provider such that it is reasonable to assume that the sharee OCM provider will honor the MFA requirement. This establishment of trust will inevitably be implementation dependent, and can be done for example using a pre approved allow list of trusted OCM providers. The procedure of establishing trust is out of scope for this specification: a mechanism similar to the ScienceMesh integration for the Invite capability may be envisaged.

Share Deletion

A "SHARE_ACCEPTED" notification followed by a "SHARE_UNSHARED" notification is equivalent to a "SHARE_DECLINED" notification.

Share Updating

TODO: document "RESHARE_CHANGE_PERMISSION"

Resharing the resource

The "REQUEST_RESHARE" and "RESHARE_UNDO" notification types MAY be used by the receiving server to persuarde the sending server to share the same resource with another share recipient. TODO: document how receiver.com can know if sender.com understood and processed the reshare request.