-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdraft-ivov-xmpp-cusax-03.txt
616 lines (422 loc) · 25.4 KB
/
draft-ivov-xmpp-cusax-03.txt
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
Network Working Group E. Ivov
Internet-Draft Jitsi
Intended status: Informational E. Marocco
Expires: August 30, 2013 Telecom Italia
P. Saint-Andre
Cisco Systems, Inc.
February 26, 2013
CUSAX: Combined Use of the Session Initiation Protocol (SIP) and the
Extensible Messaging and Presence Protocol (XMPP)
draft-ivov-xmpp-cusax-03
Abstract
This document describes recommended practices for combined use of the
Session Initiation Protocol (SIP) and the Extensible Messaging and
Presence Protocol (XMPP). Such practices aim to provide a single
fully featured real-time communication service by using complementary
subsets of features from each of the protocols. Typically such
subsets would include telephony capabilities from SIP and instant
messaging and presence capabilities from XMPP. This specification
does not define any new protocols or syntax for either SIP or XMPP.
However, implementing it may require modifying or at least
reconfiguring existing client and server-side software. Also, it is
not the purpose of this document to make recommendations as to
whether or not such combined use should be preferred to the
mechanisms provided natively by each protocol (for example, SIP's
SIMPLE or XMPP's Jingle). It merely aims to provide guidance to
those who are interested in such a combined use.
Status of this Memo
This Internet-Draft is submitted in full conformance with the
provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering
Task Force (IETF). Note that other groups may also distribute
working documents as Internet-Drafts. The list of current Internet-
Drafts is at http://datatracker.ietf.org/drafts/current/.
Internet-Drafts are draft documents valid for a maximum of six months
and may be updated, replaced, or obsoleted by other documents at any
time. It is inappropriate to use Internet-Drafts as reference
material or to cite them other than as "work in progress."
This Internet-Draft will expire on August 30, 2013.
Ivov, et al. Expires August 30, 2013 [Page 1]
Internet-Draft Combined Use of SIP and XMPP February 2013
Copyright Notice
Copyright (c) 2013 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(http://trustee.ietf.org/license-info) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . . 3
2. Client Bootstrap . . . . . . . . . . . . . . . . . . . . . . . 4
3. Operation . . . . . . . . . . . . . . . . . . . . . . . . . . 5
4. Context . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
5. Federation . . . . . . . . . . . . . . . . . . . . . . . . . . 7
6. Security Considerations . . . . . . . . . . . . . . . . . . . 8
7. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 8
8. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . 8
9. Informative References . . . . . . . . . . . . . . . . . . . . 9
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . . 11
Ivov, et al. Expires August 30, 2013 [Page 2]
Internet-Draft Combined Use of SIP and XMPP February 2013
1. Introduction
Historically SIP [RFC3261] and XMPP [RFC6120] have often been
implemented and deployed with different purposes: from its very start
SIP's primary goal has been to provide a means of conducting
"Internet telephone calls". XMPP on the other hand, has, from its
Jabber days, been mostly used for instant messaging and presence
[RFC6121], as well as related services such as groupchat rooms
[XEP-0045].
For various reasons, these trends have continued through the years
even after each of the protocols had been equipped to provide the
features it was initially lacking:
o Today, in the context of the SIMPLE working group, the IETF has
defined a number of protocols and protocol extensions that not
only allow for SIP to be used for regular instant messaging and
presence but that also provide mechanisms for elaborated features
such as multi-user chats, server-stored contact lists, file
transfer and others.
o Similarly, the XMPP community and the XMPP Standards Foundation
have worked on defining a number of XMPP Extension Protocols
(XEPs) that provide XMPP implementations with the means of
establishing end-to-end sessions. These extensions are often
jointly referred to as Jingle and arguably their most popular use
case is audio and video calling.
Despite these advances, SIP remains the protocol of choice for
telephony-like services, especially in enterprises where users are
accustomed to features such as voice mail, call park, call queues,
conference bridges and many others that are rarely (if at all)
available in Jingle-based software. XMPP implementations, on the
other hand, greatly outnumber and outperform those available for
instant messaging and presence extensions developed in the SIMPLE WG,
such as MSRP [RFC4975] and XCAP [RFC4825].
For these reasons, in a number of cases adopters have found
themselves needing a set of features that are not offered by any
single-protocol solution but that separately exist in SIP and XMPP
products. The idea of seamlessly using both protocols together would
hence often appeal to service providers.
Most often the combined use of SIP and XMPP ("CUSAX") would employ
SIP exclusively for audio, video, and telephony services and rely on
XMPP for anything else varying from chat, contact list management,
and presence to whiteboarding and exchanging files.
This document explains how such hybrid offerings can be achieved with
Ivov, et al. Expires August 30, 2013 [Page 3]
Internet-Draft Combined Use of SIP and XMPP February 2013
a minimum of modifications to existing software while providing an
optimal user experience. It tries to cover points such as server
discovery, determining a SIP AOR while using XMPP and determining an
XMPP Jabber Identifier ("JID") from incoming SIP requests. Most of
the text here pertains to client behavior but it also recommends
certain server-side configurations.
Note that this document is focused on coexistence of SIP and XMPP
functionality in end-user-oriented clients. By intent it does not
define methods for protocol-level mapping between SIP and XMPP, as
might be used within a server-side gateway between a SIP network and
an XMPP network. A separate series of documents has been produced
that defines such mappings.
Finally, this document concentrates on use cases where the SIP and
the XMPP services are controlled by one an the same provider. This
document being of an informational nature, it is not unreasonable for
clients to apply some of the guidelines here even in cases where
there is no established relationship between the SIP and the XMPP
services. For example, it is reasonable for a client to provide a
means to its users to easily start a call to a phone number recorded
in a vCard. The exact set of rules to follow in such cases is left
to application developers.
2. Client Bootstrap
One of the main problems of using two distinct protocols when
providing one service is the impact on usability. E-mail services,
for example, have long been affected by the mixed use of SMTP for
outgoing mail and POP3 or IMAP for incoming mail, making it rather
complicated for inexperienced users to configure a mail client and
start using it with a new service. As a result, Internet service
providers often need to provide configuration instructions for
various mail clients. Client developers and communication device
manufacturers on the other hand often ship with a number of wizards
that enable users to easily set up a new account for a number of
popular e-mail services. While this may improve the situation to
some extent, the user experience is still clearly sub-optimal.
While it should be possible for CUSAX users to manually configure
their separate SIP and XMPP accounts, dual-stack SIP/XMPP clients
ought to provide means of online provisioning. While the specifics
of such mechanisms are outside the scope of this specification, they
should make it possible for a service provider to remotely configure
the clients based on minimal user input (e.g., only a user ID and
password).
Ivov, et al. Expires August 30, 2013 [Page 4]
Internet-Draft Combined Use of SIP and XMPP February 2013
Because many of the features that a CUSAX client would privilege in
one protocol would also be available in the other, clients should
make it possible for such features to be disabled for a specific
account. In particular, it is suggested that clients allow for
audio/video calling features to be disabled for XMPP accounts.
Additionally, instant messaging and presence features should also be
made optional for SIP accounts.
The main advantage of the above would be that clients would be able
to continue to function properly and use the complete feature set of
stand-alone SIP and XMPP accounts.
Once client bootstrap has completed, clients need to log in
independently to the SIP and XMPP accounts that make up the CUSAX
"service" and then maintain both these connections. In order to
improve user experience, when reporting connection status clients may
also wish to present the CUSAX XMPP connection as an "instant
messaging" or a "chat" account. Similarly they could also depict the
SIP CUSAX connection as a "Voice and Video" or a "Telephony"
connection. The exact naming is of course entirely up to
implementers. The point is that, in cases where SIP and XMPP are
components of a service offered by a single provider, such
presentation could help users better understand why they are being
shown two different connections for what they perceive as a single
service. It could alleviate especially situations where one of these
connections is disrupted while the other one is still active.
3. Operation
Once a CUSAX client has been provisioned/configured to connect to the
corresponding SIP and XMPP services it would proceed by retrieving
its XMPP roster. In order for CUSAX to function properly, XMPP
service administrators should make sure that at least one of the
vCard [RFC6350] "tel" fields for each contact is properly populated
with a SIP URI or a phone number when an XMPP protocol for vCard
storage (e.g., [XEP-0054] or [XEP-0292]) is used. There are no
limitations as to the form of that number. For example while
maintaining a certain consistency between SIP AORs and XMPP JIDs, it
is by no means required. It is quite important however that the
phone number or SIP AOR stored in the vCard be reachable through the
SIP aspect of this CUSAX service.
Additionally, clients that have separete triggers (buttons) for audio
and video calls may choose to use the presence or absence of the
"video" tel type defined in [RFC6350] and enable or disable the
possibility for starting video calls accordingly.
Ivov, et al. Expires August 30, 2013 [Page 5]
Internet-Draft Combined Use of SIP and XMPP February 2013
To ensure that the foregoing approach is always respected, service
providers might consider (1) preventing clients (and hence users)
from modifying the vCard "tel" fields or (2) applying some form of
validation before storing changes. Of course such validation would
be feasible mostly in cases where a single provider controls both the
XMPP and the SIP service since such providers would "know" (e.g.,
based on use of a common user database for both services) what SIP
AOR corresponds to a given XMPP user.
When rendering the XMPP roster CUSAX clients should make sure that
users are presented with a "Call" option for each roster entry that
has a properly set "tel" field even if calling has been disabled for
that particular XMPP account. The usefulness of such a feature is
not limited to CUSAX. After all, numbers are entered in vCards in
order to be dialed and called. Hence, as long as an XMPP client is
equipped with accounts that have calling features it may wish to
present the user with the option of using these accounts to reach
numbers from an XMPP vCard. In order to improve usability, in cases
where clients are provisioned with only a single telephony-capable
account they ought to do so immediately upon user request without
asking for confirmation. This way CUSAX users whose only account
with calling capabilities would often be the SIP part of their
service, would have a better user experience. If on the other hand,
the CUSAX client is aware of multiple telephony-capable accounts, it
ought to present the user with the choice of reaching the phone
number through any of them (including the source XMPP account where
the vCard was obtained) in order to guarantee proper operation for
XMPP accounts that are not part of a CUSAX deployment.
In addition to discovering phone numbers from vCards, clients may
also check presence broadcasts and the appropriate Personal Eventing
Protocol nodes as described in XEP-0152: Reachability Addresses
[XEP-0152].
The client should use XMPP for all other forms of communication with
the contacts from its roster, which will occur naturally because they
were retrieved through XMPP and only voice/video features were
disabled in the XMPP stack.
When receiving SIP calls, clients may wish to determine the identity
of the caller and a corresponding XMPP roster entry so that users
could revert to chatting or other forms of communication that require
XMPP. To do so clients could search their roster for an entry whose
vCard has a "tel" field matching the originator of the call.
In addition, in order to avoid the effort of iterating over an entire
roster and retrieving all vCards, when running in trusted SIP domains
[RFC5876] CUSAX clients may use XMPP JIDs that appear in P-Asserted-
Ivov, et al. Expires August 30, 2013 [Page 6]
Internet-Draft Combined Use of SIP and XMPP February 2013
Identity headers [RFC5122]. Using P-Preferred-Identity headers in
non-trusted domains is also a possibility, however only as a cue: the
actual AOR-to-JID binding would still need to be confirmed by a vCard
entry. If this confirmation succeeds the client would not need to
search the entire roster and retrieve all vCards.
4. Context
This document concentrates on problems related to one-to-one
communication. While it is possible for clients and other
specifications to build upon this and provide suggestions for
improving the Unified Communications user experience in cases of
multi-user chats in conference calling (e.g. ways of mapping XMPP
Multi-User Chatrooms to conference calls and vice versa) such
mechanisms are considered out of scope for this version of CUSAX.
5. Federation
In theory there are no technical reasons why federation would require
special behaviour from CUSAX clients. However, it is worth noting
that differences in administration policies may sometimes lead to
potentially confusing user experiences.
For example, let's say atlanta.example.com observes the CUSAX
policies described in this specification. All XMPP users at
atlanta.example.com are hence configured to have vCard-s that match
their SIP identities. Alice is therefore used to making free, high-
quality SIP calls to all the people in her roster. Alice can also
make calls to the PSTN by simply dialing numbers. She may even be
used to these calls being billed to her online account so she would
careful about how long they last. This is not a problem for her
since she can easily distinguish between a free SIP call (one that
she made by calling one her roster entries) from a paid PSTN call
that she dialed as a number.
Then Alice adds xmpp:[email protected]. The Biloxi domain only
has an XMPP service. There is no SIP server and Bob uses a regular,
XMPP-only client. Bob has however added his mobile number to his
vCard in order to make it easily accessible to his contacts. Alice's
client would pick up this number and make it possible for Alice to
start a call to Bob's mobile phone number.
This could be a problem because, other than the fact that Bob's
address is from a different domain, Alice would have no obvious and
straightforward cues telling her that this is in fact a call to the
PSTN. In addition to the potentially lower audio quality, Alice may
Ivov, et al. Expires August 30, 2013 [Page 7]
Internet-Draft Combined Use of SIP and XMPP February 2013
also end up unexpected charges for such calls.
In order to avoid such issues, providers maintaining a CUSAX service
for the users in their domain may choose to provide additional cues
(e.g. an audio tone or message) indicating that a call would incur
charges.
A slightly less disturbing scenario, where a SIP service would only
allow communication with intra-domain numbers would simply prevent
Alice from establishing a call with SIP's mobile. Providers should
hence make sure that calls to extra-domain numbers for with an
appropriate audio or text error-message.
6. Security Considerations
Use of the same user agent with two different accounts providing
complementary features introduces the possibility of mismatches
between the security profiles of those accounts or features. For
example, the SIP aspect and XMPP aspect of the CUSAX service might
offer different authentication options (e.g., digest authentication
for SIP as specified in [RFC3261] and SCRAM authentication [RFC5802]
for XMPP as specified in [RFC6120]). Similarly, a CUSAX client might
successfully negotiate Transport Layer Security (TLS) [RFC5246] when
connecting to the XMPP aspect of the service but not when connecting
to the SIP aspect. Such mismatches could introduce the possibility
of downgrade attacks. User agent developers and service providers
ought to ensure that such mismatches are avoided as much as possible.
Refer to the specifications for the relevant SIP and XMPP features
for detailed security considerations applying to each "stack" in a
CUSAX client.
It is important to note that blind use of the P-Asserted-Domain and
P-Preferred-Identity headers MUST NOT happen outside of trusted SIP
domains, or otherwise it would be
7. IANA Considerations
This document has no actions for the IANA.
8. Acknowledgements
This draft is inspired by the SIXPAC work from Markus Isomaki and
Simo Veikkolainen. Markus also provided various suggestions for
improving the documentation.
Ivov, et al. Expires August 30, 2013 [Page 8]
Internet-Draft Combined Use of SIP and XMPP February 2013
The authors would also like to thank the following persons for their
reviews and suggestions for improving this specification: Adrian
Georgescu, Daniel Pocock, Gonzalo Salgueiro, Kevin Gallagher, Olivier
Crete, Saul Ibarra Corretge, Sebastien Couture and Travis Reitter.
9. Informative References
[RFC3261] Rosenberg, J., Schulzrinne, H., Camarillo, G., Johnston,
A., Peterson, J., Sparks, R., Handley, M., and E.
Schooler, "SIP: Session Initiation Protocol", RFC 3261,
June 2002.
[RFC3264] Rosenberg, J. and H. Schulzrinne, "An Offer/Answer Model
with Session Description Protocol (SDP)", RFC 3264,
June 2002.
[RFC3489] Rosenberg, J., Weinberger, J., Huitema, C., and R. Mahy,
"STUN - Simple Traversal of User Datagram Protocol (UDP)
Through Network Address Translators (NATs)", RFC 3489,
March 2003.
[RFC3711] Baugher, M., McGrew, D., Naslund, M., Carrara, E., and K.
Norrman, "The Secure Real-time Transport Protocol (SRTP)",
RFC 3711, March 2004.
[RFC4474] Peterson, J. and C. Jennings, "Enhancements for
Authenticated Identity Management in the Session
Initiation Protocol (SIP)", RFC 4474, August 2006.
[RFC4566] Handley, M., Jacobson, V., and C. Perkins, "SDP: Session
Description Protocol", RFC 4566, July 2006.
[RFC4787] Audet, F. and C. Jennings, "Network Address Translation
(NAT) Behavioral Requirements for Unicast UDP", BCP 127,
RFC 4787, January 2007.
[RFC4825] Rosenberg, J., "The Extensible Markup Language (XML)
Configuration Access Protocol (XCAP)", RFC 4825, May 2007.
[RFC4975] Campbell, B., Mahy, R., and C. Jennings, "The Message
Session Relay Protocol (MSRP)", RFC 4975, September 2007.
[RFC5122] Saint-Andre, P., "Internationalized Resource Identifiers
(IRIs) and Uniform Resource Identifiers (URIs) for the
Extensible Messaging and Presence Protocol (XMPP)",
RFC 5122, February 2008.
Ivov, et al. Expires August 30, 2013 [Page 9]
Internet-Draft Combined Use of SIP and XMPP February 2013
[RFC5245] Rosenberg, J., "Interactive Connectivity Establishment
(ICE): A Protocol for Network Address Translator (NAT)
Traversal for Offer/Answer Protocols", RFC 5245,
April 2010.
[RFC5246] Dierks, T. and E. Rescorla, "The Transport Layer Security
(TLS) Protocol Version 1.2", RFC 5246, August 2008.
[RFC5389] Rosenberg, J., Mahy, R., Matthews, P., and D. Wing,
"Session Traversal Utilities for NAT (STUN)", RFC 5389,
October 2008.
[RFC5751] Ramsdell, B. and S. Turner, "Secure/Multipurpose Internet
Mail Extensions (S/MIME) Version 3.2 Message
Specification", RFC 5751, January 2010.
[RFC5766] Mahy, R., Matthews, P., and J. Rosenberg, "Traversal Using
Relays around NAT (TURN): Relay Extensions to Session
Traversal Utilities for NAT (STUN)", RFC 5766, April 2010.
[RFC5802] Newman, C., Menon-Sen, A., Melnikov, A., and N. Williams,
"Salted Challenge Response Authentication Mechanism
(SCRAM) SASL and GSS-API Mechanisms", RFC 5802, July 2010.
[RFC5853] Hautakorpi, J., Camarillo, G., Penfield, R., Hawrylyshen,
A., and M. Bhatia, "Requirements from Session Initiation
Protocol (SIP) Session Border Control (SBC) Deployments",
RFC 5853, April 2010.
[RFC5876] Elwell, J., "Updates to Asserted Identity in the Session
Initiation Protocol (SIP)", RFC 5876, April 2010.
[RFC6120] Saint-Andre, P., "Extensible Messaging and Presence
Protocol (XMPP): Core", RFC 6120, March 2011.
[RFC6121] Saint-Andre, P., "Extensible Messaging and Presence
Protocol (XMPP): Instant Messaging and Presence",
RFC 6121, March 2011.
[RFC6189] Zimmermann, P., Johnston, A., and J. Callas, "ZRTP: Media
Path Key Agreement for Unicast Secure RTP", RFC 6189,
April 2011.
[RFC6350] Perreault, S., "vCard Format Specification", RFC 6350,
August 2011.
[XEP-0045]
Saint-Andre, P., "Multi-User Chat", XSF XEP 0045,
Ivov, et al. Expires August 30, 2013 [Page 10]
Internet-Draft Combined Use of SIP and XMPP February 2013
February 2012.
[XEP-0054]
Saint-Andre, P., "vcard-temp", XSF XEP 0054, July 2008.
[XEP-0152]
Hildebrand, J. and P. Saint-Andre, "XEP-0152: Reachability
Addresses", XEP XEP-0152, October 2008.
[XEP-0292]
Saint-Andre, P. and S. Mizzi, "vCard4 Over XMPP", XSF
XEP 0292, October 2011.
Authors' Addresses
Emil Ivov
Jitsi
Strasbourg 67000
France
Phone: +33-672-811-555
Email: [email protected]
Enrico Marocco
Telecom Italia
Via G. Reiss Romoli, 274
Turin 10148
Italy
Email: [email protected]
Peter Saint-Andre
Cisco Systems, Inc.
1899 Wynkoop Street, Suite 600
Denver, CO 80202
USA
Phone: +1-303-308-3282
Email: [email protected]
Ivov, et al. Expires August 30, 2013 [Page 11]