-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathxep-0386.xml
More file actions
273 lines (249 loc) · 16.3 KB
/
xep-0386.xml
File metadata and controls
273 lines (249 loc) · 16.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE xep SYSTEM 'xep.dtd' [
<!ENTITY % ents SYSTEM 'xep.ent'>
%ents;
]>
<?xml-stylesheet type='text/xsl' href='xep.xsl'?>
<xep>
<header>
<title>Bind 2</title>
<abstract>This specification provides a single-request replacement for several activities an XMPP client needs to do at startup.</abstract>
&LEGALNOTICE;
<number>0386</number>
<status>Draft</status>
<lastcall>2024-04-01</lastcall>
<type>Standards Track</type>
<sig>Standards</sig>
<approver>Council</approver>
<dependencies>
<spec>XMPP Core</spec>
<spec>XMPP IM</spec>
<spec>XEP-0313</spec>
<spec>XEP-0280</spec>
</dependencies>
<supersedes/>
<supersededby/>
<shortname>bind2</shortname>
&ksmithisode;
&mwild;
<revision>
<version>1.1.0</version>
<date>2025-12-12</date>
<initials>dg</initials>
<remark><p>It's authorization-identifier not authorization-identity</p></remark>
</revision>
<revision>
<version>1.0.1</version>
<date>2024-07-02</date>
<initials>egp</initials>
<remark><p>Add an XML Schema.</p></remark>
</revision>
<revision>
<version>1.0.0</version>
<date>2024-04-04</date>
<initials>XEP Editor (dg)</initials>
<remark>Accept as Stable as per Council Vote from 2024-04-02.</remark>
</revision>
<revision>
<version>0.4.0</version>
<date>2022-10-07</date>
<initials>mw</initials>
<remark>
<p>Various changes, made in parallel with working client and server implementation experience, and SASL2 updates.</p>
<p>More tightly define the integration with XEP-0388 and several session feature XEPs: XEP-0198, XEP-0280, XEP-0352.</p>
<p>Replace the custom latest-id element with the new metadata element from XEP-0313, which also provides richer information.</p>
<p>Drop unread tracking, as this is a deep topic not directly related to resource binding. Instead the details of integration with other extensions have been better defined and demonstrated, to allow such functionality when it is fully defined and exists.</p>
<p>Adjust proposed namespace on aesthetic grounds and consistency with SASL2's approach. As this protocol may become part of the new preferred connection flow for a long time to come, it makes no sense to include the redundant and potentially confusing '2' when there is no conflict without it. Similarly, the '.0' has been dropped from the XEP's title, as it isn't really a version number.</p>
<p>Allow the client some influence over the resulting resource identifier, and define a standard format for these combined identifiers.</p>
<p>Specify that servers should terminate old sessions from a client when it binds a new resource.</p>
</remark>
</revision>
<revision>
<version>0.3.0</version>
<date>2019-01-31</date>
<initials>kis</initials>
<remark>Begrudingly allow non-unread-tracking servers, mention SASL2.</remark>
</revision>
<revision>
<version>0.2.0</version>
<date>2018-02-08</date>
<initials>XEP Editor (jc)</initials>
<remark>Defer due to lack of activity.</remark>
</revision>
<revision>
<version>0.1.0</version>
<date>2017-02-08</date>
<initials>XEP Editor: ssw</initials>
<remark><p>First draft accepted by the XMPP Council.</p></remark>
</revision>
</header>
<section1 topic='Introduction' anchor='intro'>
<p>Every session on XMPP generally has a unique routable identifier, known as a "resource". Many details and rules about resources in XMPP can be found in &rfc6120;. This core RFC also describes how to "bind" a resource identifier to a session. This is a key part of session establishment for practically all XMPP clients. This specification describes an alternative protocol for resource binding than the one described in RFC 6120, based on &xep0388;.</p>
<p>As XMPP has grown more feature-rich over time, more steps have been introduced that clients are likely to perform at startup, e.g. resource binding, archive synchronisation, enabling Carbons. Some of these introduce race conditions - e.g. if a client synchronises the archive before enabling Carbons, it can miss stanzas sent between these events, or if it enables Carbons before synchronising the archive it can receive duplicate messages. It may also cause duplicate messages by combining archive synchronisation and receipt of offline messages, or by receipt of messages addressed to the full JID between resource binding and archive synchronisation. Therefore, this document provides a mechanism for atomically performing these operations to avoid these race conditions. It also allows the server to provide information to a client that is generally useful about the state of the user's account.</p>
</section1>
<section1 topic='Requirements' anchor='reqs'>
<ul>
<li>Reduce round-trips and race conditions by providing a single atomic session establishment operation, with support for common session features such as &xep0280;, &xep0313; and &xep0198;. It should also be extensible to additional protocols as needed.</li>
<li>Integrate with SASL2 (XEP-0388) for further round-trip reduction and simpler session establishment.</li>
</ul>
</section1>
<section1 topic='Use Cases' anchor='usecases'>
<section2 topic='Discovering support'>
<p>If a server supports Bind 2, it MUST advertise this within the SASL2 <inline/> element in the stream features, with a feature named 'bind' in the namespace 'urn:xmpp:bind:0'.</p>
<p>Clients do not advertise support for Bind 2.</p>
<p>Bind 2 supports inline negotiation of certain features specific to a session. The features supported by the server for such inline negotiation MUST be included in an <inline/> child element within the bind feature element. Each feature is listed as a <feature/> child element with a 'var' attribute indicating the extension's defined service discovery feature name or namespace.</p>
<example caption='Server advertises support in stream features'><![CDATA[
<stream:features>
<authentication xmlns='urn:xmpp:sasl:2'>
<mechanism>SCRAM-SHA-1</mechanism>
<mechanism>SCRAM-SHA-1-PLUS</mechanism>
<inline>
<bind xmlns='urn:xmpp:bind:0'>
<inline>
<feature var="urn:xmpp:carbons:2" />
<feature var="urn:xmpp:csi:0" />
<feature var="urn:xmpp:sm:3" />
</inline>
</bind>
<sm xmlns='urn:xmpp:sm:3'/>
</inline>
</authentication>
</stream:features>
]]></example>
<p>Bind 2 is never supported without SASL2, and so servers without support for SASL2 MUST NOT advertise the feature. Servers supporting SASL2 and Bind 2 may continue to offer legacy resource binding to clients.</p>
</section2>
<section2 topic='Performing the bind' anchor='bind-request'>
<p>To request resource binding, the client MUST include a <bind/> element, qualified by the 'urn:xmpp:bind:0' namespace, in its SASL2 <authenticate/> request.</p>
<p>The <bind/> element MAY contain the following child elements:</p>
<ul>
<li><tag/>: This element contains a short text string that typically identifies the software the user is using, mostly useful for diagnostic purposes for users, operators and developers. This tag may be visible to other entities on the XMPP network (see <link url='#security'>Security Considerations</link>).</li>
</ul>
<p>Additionally, the <bind/> element MAY contain one or more child elements in other namespaces, representing features that the client requests to be automatically enabled for its new session.</p>
<example caption='Client provides a resource bind request'><![CDATA[
<authenticate xmlns='urn:xmpp:sasl:2' mechanism='SCRAM-SHA-1'>
<initial-response>[base64 encoded SASL data]</initial-response>
<bind xmlns='urn:xmpp:bind:0'>
<tag>AwesomeXMPP</tag>
</bind>
</authenticate>
]]></example>
<example caption='Client provides a resource bind request, additionally requesting some session features'><![CDATA[
<authenticate xmlns='urn:xmpp:sasl:2' mechanism='SCRAM-SHA-1'>
<initial-response>[base64 encoded SASL data]</initial-response>
<bind xmlns='urn:xmpp:bind:0'>
<tag>AwesomeXMPP</tag>
<enable xmlns='urn:xmpp:carbons:2'/>
<enable xmlns='urn:xmpp:sm:3'/>
<inactive xmlns='urn:xmpp:csi:0'/>
</bind>
</authenticate>
]]></example>
<p>If the client included a <bind/> element in its SASL2 <authenticate/> then the server MUST process the bind request after authentication is successful (including any necessary subsequent SASL2 tasks), but before sending the <success/> response. Following the usual rules of SASL2, the bind request MUST NOT be processed (i.e. it should be ignored) if the authentication is not successful.</p>
<p class='box'>Note: If the client included a <resume/> element in its SASL2 negotiation, that MUST be processed first by the server. If that resumption is successful, the server MUST skip resource binding (a resumed session already has a resource bound) and MUST entirely ignore the <bind/> request. If resumption of the previous stream fails, the server MUST include the XEP-0198 failure in the response, and then MUST proceed to process the bind request to establish a new session for the client.</p>
<p>Upon processing the bind request, the server MUST perform several operations, including:</p>
<ul>
<li>Clear the offline messages for this user, if any, without sending them (as they will be provided by MAM).</li>
<li>Generate a resource identifier (per the rules below) and bind it to the current stream</li>
<li>Get the archive id of the newest stanza in the user's MAM archive</li>
<li>Enable any additional features requested by the client for this session</li>
</ul>
<p>Upon successful binding of a resource, the server SHOULD terminate any earlier sessions from the same client (identified by the <user-agent> 'id' attribute in its SASL2 authentication request).</p>
<section3 topic='Resource identifier generation' anchor='identifiers'>
<p>If the client provided a <tag/> element in its bind request, the text content of that element SHOULD be included as-is in the final resource identifier, subject to the necessary validation for resource identifiers. This tag can help with client identification and debugging. The RECOMMENDED format is to include the client tag as a prefix of the server-generated identifier, separated by a single '/' character: <tt>[client tag]/[server generated identifier]</tt>. For example, <tt>AwesomeXMPP/rQ7Lwut0CcxW6</tt>.</p>
<p>Servers MAY choose to assign stable resource identifiers to clients, i.e. ensuring the same client will receive the same resource identifier for every bind request it makes. If a server or deployment provides resource identifier stability, the generated identifier SHOULD remain stable for every bind request with the same <tag/> and SASL2 <user-agent> id. The SASL2 <user-agent> id itself MUST NOT be exposed by the server in the generated resource identifier.</p>
</section3>
<p>After processing the bind request as described above, the server MUST respond with the SASL2 <success/> element, including the client's full JID in the <authorization-identifier/> element (specified in &xep0388;), and a <bound/> element qualified by the 'urn:xmpp:bind:0' namespace, as in the following example:</p>
<example caption='Server responds after processing the bind'><![CDATA[
<success xmlns='urn:xmpp:sasl:2'>
<authorization-identifier>[email protected]/AwesomeXMPP.4232f4d4</authorization-identifier>
<bound xmlns='urn:xmpp:bind:0'>
<metadata xmlns='urn:xmpp:mam:2'>
<start id='YWxwaGEg' timestamp='2008-08-22T21:09:04Z' />
<end id='b21lZ2Eg' timestamp='2020-04-20T14:34:21Z' />
</metadata>
</bound>
</success>
]]></example>
<p>The server SHOULD include a <metadata/> element as defined by XEP-0313, describing the state of the user's message archive at the precise time of resource binding. This helps the client determine what queries it may need to perform to synchronise messages.</p>
<p>Interactions with certain other extensions are hereby defined in this document:</p>
<ul>
<li>If the client included a XEP-0198 <enable/> element in the requested features, Stream Management should be enabled at this point. The <bound/> response MUST contain the resulting XEP-0198 <enabled/> (or <failed/>) element. For full business rules, syntax and examples, see XEP-0198.</li>
<li>If the client included a XEP-0280 <enable/> element in the requested features, Message Carbons MUST be enabled at this point. As this operation MUST succeed, no response is necessary.</li>
<li>If the client included a XEP-0352 <active/> or <inactive/> element, the session must begin in that state.</li>
</ul>
<p>The <bound/> response MUST also contain any defined responses to other enabled features, if any, though details of these are beyond the scope of this specification.</p>
</section2>
</section1>
<!--<section1 topic='Business Rules' anchor='rules'>
<p>OPTIONAL.</p>
</section1>
<section1 topic='Implementation Notes' anchor='impl'>
<p>OPTIONAL.</p>
</section1>-->
<section1 topic='Security Considerations' anchor='security'>
<p>This specification mostly combines existing protocols together. Security considerations defined in those XEPs should be heeded as normal.</p>
<p>The additional facility provided here to provide information on the user's archive is provided post-authentication and is only providing the user's data to the user.</p>
<p>Implementations must adhere to the security considerations defined in XEP-0388 regarding the inclusion of SASL2 requests and inline feature negotiation in TLS 0-RTT ("early data") extensions. That is, they MUST NOT be sent or processed, except when appropriate mitigations are in place (which are beyond the scope of this document, but may be defined by others).</p>
<p>As it forms part of the resource identifier and therefore the full JID of the session, the 'tag' value provided by the client (if any), may be visible to other XMPP entities on the network that the client communicates with or that have access to the user's presence. The simple name of the client can provide value to users, operators and developers diagnosing issues, and it generally will not reveal more information than would be already available through service discovery. Unless they are operating in fully trusted environments, clients MUST NOT use identifiers that might reveal private information about a user or their system (such as hostnames).</p>
</section1>
<section1 topic='IANA Considerations' anchor='iana'>
<p>None.</p>
</section1>
<section1 topic='XMPP Registrar Considerations' anchor='registrar'>
<p>The urn:xmpp:bind:0 namespace must be registered..</p>
</section1>
<section1 topic='XML Schema' anchor='schema'>
<code><![CDATA[
<?xml version='1.0' encoding='UTF-8'?>
<xs:schema
xmlns:xs='http://www.w3.org/2001/XMLSchema'
xmlns:mam='urn:xmpp:mam:2'
xmlns='urn:xmpp:bind:0'
targetNamespace='urn:xmpp:bind:0'
elementFormDefault='qualified'>
<xs:annotation>
<xs:documentation>
The protocol documented by this schema is defined in
XEP-0386: https://xmpp.org/extensions/xep-0386.html
</xs:documentation>
</xs:annotation>
<xs:import namespace='urn:xmpp:mam:2'
schemaLocation='xep-0313.xsd'/>
<xs:element name='bind'>
<xs:complexType>
<xs:choice>
<xs:element ref='inline'/>
<xs:sequence>
<xs:element ref='tag' minOccurs='0'/>
<xs:any namespace='##other' minOccurs='0' maxOccurs='unbounded' processContents='lax'/>
</xs:sequence>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name='inline'>
<xs:complexType>
<xs:sequence>
<xs:element ref='feature' maxOccurs='unbounded'/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name='feature'>
<xs:complexType>
<xs:attribute name='var' type='xs:string'/>
</xs:complexType>
</xs:element>
<xs:element name='tag' type='xs:string'/>
<xs:element name='bound'>
<xs:complexType>
<xs:sequence>
<xs:element ref='mam:metadata' minOccurs='0'/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
]]></code>
</section1>
<section1 topic='Acknowledgements' anchor='acknowledgements'>
<p>Thanks to Daniel Gultsch, Philipp Hörist, Thilo Molitor and Andrzej Wójcik for their valuable support with feedback, suggestions and implementations.</p>
</section1>
</xep>