[31b67d5] | 1 | package net.deterlab.abac; |
---|
| 2 | |
---|
[de63a31] | 3 | import java.util.*; |
---|
| 4 | |
---|
[281158a] | 5 | import org.bouncycastle.asn1.*; |
---|
| 6 | |
---|
[31b67d5] | 7 | /** |
---|
| 8 | * Represents a role, which is a vertex in a Credential graph. |
---|
| 9 | */ |
---|
[88e139a] | 10 | public class Role implements Comparable { |
---|
[31b67d5] | 11 | private String m_string; |
---|
| 12 | private String[] m_parts; |
---|
| 13 | private String m_A_r1, m_r2; |
---|
| 14 | private String m_prefix; |
---|
[cac4c76] | 15 | private Role[] m_prereqs; |
---|
[31b67d5] | 16 | |
---|
| 17 | /** |
---|
[cac4c76] | 18 | * Create a role from a string. A single role must be of the format "A", |
---|
[31b67d5] | 19 | * "A.r1", or "A.r1.r2", where A is a principal and r1 and r2 are role |
---|
[cac4c76] | 20 | * names. This constructor also supports intersection roles: a sequence of |
---|
[bcf7370] | 21 | * two or more roles separated by "&". The whitespace surrounding & |
---|
| 22 | * is arbitrary. |
---|
[cac4c76] | 23 | * |
---|
| 24 | * If the string does not have this format, the constructor throws a |
---|
| 25 | * RuntimeException. |
---|
[31b67d5] | 26 | */ |
---|
| 27 | public Role(String s) throws RuntimeException { |
---|
| 28 | m_string = s; |
---|
| 29 | |
---|
[bcf7370] | 30 | // intersection roles have at least two roles separated by "&" |
---|
| 31 | String[] isect_roles = s.split("&"); |
---|
[cac4c76] | 32 | |
---|
| 33 | // ordinary role |
---|
| 34 | if (isect_roles.length == 1) |
---|
| 35 | single_role(); |
---|
| 36 | |
---|
| 37 | // intersection role: make a list of prereqs |
---|
| 38 | else { |
---|
| 39 | m_prereqs = new Role[isect_roles.length]; |
---|
[53f5c27] | 40 | |
---|
| 41 | // trim() handles arbitrary whitespace |
---|
[cac4c76] | 42 | for (int i = 0; i < isect_roles.length; ++i) |
---|
[53f5c27] | 43 | m_prereqs[i] = new Role(isect_roles[i].trim()); |
---|
[cac4c76] | 44 | |
---|
| 45 | // this make is_principal etc. work properly |
---|
| 46 | m_parts = new String[0]; |
---|
| 47 | } |
---|
| 48 | } |
---|
| 49 | |
---|
[84f0e7a] | 50 | public Role(String s, Context c) { |
---|
| 51 | this(c.expandKeyID(s)); |
---|
[de63a31] | 52 | } |
---|
| 53 | |
---|
[cac4c76] | 54 | /** |
---|
| 55 | * Initialize a single non-intersection role. See constructor for details of |
---|
| 56 | * role format. Will throw RuntimeException if the role is invalid. |
---|
| 57 | */ |
---|
| 58 | private void single_role() throws RuntimeException { |
---|
| 59 | m_parts = m_string.split("\\."); |
---|
[31b67d5] | 60 | if (m_parts.length > 3) |
---|
| 61 | throw new RuntimeException("Not a valid role: " + m_string); |
---|
| 62 | |
---|
| 63 | // linking role: prefix is A.r1 from A.r1.r2 |
---|
| 64 | if (is_linking()) { |
---|
| 65 | m_A_r1 = m_parts[0] + "." + m_parts[1]; |
---|
| 66 | m_r2 = m_parts[2]; |
---|
| 67 | m_prefix = m_A_r1; |
---|
| 68 | } |
---|
| 69 | |
---|
| 70 | // role: prefix is A from A.r1 |
---|
| 71 | else if (is_role()) |
---|
| 72 | m_prefix = m_parts[0]; |
---|
| 73 | |
---|
| 74 | // principal: prefix is the whole thing |
---|
| 75 | else |
---|
| 76 | m_prefix = m_string; |
---|
| 77 | } |
---|
| 78 | |
---|
| 79 | /** |
---|
| 80 | * Returns true iff the role is a principal. |
---|
| 81 | */ |
---|
| 82 | public boolean is_principal() { return m_parts.length == 1; } |
---|
| 83 | |
---|
| 84 | /** |
---|
| 85 | * Returns true iff the role is a role (i.e., A.r1). |
---|
| 86 | */ |
---|
| 87 | public boolean is_role() { return m_parts.length == 2; } |
---|
| 88 | |
---|
| 89 | /** |
---|
| 90 | * Returns true iff the role is a linking role (i.e., A.r1.r2). |
---|
| 91 | */ |
---|
| 92 | public boolean is_linking() { return m_parts.length == 3; } |
---|
| 93 | |
---|
[cac4c76] | 94 | /** |
---|
| 95 | * Returns true iff the role represents an intersection role. |
---|
| 96 | */ |
---|
| 97 | public boolean is_intersection() { return m_prereqs != null; } |
---|
| 98 | |
---|
[31b67d5] | 99 | /** |
---|
| 100 | * Returns the first two elements of a linking role's name. This typically |
---|
| 101 | * refers to another role in the graph. This will throw a runtime |
---|
| 102 | * exception if the node is not a linking role. |
---|
| 103 | */ |
---|
| 104 | public String A_r1() throws RuntimeException { |
---|
| 105 | if (!is_linking()) |
---|
| 106 | throw new RuntimeException("Not a linking role"); |
---|
| 107 | return m_A_r1; |
---|
| 108 | } |
---|
| 109 | |
---|
| 110 | /** |
---|
| 111 | * Return the last element of a linking role's name. This will throw a |
---|
| 112 | * runtime exception if the node is not a linking role. |
---|
| 113 | */ |
---|
| 114 | public String r2() throws RuntimeException { |
---|
| 115 | if (!is_linking()) |
---|
| 116 | throw new RuntimeException("Not a linking role"); |
---|
| 117 | return m_r2; |
---|
| 118 | } |
---|
| 119 | |
---|
| 120 | /** |
---|
| 121 | * Returns the principal part of a role or principal. This is everything |
---|
| 122 | * except the last element of the name. |
---|
| 123 | */ |
---|
| 124 | public String principal_part() { |
---|
| 125 | return m_prefix; |
---|
| 126 | } |
---|
| 127 | |
---|
[281158a] | 128 | /** |
---|
| 129 | * Returns an issuer, only the first element. |
---|
| 130 | */ |
---|
| 131 | public String issuer_part() { return m_parts[0]; } |
---|
| 132 | |
---|
[31b67d5] | 133 | /** |
---|
| 134 | * Returns true if the principal part of the name matches a prefix. This |
---|
| 135 | * is used when filtering graphs. |
---|
| 136 | */ |
---|
| 137 | public boolean matches(String prefix) { |
---|
| 138 | return prefix.length() == 0 || m_prefix.equals(prefix); |
---|
| 139 | } |
---|
| 140 | |
---|
[cac4c76] | 141 | /** |
---|
| 142 | * Get the roles that form the prerequisites to this intersection. Throws |
---|
| 143 | * a runtime exception if this is not an intersection role. |
---|
| 144 | */ |
---|
| 145 | public Role[] prereqs() throws RuntimeException { |
---|
| 146 | if (!is_intersection()) |
---|
| 147 | throw new RuntimeException("Not an intersection role."); |
---|
| 148 | |
---|
| 149 | return m_prereqs; |
---|
| 150 | } |
---|
| 151 | |
---|
[31b67d5] | 152 | public String toString() { |
---|
| 153 | return m_string; |
---|
| 154 | } |
---|
| 155 | |
---|
[84f0e7a] | 156 | public String simpleString(Context c) { |
---|
| 157 | return c.expandNickname(m_string); |
---|
[de63a31] | 158 | } |
---|
| 159 | |
---|
[31b67d5] | 160 | public boolean equals(Object v2) { |
---|
| 161 | if (v2 instanceof Role) |
---|
| 162 | return m_string.equals(((Role)v2).m_string); |
---|
| 163 | return false; |
---|
| 164 | } |
---|
| 165 | |
---|
[88e139a] | 166 | public int compareTo(Object o) { |
---|
| 167 | if (o instanceof Role) |
---|
| 168 | return m_string.compareTo(((Role)o).m_string); |
---|
| 169 | else return 1; |
---|
| 170 | } |
---|
| 171 | |
---|
[31b67d5] | 172 | public int hashCode() { |
---|
| 173 | return m_string.hashCode(); |
---|
| 174 | } |
---|
[de63a31] | 175 | |
---|
[31b67d5] | 176 | } |
---|