Add AAF in a Nutshell to docs
[aaf/authz.git] / docs / sections / AAF_in_a_Nutshell.rst
1 .. This work is licensed under a Creative Commons Attribution 4.0 International License.
2 .. http://creativecommons.org/licenses/by/4.0
3 .. Copyright © 2017 AT&T Intellectual Property. All rights reserved.
4
5 AAF in a Nutshell
6 =========================
7
8 This is a quick overview of some of the core structures of AAF. A more detailed narrative description can be found at The New Person's Guide to AAF
9
10 Parts of AAF - Basic Terms
11 ---------
12 a namespace is the container (sometimes called a "security domain" by other security systems) assigned to an application; for instance, "com.att.test"namespaces contain 1 or more roles
13 roles contain permissions and users 
14
15   1.    a role is where users and permissions meet; permissions are not granted directly to users, rather a perm is granted to a role and users are added to the role
16   2.    a role contains 0 or more permissions
17   3.    a role contains 0 or more users or APPID identities
18   4.    note that role memberships have an expiration date. The owner of the namespace must re-approve all role memberships periodically. All approval requests, role renewal reviews, credential expiration, etc, emails will go to the namespace owner. If the namespace owner doesn't act upon these emails, users/appid’s will lose their permissions. Applications will break. Restoring lost permissions is the responsibility of the namespace admins, not any AAF support tier.
19
20 namespaces contain 1 or more permissions
21   1.    other than the access permissions discussed below, AAF does not care about permissions
22   2.    AAF does not interpret application-specific permissions; in other words, it's up to the applications developers to create a permission scheme.  
23     1.  the general usage pattern is that an application will ask for all permissions associated with a user
24     2.  locally, the application interprets what the presence or absence of a permissions means
25 by default, every namespace has 2 "access" permissions: 
26   1.    a read/write permission, for instance "org.onap.test.access * *"
27   2.    a read only permission, for instance "org.onap.test.access * read"
28  - by default, every namespace has an admin role, for instance "org.onap.test.admin" 
29   1.    the admin role contains the read/write permission for the namespace; if you delete the admin role, or the read/write permission from the role, your admins will have no access to your namespace. This is bad.
30 see Documentation for Namespace Admins for commands related to namespaces, roles, permissions
31         
32
33 AppID Identity
34 ---------
35 To use a AppID in AAF, the AppID must be associated with a namespace 
36   1.    The owner of the namespace MUST BE the sponsor of the AppID. 
37   2.     The owner of the namespace/appid is the ONLY PERSON who can add the AppID to the namespace. 
38   3.    Once added to a namespace, you will now have a AppID identity. For example, namespace=org.onap.test, AppID=m99999, the AppID identity will be m99999@test.onap.org
39       1.        note that the domain portion (the part after the "@") is the namespace name reversed
40 AppID Identities must always be lowercase. Use "m91266@test.onap.org", not "M91266@test.onap.com"
41
42 AppID Credentials (passwords)
43 ---------
44 Each AppID identity may have 1 or more credential records 
45  - each record will have its own expiration date
46  - each record may or may not be associated with the same password
47 Once the owner of the namespace/AppID has created the initial AppID identity & password, any admin can add new credentials as long as she/he knows a current password.
48   
49 Here are some scenarios to illustrate some points about  AAF's credentials:
50 Scenario 1: an application already running in an Instance needs to do their yearly AppID password update 
51  - The AppID identity already has a credential, but it is expiring soon
52  - The application's support team can create a new credential at any time 
53      -  must enter an existing password to create a new one; store your passwords in a secure, manor.
54      - this new record will have an expiration date 1 year out
55  - the password in the record will be a different password; this means the application's config files need to change
56  - With a new password in place, there is no tight coordination required when the application's config files are updated. The old password continues to work until its expiration date. The new password is in place and will work as soon as the configuration is changed. 
57
58 Scenario 2:An AAF command to "extend" the current password. NOTE: extending a password is a temporary workaround; a new credential must be created as soon as possible. 
59  - this does not modiify the existing credential record
60  - this creates a new credential record with an expiration date 5 days in the future 
61  - an admin of the namespace must now: 
62  - using the appropriate GUI link for the environment, go to the Password Management tab and create a new credential
63  - if using cadi, digest the new password to get an encrypted password string 
64  - update cadi.properties
65  - bounce application processes
66  - if not using cadi,  
67  - update whatever config file is used to store the AppID identity's password
68  - bounce application processes, if required to re-read config
69  - to re-iterate: AAF never modifies an existing credential; AAF creates new credential records
70