AllJoyn™ Security 2.0 Feature High-Level Design
Introduction
Purpose and scope
This document captures the system level design for the enhancements to the AllJoyn™ framework to support the Security 2.0 feature requirements. Related interfaces and API design is captured at a functional level. Actual definition for interfaces and APIs is outside the scope of this document. Features and functions are subject to change without notice.
Revision history
Revision | Date | Change Log |
---|---|---|
Rev 1 Update 0 | August 8, 2014 | Update with new format and comments |
Rev 1 Update 1 | August 27, 2014 | Update with comments from the collaboration meeting |
Rev 1 Update 2 | September 8, 2014 | Update with comments and agreement from the technical conference call on September 3, 2014. |
Rev 1 Update 3 | October 30, 2014 | Update the authorization data section based on agreement from the technical conference call on October 14, 2014. |
Rev 1 Update 4 | December 23, 2014 | Update the Certificate section and changes listed in JIRA tickets ASACORE-1170, 1256, 1259, 1260. |
Rev 1 Update 5 | January 15, 2015 | Update the rule enforcing table after the conference call on Janurary 13, 2015 by the Security2.0 working group. |
Rev 1 Update 6 | March 31, 2015 | Update the authorization data after the conference call on Janurary 20, 2015 by the Security2.0 working group. Updated the permission matrix to reflect the concept of Provide permission. Updated based on review comments by the Security 2.0 working group on March 6, 2015. Add the updated information on Security Manager and manifest from the Wiki Updated based on review comments by the Security 2.0 working group on March 13, 2015 and on March 19, 2015. Updated based on open issue discussion on March 23, 2015. Updated based on comments on March 31, 2015 short review. Updated the authorization data search algorithm section based on reviews comment. Updated based on discussion on April 28, 2015. Updated based on discussion on May 5, 2015. |
Rev 1 Update 7 | May 28, 2015 | Simplified access rule selection by removing priority and enforcement explicit deny rules regardless of degree of match. Simplifying to aid in comprehension Corrected text describing policy generated after being claimed to match the specified policy; outgoing messages are allowed for ANY_TRUSTED. Corrected generated policy to indicate there are two entries for members under the ANY_TRUSTED ACL Changed the description of the generated policy to indicate it is not an example, it is the policy to be generated, and recommend certification test be created to verify this. Corrected a couple of places, in definition and description of session establishment, to indicate that membership certificate trust requies a signature chain including the security group authority rather than any certificate authority. |
Future revisions | June 12, 2015 | See git submissions for change notes. |
Acronyms and terms
Acronym/term | Description |
---|---|
About data | Data from the About feature. For more information, refer to the About Feature Interface Spec. |
ACL | Access Control List |
AES CCM | The Advanced Encryption Standard 128-bit block cypher using Counter with CBC-MAC mode. Refer to RFC 3610 for more information. |
AllJoyn framework | Open source peer-to-peer framework that allows for abstraction of low-level network concepts and APIs. |
Authentication GUID | The Authentication GUID is a GUID assigned to a keystore for authentication purposes. This GUID is persisted in the keystore and provides a long-term identity for the keystore. Typically, this GUID is associated with a single application. In the scenario where a group of related applications share a given keystore, they also share the same authentication GUID. This GUID is used as a mapping key for storing and accessing authentication and encryption keys. All key materials associated with another peer is stored in the keystore with the peer’s authentication GUID as the mapping key. |
Certificate Authority (CA) | Entity that issues a digital certificate |
Consumer | An AllJoyn application consuming services on the AllJoyn network. |
Device | A physical device that may contain one or more AllJoyn applications. In this document, whenever the term “device” is used, it indicates the system application of the given physical device. |
DSA | Digital Signature Algorithm |
ECC | Elliptic Curve Cryptography |
ECDHE | Elliptic Curve Diffie-Hellman Ephemeral key exchange |
ECDHE_ECDSA | ECDHE key agreement with asymmetric DSA based authentication. |
ECDHE_NULL | ECDHE key agreement only. No authentication. |
ECDHE_PSK | ECDHE key agreement with pre-shared symmetric key based authentication. |
Factory-reset application | An application restored to the original configuration. |
Grantee | The application or user who is the subject of a certificate. |
GUID | Globally Unique Identifier. A 128 bit identifier generated randomly in a way that the probability of collision is negligible. |
Subject | The application or user possessing a private key associated with the certificate. |
Keystore | A repository of security keys and certificates. An application instance can have at least one keystore. A keystore is associated with a bus attachment. If an application uses multiple bus attachments, it can have more than one keystore. Multiple applications running as the same user can choose to share the same keystore, but if they do, they are treated as the same security principal. |
OOB | Out Of Band |
Peer | A remote application participating in the AllJoyn messaging. |
Permission module | The AllJoyn Core module that handles all the permission authorization. |
Producer | An AllJoyn application providing services on the AllJoyn network. |
Security Group | A logical grouping of devices, applications, and users. It is identified by a group ID which is a GUID and the security group authority public key. An application can be installed with a policy to expose services to members of the security group. An application or user holding a membership certificate is in fact a member of the security group. Any member of the security group can access the services exposed to the group by the applications with ACLs defined for that group. |
Security Group Authority | A security group authority is the user or application that defines the security group and grant membership certificates to other. The security group authority is the certificate authority for that group. |
Security Manager | A service used to manage cryptographic keys, and generate and distribute certificates. |
SHA-256 | Secure Hash Algorithm SHA-2 with digest size of 256 bits or 32 bytes. |
User | The person or business entity interacting with AllJoyn applications. |
System Design
Overview
The goal of the Security 2.0 feature is to allow an application to validate access to interfaces or objects based on policies installed by the owner. This feature is part of the AllJoyn Core library. It is not an option for the application to enforce permission. It is up to the user to dictate how the application performs based on the access control lists (ACLs) defined for the application. The AllJoyn Core Permission component does all the enforcement including the concept of mutual or one-way authorization before any message action can be taken.
The Security Manager is a service that helps the user with key management and permission rules building. Using the application manifest template defined by the application developer, the Security Manager builds the manifest consisting of access control lists to let the end-user authorize which interactions the application can do. An application developer does not have to build a security manager. The permission can be installed by another application or another security manager.
In addition to the encrypted messaging (using AES CCM) between the peers, the Security 2.0 Permission module manages a database of access credentials and the Access Control Lists (ACLs).
Figure shows the system architecture of the Security 2.0 feature.
Figure: Security system diagram
Premises
The following Table lists the premises for the Security 2.0 features. Table: Security 2.0 premises
Topic | Definition | Premises |
---|---|---|
Identity | The application security principal | Each peer is identified by an authentication GUID and a cryptographic public key |
Admin | An admin (or administrator) is a security principal with administrator privilege for the application |
|
Claim | Incorporate a factory-reset application with the Permission Module |
|
Policy | A policy is a list of ACLs governing the behavior of an application A policy template is a list of rules defined by the application developer to guide the admin for policy building. |
|
Membership certificate | A membership certificate is the proof of a security group membership |
|
Identity certificate | Certificate that signs the identity information. |
|
Manifest data | The permission rules accompanying the identity certificate |
|
Security Manager | A service used to manage cryptographic keys, and generate certificates. |
|
Typical operations
The following subsections describe the typical operations performed by a user.
Assumptions
In all the flows listed in this section, the Security Manager is assumed to be claimed by another Security Manager or to be self-claimed. The certificates may have been issued from sources in the cloud. As the result, the Security Manager is shown with one certificate authority and an identity certificate.
Sample Certificates and Policy Entries
The following is a high level presentation of certificates and policy entries used in the flows in this section.
Figure: Sample Certificates and ACL entries
The peer types
The following peer types are supported in the permission policy. A peer may match many of the peer types.
Peer Type | Description |
---|---|
ALL | This matches all peers including an anonymous peer using ECDHE_NULL key exchange. |
ANY_TRUSTED | This matches any authenticated peer for all authentication methods except ECDHE_NULL key exchange. |
FROM_CERTIFICATE_AUTHORITY | This matches any peer authenticated via ECDHE_ECDSA key exchange and its identity certificate’s trust is verified against the specific certificate authority listed in the policy for this type of peer. |
WITH_PUBLIC_KEY | This matches a peer with the specific public key. The peer is authenticated via ECDHE_ECDSA key exchange. Its identity certificate’s trust is verified against any of the application’s certificate authorities (including the security group authorities). |
WITH_MEMBERSHIP | This matches any peer with possession of a membership certificate with the specific security group ID. The peer is authenticated via ECDHE_ECDSA key exchange. Its identity certificate’s trust is verified against any of the application’s certificate authority (including the security group authorities). The subject of the membership certificate must be the peer’s public key. |
Define a security group
Any user can define a security group (logical grouping of applications and users) using a Security Manager. When the user specifies a security group name (for display purpose), the Security Manager creates the security group ID (a GUID value).
Required Key Exchanges
The framework requires either ECHDE_NULL or ECDHE_PSK key exchange for the claim process. Once the application is claimed, only the ECDHE_ECDSA key exchange is allowed unless the policy allows for anonymous user; in such case, ECDHE_NULL is acceptable.
Certificate exchange during session establishment
During the AllJoyn ECHDE_ECDSA key exchange and session establishment, the peers exchange identity certificates, manifests, and all membership certificates. Since all the membership certificates are exchanged, there is a potential information disclosure vulnerability. It is desired to have a more intelligent selection algorithm to provide membership certificates on demand and need-to-know basis. This algorithm needs to take into account the latency of the certificate exchange during the method call invocation.
The bus attachment trusts the peer if the issuer of the peer’s identity certificate is any of its certificate authorities and any of the security group authorities listed in the application’s policy.
After the session key is generated, the peers exchange all the membership certificates. Each membership certificate’s trust is checked against the public key of the authority of the security group.
Figure: Exchange manifest and membership certificates
The identity certificate chain is exchanged during the ECDHE_ECDSA key exchange process. The org.alljoyn.Bus.Peer.Authentication interface is not enforced with permission.
Claim a factory-reset application
Using a Security Manager any user can claim any factory-reset application. The factory-reset application is assumed to be already onboarded to the network. It is recommended the claiming process occurs during the onboarding process while the peers are connected via the SoftAP.
Figure: Recommend to claim during onboarding
Claiming is a first-come, first-claim action. The user installs an admin security group. The procedure to make the application to become claimable again is manufacturer-specific. See the FactoryReset() in the Configuration interface. There will be an API call that allows the application to make itself claimable again.
Claim factory-reset application without out-of-band registration data
Figure: Claim a factory-reset application without using out-of-band registration data
The identity certificate will be used for authentication in the ECDHE_ECDSA key exchange.
Claim factory-reset application using out-of-band registration data
An application manufacturer can provision a key or the application can dynamically generate a key to support the claiming process. The ECDHE_PSK key exchange is used in this scenario. The key is provided to the user out of band. An example is a QR code or a token delivered via email or text messaging. The user is prompted for the key when establishing a connection with the factory-reset application.
Figure: Claiming a factory-reset application using out-of-band registration data
Example of building a policy
A user uses a Security Manager application to build a policy. The Security Manager application queries the About data and manifest templates from the application. The Security Manager application can do further introspection of the application for the detailed information of securable interfaces and secured objects, and prompt the user to select the permissions to include in the policy.
A policy may contain a number of ACLs. Please refer to section (Policy ACL format) for more information.
Install a policy
An admin can install a policy for the application.
When a policy is installed, the core framework may expire master secrets including existing session keys if it is not able to apply the new policy without re-authenticating the peer. Resource constrained devices are most likely to expire master secrets. Expiring keys will cause existing sessions to terminate.
Figure: Install a policy
Update a manifest
An admin can update a manifest for the application. This involves resigning the identity certificate because the new digest of the manifest must be included in the identity certificate.
Figure: Update manifest
Add an application to a security group
An admin issues a membership certificate with the given security group ID and provides it to the application to install in its keystore. This act adds the application to the security group.
Figure: Add an application to a security group
Add a user to a security group
The security group authority uses the Security Manager to generate the membership certificate for another user for the given security group ID.
In the following flow, the security group authority named “user” provides a membership certificate for security group LivingRoomGUID to the other user named “user2.”
Figure: Add a user to a security group
Security Manager
Introduction
The AllJoyn security 2.0 ecosystem consists of many applications and devices. Those applications and devices are deployed in various setups and for them it is impossible to know up front what other peers they will see around them let alone know how they should interact with them. Which peers can be trusted, which rights do those peers have… So after being deployed, applications and devices have to be configured. The people in charge of configuring the system, the administrators need a service for this. Such a service is called a security manager.
Depending on your setup, you need a different service. A large enterprise has different requirements than a home does. Not all administrators have a strong technical background. A tool for home users should have a straightforward, understandable user interface (hiding the more complex features). These simplifications should be done inside the security manager, so it is transparent for applications and devices in which setup they are deployed. Application developers should make no distinction between enterprise and small home.
A security configuration consists of two parts: 1. Certificates: certificates provide proof that an application is managed by a security manager. They can be used to gain access to resources of other peers or to provide resources themselves to others. The certificates describe the rights the subject has. 2. Policy: A policy is a list of Access Control Lists (ACLs). These ACLs describe how other peers can access the holder of the policy.
Security managers use AllJoyn to transfer this configuration to applications and devices they manage.
Security Manager Architecture
A security manager is a service that can take multiple forms. For a home setup it can be a single application accessed by one person. For an enterprise setup, multiple administrators need to use it, so its core can run on a server, with some local application talking to it. When discussing the functional blocks of the security manager, it is important to understand that those blocks can reside on different machines and that for some of these we even have multiple instances.
- The manager provides certificates. In order to generate and sign certificates, it needs to have a certificate authority (CA).
- Configuration storage: The security manager should keep track of what the configuration looks like. To do so, it should persist the configuration data.
- UI: The administrator needs to interact with the security manager in order to make configuration changes. The user interface doesn't need to be part of the manager itself. It could be running in a web browser or it could offer a REST API, so that custom UI can be built on top.
- AllJoyn Agent (security manager agent): Configuration updates are sent using AllJoyn as the communication protocol. The agent is the component which does the interaction with the managed peers.
The following assumptions are made: The four functional blocks of the security manager can be combined into a single application, but it should be possible to run them in different applications or even on different hosts. A security manager can have multiple security manager agents acting on its behalf. The security manager topology is transparent for AllJoyn applications. A security manager is identified by the public key of its CA. We call this the key of the security manager.
The Alliance envisions multiple implementations of security managers and does not provide implementation specifications. The Alliance does specify a set of interfaces that allow the security managers to interact with AllJoyn security 2.0 based applications and devices.
What the Security Manager manages
We already mentioned a number of times that a security manager manages applications and devices. But what does it mean and do we really manage applications and devices? The security manager agent will use AllJoyn security features to set up a secure connection to a peer. The only way it has to securely identify this peer is by looking at that peer's public key. Since we hand out certificates granting rights to this key, in fact it means we are managing keys. So when asking what are we managing, we should ask ourselves who has access to a key? There is no easy answer to this questions. It all depends on the OS and platform the software is running on.
- On a plain Linux or Windows machine, applications can choose to protect data on a per-user basis, making it hard to protect the key from other applications running as the same user. On the other hand, the key is also not application-specific. When the same application runs as a different user, it can't access the key anymore.
- Operating systems on smartphone do a better job at sandboxing applications. The link between key and application is stronger there.
How many keys you need per device depends on the device: A single-function device (e.g., a temperature sensor) is considered as one big application. One key to do all operations. Every app on a smartphone is considered as an app on its own, so one key per application. * The built-in firmware of a smart TV is also considered as a single app. Applications installed on top of the firmware of the TV are separate apps and should have their own key.
What we can trust
The AllSeen Alliance offers a software stack that runs on top of some hardware within an OS. The stack can be embedded in an application which is installed on a device or could be integrated in a firmware of a device. The security manager cannot distinguish this. He only sees a remote peer. Furthermore the security manager cannot assume applications are running on trustworthy systems. If an application runs on a compromised or malicious system, there is little we can do inside the app to protect. A genuine application running on malicious system, should be treated as malicious. We should protect the ecosystem by:
- Being able to revoke the rights granted to an application.
- Make sure compromised or even malicious applications are limited to rights they were given. Since we can't trust the OS or hardware the application is running on, these checks must be done at the remote peer side.
The protective measure should be defined so that a well-behaving app on a well behaving system can protect itself from any unwarranted access. If both peers are malicious, then there is little we can do. But then they don't need AllSeen to perform malicious acts. There is a risk though that 2 malicious applications team up. Each individual app gets a small acceptable set of rights, but then combining their rights to launch an attack.
When claiming an application two considerations must be made:
- Can I trust the application?
- Can I trust the device where the application is running on? But not only the device and its OS, but for desktops systems as well which other applications are there? These apps might to try get access to the keystore of the genuine app. This is not something we can fix within the AllSeen Alliance. This remains an integration aspect
Sharing Keystores
When an application is claimed, it will store its certificates inside a keystore. This keystore can be shared. The security manager nor the system can prevent applications from doing this. Is it recommended to share keystores? It has the advantage that you only have to claim one application, while multiple applications can use it. However the certificates in the store will only grant a limited set of permission to its users. Sharing the store only makes sense if it was granted all permissions required by its applications. Sharing keystore can be allowed if the applications granted access to it are known upfront and the union of rights is known.
Sharing keystores does have some side effects. Every app using the keystore will appear as the same manageable application. The security will be able to manage one keystore via multiple apps. This feature requires additional layer of complexity in order to provide the concurrent access to the shared keystore.
We also partially lose the ability to sandbox applications, as applications using a shared keystore get a full set of rights linked to the store and not necessarily the ones they strictly need.
Applications integrated in firmware
The firmware of a device could consist of multiple smaller AllSeen applications. From end-user perspective you only want to claim this device once. Those applications are allowed to share their keystore, but only one of them should provide the Security interfaces. So only one application is seen from security manager perspective. When expressing the permission required for this application, it should request all permissions required by the apps on that device.
Standalone applications
Standalone applications are apps downloaded and installed on a desktop computer, tablet or smart phone or something similar. Standalone applications should not share their keystore with other applications. If such an application is built out of separate sub-applications (each of them uses a separate bus attachment), then they should follow the same rules as applications integrated in firmware.
Security Manager Operations
The security manager allows the following operations: - security group management: create, update and delete security groups - allow grouping of applications. A group is uniquely defined by GUID and the public key of a security manager. Applications can become members of a group when they are issued a membership certificate for that group - identity management: create, update and delete identities - Identities are used to define the users of application. Users can map to physical persons. Applications can act on behalf of a user when they receive an identity certificate for that user’s security manager. An application keystore should only have one identity certificate. - application/key management: - claim applications: make it managed by this security manager - manage application manifest - manage AllJoyn certificates for these applications - manage policy (ACL's) of applications - force application to become un-managed again
Inter Security Manager Interaction
When applications interact with each other, they check if the interaction is allowed by their policies as previously set by their security manager. In practice, a peer must present a certificate (chain) signed by its security manager public key. Meaning that with the basic features we created silos, you can only talk to applications managed by your own security manager. In practice applications managed by different security managers need to interact with each other as well. We provide 2 ways to do this: Delegation and Restricted User.
Delegation
Use case
I’m the administrator of my home ecosystem. I claim appliances in the home and provide them with configuration. I as administrator am the only person having access to the security manager. When my kids want to get access to an appliance, then they have to ask me to get approval for each application they want to use. This may not be sufficient for all use cases. With delegation, my security manager gives a membership certificate with delegation rights to the security manager of each of my kids. With this certificate, they can delegate these rights to their applications. They only need to ask one time and then they can make any of their applications part of my group. Even though my kids did not interact directly with each other, with these delegated certificates they interact with each other in the scope of this group.
Limitations
The followings are the limitations of using delegation. - You can only authenticate members of the group. Mutual authenticated requests can only be done between members of the group. - My kids get Remote-control rights for the TV by giving them a membership certificate with delegation rights for my TV Group. Their remote control applications become members of the TV group. If I give my TV a policy for the TV group, then the TV will allow the request from the remote control apps of my kids. This requires my kids to define an ANY-TRUSTED policy for TV operations for their apps. This is ok for TVs remote control operations. If mutual authentication is required, the TV must become member of the TV group as well. - For a chat use case you need to know who is sending a message and to whom you’re sending messages. So mutual authentication is required, and all participants have to be in that group. - As policy is defined on group level, it would require separate groups in order to differentiate between kids and parents.
Delegating certificate Flow
In the X.509 membership and identity certificates, the delegate concept is represented by the basicConstraints extension cA flag. If a grantee receives a certificate with the X.509 basicConstraints extension cA flag equal to true, the grantee can issue a certificate to others. If the cA flag is false then a peer validating a certificate chain verifies that no further delegation has been done, or the chain is considered invalid.
Figure: Reissue membership certificate
Restricted access for other security manager
Restricted access tries to address the same problem as delegation but takes a different approach to solve it. With delegation, you give a certificate to an application. With that certificate the application can prove it is allowed access to a group. With restricted access we define a policy on our managed applications that allows applications from a different security manager to get access. This would be as if we would pre-install the delegated membership certificate on all our managed applications. So when the peer comes around, he doesn't need to send the proof, the application already has it. Since policy comes from a trusted source, we don't need to distribute certificates, we can define a more compact ACL.
In practice, the security manager defines a restricted peer type for all applications that need to interact with the applications of the peer security manager. This ACL restricts applications of that security manager to a specific set of rules. Those applications just need to prove that they are owned with an identity certificate verifiable with the peer security manager certificate authority. That authority is installed with the restricted peer entry into the local application policy.
As example use case: Suppose we have a real-estate agent. When showing a house to clients, he'd like to show-off the AllSeen-enabled home automation system. This can be achieved with either delegation or restricted user. The advantage of restricted user is that if he potentially needs to show 100 homes, he can do it based on 1 certificate instead of 100 for the delegation scenario. There is less risk for information disclosure. If someone could get hold of the 100 certificates, then he can learn who the home sellers are. In the restricted user case, the seller's public keys are in the policy of the agent's app and policy is never shared.
Install a restricted peer ACL Flow
The admin installs a FROM_CERTIFICATE_AUTHORITY ACL into his local application’s policy to allow his friend to have access to the local application.
Figure: Add restricted user rules to an application
Application Manifest
When considering where AllSeen enabled applications will run, smartphones are an obvious target. A lot of applications are available in various app stores. Unfortunately not all of these applications are trustworthy. For example, the flashlight app asks for access to phonebook, network, etc. Same as the application is sandboxed on the smartphone, we would like to sandbox applications within the AllSeen security 2.0 context. If I install an AllSeen TV remote control app, then I would like it only to have rights to do TV operations. Nothing more. Since we can't trust the application, we can't assume it will behave properly. So these restrictions must be enforced by the peers. For the remote control example, the TV must check whether the app has permissions. When remote control app tries to open the door, then the door must reject the call.
The main goal of an application manifest is to inform an admin which interfaces an application will produce and consume. Once the admin accepts the manifest, the manifest is signed and installed on the application. The signed manifest will be used to enforce that the application cannot produce or consume any unwarranted interfaces.
A signed application manifest limits the potential interfaces a malicious application can access within a set of well-behaving applications.
The application manifest has a similar goal as an application manifest on an app store application, in which an end-user has to accept a list of permissions when installing a new application on his phone which are enforced by the app store application framework. The implementation is however different, as described below.
Requirements
Manifest Format
The manifest must be expressed at the interface level. It may be expressed at the member level, but this is not recommended as this increases the complexity that needs to be handled by the admin.
Manifest Acceptance
The manifest template must be presented to the admin in a user-friendly way. As the interface names might not be very informative, they must be mapped to a user-friendly description.
As a malicious application can by definition not be trusted, the descriptions must be provided by a trustworthy source.
The descriptions of the interfaces should be localized to the admin.
The AllSeen Alliance must provide descriptions for any standard AllSeen interface, as reviewed and recommended by the Interface Review Board (IRB).
The application developer must provide the descriptions of any application specific interfaces.
If a manifest template is defined at the member level, a description for each listed member must be available.
Manifest Enforcement
The accepted manifest must be enforced by the peer application, as a malicious application may not be trusted to enforce it locally.
Manifest Update
Whenever an application is updated and does not require additional rights, it may still use the previously signed manifest. Only when the update requires additional rights, the application changes its state and signal the change to let the admin know about the existence of a new manifest template. The admin can generate a new manifest for that application.
Implementation Scenario
This section describes the steps to generate the application manifest. Once the manifest is accepted, its contents digest will be encoded in a new identity certificate.
- The security manager discovers the remote application through the NotifyConfig signal.
- The security manager retrieves the manifest template of the application.
- Using the manifest template, the security manager starts the manifest building process.
- The security manager contacts a server via HTTPS to retrieve the human readable description of the interfaces and presents them to the admin. Note that the HTTPS server location is not yet defined.
- The admin accepts (or rejects) the description of the manifest. When the admin rejects the manifest, the application will not receive a manifest.
- The security manager reissues a new identity certificate with the digest of the requested (& accepted) permissions.
- The security manager installs the new identity certificate and manifest on the application.
Figure: Building Policy using manifest
Application
The application developer needs to embed the manifest template in his application. There should be a platform specific callback function to retrieve the manifest template that belongs to an application. For app store applications, it could be based on convention, providing the manifest template as a file inside the application package. For small embedded devices, the manifest template could be part of the application.
To ease the generation of membership certificates by the security manager, the manifest format is the same format that is used to express access rules in the membership certificates.
Interface Description Server
The server serving the descriptions of the interfaces can either be: 1. Hosted by the application developer for application specific interfaces. To prevent spoofing attacks, this server must be contacted via HTTPS and its URL must be based on the reverse domain name of the interface name. 2. Hosted by the AllSeen Alliance for common AllSeen interfaces. This server MUST be contacted over HTTPS. Howeer, the URL for this server is not yet defined.
Manifest Enforcement
When applying the specific policy rules, the remote peer will enforce the rules specified in the manifest since the manifest is associated with the identity certificate.
Access validation
Validating policy on a producer
This is a typical producer validation of a consumer’s permissions when the consumer makes a method call on a secure interface.
Figure: Validating policy on a producer
Validating policy on a consumer
This is a typical consumer policy validation when the consumer application calls a secure method call.
Figure: Validating policy for a consumer
Validating policy on a consumer that requires a producer belong to a security group
The following flow shows a policy enforcement on the consumer that requires the producer belong to a security group.
Figure: Consumer policy requires producer belong to a security group
Anonymous session
In scenarios when there is no trust established between two peers such as when a guest comes into the user's home, the guest’s consumer application can still control certain applications if and only if there are ACLs specified for ALL installed on these devices.
Note that ANY_TRUSTED includes only authenticated peers while ALL includes unauthenticated (anonymous) peers.
Accessing secured interfaces, the consumer always use ECDHE_ECDSA to contact a peer. If the key exchange fails, it can fallback to ECDHE_NULL and contact the peer as an anonymous user. This process is automated so the application developer does not need to drive the key exchange process.
Figure: Anonymous access
Validating an admin user
Figure: Validating an admin
Emitting a session-based signal
Before emitting a session-based signal to existing connections, the producer verifies whether it is allowed to emit the given signal to any authorized party. Upon receipt of the signal, the consumer checks whether it has the authorization to accept the given signal. The consumer verifies the producer’s manifest for proper authorization.
Figure: Validating a session-based signal
Policy ACL format
The format is binary and exchanged between peers using AllJoyn marshalling
The policy data will be in binary format. The following guidelines are used for exchanging and persisting the policy data:
- The AllJoyn marshalling will be use to encode the policy data when send from security manager to application
- The AllJoyn marshalling will be used to generate buffers to be signed.
- The AllJoyn marshalling will be used to serialize the data for persistence.
- The parser will ignore any field that it does not support.
Format Structure
The following diagram describes the format structure of the ACL data.
Figure: Authorization Data Format Structure
Authorization data field definition
Root level
Name | Data type | Required | Description |
---|---|---|---|
version | number | yes | The specification version number. The current spec version number is 1. |
serialNumber | number | yes | The serial number of the policy. The serial number is used to detect of an update to an older policy. |
ACLs | Array of ACLs | yes | List of access control lists. |
Access Control List
Name | Data type | Required | Description | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
peers | array of objects | no | List of peers. There are multiple types of peers. A peer object has the following fields:
|
||||||||||||||||
rules | array of rules | no | List of allowed rules. The peer application is allowed to perform the actions specified in the given rules. The default rule is to allow nothing. |
Rule Record
Name | Data type | Required | List of values | Description |
---|---|---|---|---|
obj | string | no | Object path of the secured object. A * at the end indicates a prefix match. When there is no *, it is an exact match. | |
ifn | string | no | Interface name. A * at the end indicates a prefix match. When there is no *, it is an exact match. |
Interface Member Record
Name | Data type | Required | List of values | Description |
---|---|---|---|---|
mbr | string | no | Member name. A * at the end indicates a prefix match. When there is no *, it is an exact match. | |
type | number | no |
|
Message type. Default is any |
action | byte | no | The action mask flag. The list of valid masks:
|
Enforcing the rules at message creation or receipt
The following table lists the required action mask base on the message.
Table: Action Mask Matrix
Message Action | Local Policy Remote peer’s manifest |
---|---|
send GetProperty | Remote peer has PROVIDE permission for this property |
receive GetProperty | Remote peer has OBSERVE permission for this property |
send GetAllProperties | Remote peer has PROVIDE permission for * properties |
receive GetAllProperties | Only properties for which the remote peer has OBSERVE permission are returned |
send SetProperty | Remote peer has PROVIDE permission for this property |
receive SetProperty | Remote peer has MODIFY permission for this property |
send method call | Remote peer has PROVIDE permission for this method call |
receive method call | Remote peer has MODIFY permission for this method call |
send signal | Remote peer has OBSERVE permission for this signal |
receive signal | Remote peer has PROVIDE permission for this signal |
Permission for property changed signals are included with the property permission. If a peer has permission for the property then it has permission for the property changed signal for that property.
Sending GetAllProperties requires that the remote peer has a PROVIDE ACL rule for * interface members of type PROPERTY or ALL.
Receiving GetAllProperties is allowed but only properties for which the remote peer has OBSERVE permission are returned. Other properties are treated as unreadable.
Permission for session-cast signals has the same requirements as signals but the remote peer must be known in order match the ACLs to be applied. The recipients for a session-cast signal in a multi-point session are not known resulting in permission to send the signal being denied. The recipient for session-cast signals in a point-to-point session are known, allowing ACLs to be matched.
Policy after claim
Right after the application is claimed, a policy is created automatically with the following feature: 1. Admin group has full access 2. Trusted peers are allowed to provide properties and methods and to receive signals. 3. Allow for self-installation of membership certificates 4. All other interactions are implicitly denied
The created policy is below. It is recommended that a certification test is
created to verify this is the policy that is generated.
peer: FROM_CERTIFICATE_AUTHORITY
pubKey: Identity_Auth_Key
peer: WITH_MEMBERSHIP
pubKey: admin authority key
sgID: admin group ID
ifn: *
mbr: *
action: 0x07 (PROVIDE | OBSERVE | MODIFY)
peer: WITH_PUBLIC_KEY
pubKey: the application’s public key
ifn: org.alljoyn.Bus.Security.ManagedApplication
mbr: InstallMembership
action: 0x04 (MODIFY)
peer: ANY_TRUSTED
ifn: *
mbr: *
action: 0x01 (PROVIDE)
type: 1 (METHOD)
mbr: *
action: 0x02 (OBSERVE)
type: 2 (SIGNAL)
mbr: *
action: 0x01 (PROVIDE)
type: 3 (PROPERTY)
Rule Search and Selection
Whenever an encrypted message is created or received, the access control rules are searched for matching rules. In order for a rule to be considered a match, it must meet the following criteria: - Be in an access control list matching peer type, public key, and/or Security Group ID as specified for the ACL - Match message header data based object path, interface name and member name as specified for the rule. - Match the action mask and not be an explicit deny.
Or the rule must match the following criteria: - Be in the ACL of a peer type WITH_PUBLIC_KEY - The ACL's key must match the public key of the peer - The action mask must be an explicit deny. - All other criteris (object path, interface and member names) must be *
The resulting set of matched rules is applied to the message as follows: - If any explicit deny rule matches per above then the message is denied. - If no deny rules match, then the message is allowed if at least one allow rule matches. - Otherwise, the message is denied.
Certificates
The following subsections detail the supported certificates. The certificate format is X.509 v3. The certificate lifetime will be considered in order to avoid having to revoke the certificate. However, certain devices do not have access to a trusted real time clock. In such cases, applications on those devices will not be able to validate the certificate lifetime.
Certificate Chain validation
Identity and membership certificate chains will be validated per section 6.1 of RFC 5280 with the following additions, limitations and notes: - The leaf certificate must have exactly one EKU and it must be the correct EKU per the use case. Certificates used for ECDHE_ECDSA authentication must have the identity certificate EKU and certificates exchanged to indicate security group memberships must have the membership certificate EKU. - Intermediate certificates must have zero, one or both identity and membership EKUs. - No EKU will be treated as any EKU, per RFC 5280. EKU validation is transitive, meaning any certificate with no EKU will inherit those of its parent. - Time of validity will only be evaluated if the peer has a time source. - The implementation will assume system time is trusted if available. - For identity certificates, the associated digest of the leaf certificate is validated against the digest of the manifest. - The AKI is validated to not be null. - CRL check is not implemented as there is no CRL. - basicConstraints::pathLenConstraint will NOT be checked.
Certificate chains will be validated... - When a certificate is received during claiming. - When a certificate is installed. - When a certificate is received during ECDHE_ECDSA authentication. - When a certificate is received to assert security group membership.
2.6.1 Main Certificate Structure
All AllSeen X.509 certificates have the following ASN.1 structure. Currently only the ECDSA (prime256v1) certificates are supported.
Certificate ::= SEQUENCE {
tbsCertificate TBSCertificate,
signatureAlgorithm SEQUENCE { 1.2.840.10045.4.3.2 (ecdsa-with-sha256) },
signatureValue BIT STRING
}
TBSCertificate ::= SEQUENCE {
version v3(2),
serialNumber INTEGER,
signature SEQUENCE { 1.2.840.10045.4.3.2 (ecdsa-with-sha256) },
issuer SEQUENCE { 2.5.4.3 (commonName), UTF8 STRING },
validity Validity,
subject Name,
subjectPublicKeyInfo SEQUENCE { 1.2.840.10045.2.1 (id-ecPublicKey), 1.2.840.10045.3.1.7 (prime256v1), BIT STRING },
issuerUniqueID IMPLICIT UniqueIdentifier OPTIONAL,
subjectUniqueID IMPLICIT UniqueIdentifier OPTIONAL,
extensions EXPLICIT
}
Extensions ::= SEQUENCE {
BasicConstraints SEQUENCE { 2.5.29.19 (basicConstraints), BOOLEAN (FALSE) },
SubjectAltName SEQUENCE { 2.5.29.17 (id-ce-subjectAltName),
SEQUENCE { CHOICE[0] (otherName)
SEQUENCE { 1.3.6.1.4.1.44924.1.3 (AllSeen Security Group ID),
OCTET STRING}}},
ExtendedKeyUsage SEQUENCE { 2.5.29.37 (id-ce-extKeyUsage),
SEQUENCE { (KeyPurposeId) OBJECT IDENTIFIER}},
AuthorityKeyIdentifier SEQUENCE { 2.5.29.35 (id-ce-authorityKeyIdentifier),
SEQUENCE { [0] (keyIdentifier) OCTET STRING}}
}
AuthorityKeyIdentifier
The AuthorityKeyIdentifier standard extension field will hold 64 bits of data comprising of a four-bit type field with the value 0100 followed by the least significant 60 bits of a hash of the value of the BIT STRING subjectPublicKey (excluding the tag, length, and number of unused bits).
Security 2.0 Custom OIDs
All Security 2.0 custom OIDs will start with 1.3.6.1.4.1.44924.1
where
1.3.6.1.4.1.44924
is the registered AllSeen Alliance Private Enterprise
Number.
Identity certificate
The identity certificate is used to associate application, user or device with an identity alias. This allows an identity alias to have a number of identity certificates installed in different keystores.
The identity alias is encoded in the SubjectAltName field in the extensions.
The extensions include the following fields:
- ExtendedKeyUsage: the type of certificate within the AllSeen ecosystem.
1.3.6.1.4.1.44924.1.1 is used for Identity certificates.
- SubjectAltName: the alias for the identity.
- AssociatedDigest: the digest of the associated manifest data.
Both the ExtendedKeyUsage and AssociatedDigest have custom OIDs under the
Security 2.0 root.
Extensions ::= SEQUENCE {
BasicConstraints SEQUENCE { 2.5.29.19 (basicConstraints), BOOLEAN (FALSE) },
SubjectAltName SEQUENCE { 2.5.29.17 (id-ce-subjectAltName),
SEQUENCE { CHOICE[0] (otherName)
SEQUENCE { 1.3.6.1.4.1.44924.1.3
(AllSeen Security Group ID), OCTET STRING}}},
AuthorityKeyIdentifier SEQUENCE { 2.5.29.35
(id-ce-authorityKeyIdentifier),
SEQUENCE { [0] (keyIdentifier) OCTET STRING}},
ExtendedKeyUsage SEQUENCE { 2.5.29.37 (id-ce-extKeyUsage),
SEQUENCE { (KeyPurposeId) 1.3.6.1.4.1.44924.1.1}},
AssociatedDigest SEQUENCE { 1.3.6.1.4.1.44924.1.2 (AllSeen Certificate Digest),
2.16.840.1.101.3.4.2.1 (hash), OCTET STRING }
}
Membership certificate
The membership certificate is used to assert an application, user or device is part of a security group.
The security group identifier is encoded with a 16 network byte order octets encoded in the SubjectAltName field in the extensions.
The extensions include the following fields:
- ExtendedKeyUsage: the type of certificate within the AllSeen ecosystem.
1.3.6.1.4.1.44924.1.5 is used for membership certificates.
- SubjectAltName: the security group ID.
Extensions ::= SEQUENCE {
BasicConstraints SEQUENCE { 2.5.29.19 (basicConstraints), BOOLEAN (FALSE) },
SubjectAltName SEQUENCE { 2.5.29.17 (id-ce-subjectAltName),
SEQUENCE { CHOICE[0] (otherName)
SEQUENCE { 1.3.6.1.4.1.44924.1.3
(AllSeen Security Group ID), OCTET STRING}}},
AuthorityKeyIdentifier SEQUENCE { 2.5.29.35
(id-ce-authorityKeyIdentifier),
SEQUENCE { [0] (keyIdentifier) OCTET STRING}},
ExtendedKeyUsage SEQUENCE { 2.5.29.37 (id-ce-extKeyUsage),
SEQUENCE { (KeyPurposeId) 1.3.6.1.4.1.44924.1.5}}
}
Recommended Best Practices for Certificates
- Root certificates should include only the ExtendedKeyUsage OIDs for purposes for which it will issue certificates. Currently, these are the AllJoyn identity and membership OIDs listed in this document. Issuing root certificates with no ExtendedKeyUsage extension or with the anyExtendedKeyUsage OID is not recommended. Adopting this practice will limit the potential abuse of AllJoyn root certificates for unrelated purposes.
Sample use cases
The solution listed here for the use cases is just a typical solution. It is not intended to be the only solution.
Users and devices
Users: Dad, Mom, and son
Security Group | Members |
---|---|
homeAdmin | Dad, Mom |
sonAdmin | Son |
dadOnlyAdmin | Dad |
livingRoom | TV, living room tablet, son’s room TV, master bedroom TV, master bedroom tablet |
masterBedrom | Master bedroom tablet |
Room | Devices | Notes |
---|---|---|
Living room | TV, Set-top box, tablet, Network-attached Storage (NAS) |
|
Son’s bedroom | TV |
|
Master bedroom | TV, tablet |
|
Users set up by Dad
Figure: Use case - users set up by Dad
Living room set up by Dad
Figure: Use case - living room set up by Dad
Son's bedroom set up by son
Figure: Use case - son's bedroom set up by son
Master bedroom set up by Dad
Figure: Use case - master bedroom set up by Dad
Son can control different TVs in the house
Figure: Use case – Son can control different TVs in the house
Living room tablet controls TVs in the house
Figure: Use case - Living room tablet controls TVs
Enhancements to Existing Framework
Crypto Agility Exchange
In order to provide the AllJoyn peers to express the desire to pick some particular cryptographic cipher suite to use in the key exchange and the encryption of the messages, new key exchange suite identifiers will be added to the framework to express the choice of cipher and MAC algorithms. The new identifiers may come from the list of TSL cipher suites specified in Appendix A.5 of TLS RFC5246 , RFC6655, and RFC7251.
The following table shows the list of existing key exchange suites:
AllJoyn Key Exchange Suite | Crypto Parameters | Availability |
---|---|---|
ALLJOYN_ECDHE_NULL |
|
|
ALLJOYN_ECDHE_PSK |
|
|
ALLJOYN_ECDHE_ECDSA |
|
|
ALLJOYN_RSA_KEYX |
|
|
ALLJOYN_PIN_KEYX |
|
|
ALLJOYN_SRP_KEYX |
|
|
ALLJOYN_SRP_LOGON |
|
|
The following table shows the potential list of TLS cipher suites to be supported. Other suites will be added as codes are available.
TLS cipher suite | Additional Crypto Parameters | Availability | RFC |
---|---|---|---|
TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8 |
|
|
7251 |
TLS_RSA_WITH_AES_128_CCM_8 |
|
|
6655 |
Application State Announcement
The Permission module provides a session-less signal to allow the Security Manager discovering the applications to claim or to distribute updated policy or certificates. The current features provided by the About session-less signal does not fulfill the Security Manager discovery requirement. The signal provides the following information: 1. A number field named state to show the state of the application. The possible values of this field are: - 0 -- Not claimable. The application is not claimed and not accepting claim requests. - 1 – Claimable. The application is not claimed, but is accepting claim requests. - 2 – Claimed. The application is claimed and can be configured. - 3 – Needs update. The application is claimed, but requires a configuration update (after a software update). 2. The public key
This signal is emitted when 1. The bus attachment is enabled with peer security using ECDHE key exchanges 2. The application is claimed or do a factory reset 3. The application has a new manifest template
Features In Future Releases
Certificate revocation (not fully designed)
The application will validate the certificate using a revocation service provided by the Security Manager. The revocation service is a distributed service.
The Certificate Revocation Service is expected to provide a method call that takes in the certificate and return whether the given certificate is revoked.
The application looks in its installed policy for the peer that provides the Certificate Revocation Service. If the application can’t locate any of the Certificate Revocation Service, the certificate revocation check will be skipped.
If a membership certificate is revoked, all signed authorization data related to the membership certificate is no longer valid.
Current work-around
The admin can blacklist a peer by installing a deny rule in the application policy to deny access for the given peer.
Distribution of policy updates and membership certificates (not fully designed)
The Distribution Service is a service provided by a Security Manager. This service provides persistent storage and high availability to distribute updates to applications.
An admin uses the Security Manager to generate updated policy and membership
certificates, encrypt the payload with a session key derived from a nonce value
and the master secret for the
Figure: Distribution of policy update and certificates
Policy Templates
An application developer can define policy templates to help the Security Manager to build consumer and producer policies. A policy template provides the following data in: - Specification version number - List of permission rules
Future Considerations
Broadcast signals and multipoint sessions
All security enhancements for broadcast signals and multipoint sessions will be considered in future releases of Security 2.0.