| Abstract: | A simple protocol for querying information for permissions. |
| Author: | Justin Kirby |
| Copyright: | © 1999 - 2011 XMPP Standards Foundation. SEE LEGAL NOTICES. |
| Status: | Retracted |
| Type: | Standards Track |
| Version: | 0.2 |
| Last Updated: | 2003-10-20 |
WARNING: This document has been retracted by the author(s). Implementation of the protocol described herein is not recommended. Developers desiring similar functionality are advised to implement the protocol that supersedes this one (if any).
1. Introduction
2. A More Formal Tone
3. Query List of ACL operations
4. Integrating with Service Discovery
5. Security Considerations
6. IANA Considerations
7. XMPP Registrar Considerations
8. Open Issues
Appendices
A: Document Information
B: Author Information
C: Legal Notices
D: Relation to XMPP
E: Discussion Venue
F: Requirements Conformance
G: Notes
H: Revision History
A Jabber travels further into the Jabber-as-Middleware world, it needs a protocol to determine "who can do what to whom". This proposal defines a protocol that enables any Jabber entity to determine the permissions of another Jabber entity, whether the context is a user JID querying a component for access, a client-to-client conversation, or a component asking another component about a request from a user.
All access control lists (ACLs) boil down to three aspects: Actor, Operation, and Target/Sink. With this in mind it becomes almost trivial to implement the basic query/response mechanism.
<iq to="security.capulet.com"
from="inventory.capulet.com"
type="get" id="1234">
<acl xmlns="http://jabber.org/protocol/sac"
actor="juliet@capulet.com/church"
oper="uri://capulet.com/inventory#obtain"
target="poison"/>
</iq>
Here we have the inventory.capulet.com component querying the security component as to whether juliet@ may obtain the requested poison.
Example 2. A response to the above query
<iq to="inventory.capulet.com"
from="security.capulet.com"
type="result" id="1234">
<acl xmlns="http://jabber.org/protocol/sac"
actor="juliet@capulet.com/church"
oper="uri://capulet.com/inventory#obtain"
target="poison">
<allowed/>
</acl>
</iq>
Unfortunately, the response is in the affirmative and the romantic tragedy follows.
The <acl> element provides the container for the query. It MUST have the three attributes: actor, oper, and target.
The actor attribute is set to the Jabber ID which is attempting to perform an operation. This need not be the JID sending the acl, although it may be. Remember this is to allow for the question, "Can X do Y to Z?", which is a question anyone can ask.
The oper attribute is application-specific and refers to the operation for which a permission check is required (e.g., read/write operations). This also defines the scope of the ACL check, so the implementation is responsible for interpreting the actor and target values based on the value of the 'oper' attribute.
The target is the object which the actor is trying to perform the operation on. This MUST be a node queryable via Service Discovery [1].
Requests MUST be in the form of an empty <acl/> element with ALL the attributes specified. If not all attributes are specified, the request is incomplete and ambiguities arise; therefore the entity receving the request MUST return a "bad request" error to the sender.
Responses MUST be in one of three forms: allowed, denied, error.
The response is inserted into the <acl/> as a child element. If the response is allowed, then <allowed/> is inserted. If the JID is denied then <denied/> is returned. If there is inadequate information then <error/> is used following the standard Jabber error scheme.
Example 3. A positive response
<iq to="inventory.capulet.com"
from="security.capulet.com"
type="result" id="1234">
<acl xmlns="http://jabber.org/protocol/sac"
actor="juliet@capulet.com/church"
oper="uri://capulet.com/inventory#obtain"
target="poison">
<allowed/>
</acl>
</iq>
Example 4. Negative response (denied)
<iq to="inventory.capulet.com"
from="security.capulet.com"
type="result" id="1234">
<acl xmlns="http://jabber.org/protocol/sac"
actor="juliet@capulet.com/church"
oper="uri://capulet.com/inventory#obtain"
target="poison">
<denied/>
</acl>
</iq>
<iq to="inventory.capulet.com"
from="security.capulet.com"
type="error" id="1234">
<acl xmlns="http://jabber.org/protocol/sac"
actor="juliet@capulet.com/church"
oper="uri://capulet.com/inventory#obtain"
target="poison"/>
<error code="404">No information available</error>
</iq>
To obtain a list of acl operations that a jid supports, you must send an empty <query/>
Example 6. querying for list of acl operations
<iq to="security.capulet.com"
from="inventory.capulet.com"
type="get" id="1234">
<query xmlns="http://jabber.org/protocol/sac"/>
</iq>
The to jid must then respond with a list of operations, if the jid supports SAC.
Example 7. response to the query
<iq to="inventory.capulet.com"
from="security.capulet.com"
type="result" id="1234">
<query xmlns="http://jabber.org/protocol/sac">
<oper uri="uri://capulet.com/inventory#obtain"/>
<oper uri="uri://capulet.com/inventory#add"/>
<oper uri="uri://capulet.com/inventory#remove"/>
</query>
</iq>
To follow.
To follow.
This document requires no interaction with the Internet Assigned Numbers Authority (IANA) [2].
As a result of this document, the XMPP Registrar [3] will need to register the 'http://jabber.org/protocol/sac' namespace.
Series: XEP
Number: 0074
Publisher: XMPP Standards Foundation
Status:
Retracted
Type:
Standards Track
Version: 0.2
Last Updated: 2003-10-20
Approving Body: XMPP Council
Dependencies: None
Supersedes: None
Superseded By: None
Short Name: sac
Schema: <>
Source Control:
HTML
This document in other formats:
XML
PDF
Email:
justin@openaether.org
JabberID:
zion@openaether.org
The Extensible Messaging and Presence Protocol (XMPP) is defined in the XMPP Core (RFC 3920) and XMPP IM (RFC 3921) specifications contributed by the XMPP Standards Foundation to the Internet Standards Process, which is managed by the Internet Engineering Task Force in accordance with RFC 2026. Any protocol defined in this document has been developed outside the Internet Standards Process and is to be understood as an extension to XMPP rather than as an evolution, development, or modification of XMPP itself.
The primary venue for discussion of XMPP Extension Protocols is the <standards@xmpp.org> discussion list.
Discussion on other xmpp.org discussion lists might also be appropriate; see <http://xmpp.org/about/discuss.shtml> for a complete list.
Errata can be sent to <editor@xmpp.org>.
The following requirements keywords as used in this document are to be interpreted as described in RFC 2119: "MUST", "SHALL", "REQUIRED"; "MUST NOT", "SHALL NOT"; "SHOULD", "RECOMMENDED"; "SHOULD NOT", "NOT RECOMMENDED"; "MAY", "OPTIONAL".
1. XEP-0030: Service Discovery <http://xmpp.org/extensions/xep-0030.html>.
2. The Internet Assigned Numbers Authority (IANA) is the central coordinator for the assignment of unique parameter values for Internet protocols, such as port numbers and URI schemes. For further information, see <http://www.iana.org/>.
3. The XMPP Registrar maintains a list of reserved protocol namespaces as well as registries of parameters used in the context of XMPP extension protocols approved by the XMPP Standards Foundation. For further information, see <http://xmpp.org/registrar/>.
Note: Older versions of this specification might be available at http://xmpp.org/extensions/attic/
END