[7211a95] | 1 | #!/usr/bin/env python |
---|
| 2 | |
---|
| 3 | """ |
---|
[f824a9e] | 4 | Run the queries described in README |
---|
[7211a95] | 5 | |
---|
| 6 | cmd1:env keystore=`pwd` ./query.py |
---|
| 7 | cmd2: env ABAC_CN=1 keystore=`pwd` ./query.py |
---|
| 8 | |
---|
| 9 | """ |
---|
| 10 | |
---|
| 11 | import os |
---|
| 12 | import ABAC |
---|
| 13 | |
---|
| 14 | ctxt = ABAC.Context() |
---|
| 15 | |
---|
[f824a9e] | 16 | # Keystore is the directory containing the principal credentials. |
---|
| 17 | # Load existing principals and/or policy credentials |
---|
| 18 | if (os.environ.has_key("keystore")) : |
---|
| 19 | keystore=os.environ["keystore"] |
---|
| 20 | ctxt.load_directory(keystore) |
---|
| 21 | else: |
---|
| 22 | print("keystore is not set...") |
---|
| 23 | exit(1) |
---|
[7211a95] | 24 | |
---|
[f824a9e] | 25 | # retrieve principals' keyid value from local credential files |
---|
[7211a95] | 26 | geniID=ABAC.ID("Geni_ID.pem"); |
---|
| 27 | geniID.id_load_privkey_file("Geni_private.pem"); |
---|
| 28 | geni=geniID.id_keyid() |
---|
| 29 | |
---|
| 30 | bobID=ABAC.ID("Bob_ID.pem"); |
---|
| 31 | bobID.id_load_privkey_file("Bob_private.pem"); |
---|
| 32 | bob=bobID.id_keyid() |
---|
| 33 | |
---|
| 34 | jackID=ABAC.ID("Jack_ID.pem"); |
---|
| 35 | jackID.id_load_privkey_file("Jack_private.pem"); |
---|
| 36 | jack=jackID.id_keyid() |
---|
| 37 | |
---|
| 38 | joeID=ABAC.ID("Joe_ID.pem"); |
---|
| 39 | joeID.id_load_privkey_file("Joe_private.pem"); |
---|
| 40 | joe=joeID.id_keyid() |
---|
| 41 | |
---|
| 42 | ########################################################################## |
---|
[f824a9e] | 43 | # dump the loaded principals/policies |
---|
| 44 | # |
---|
| 45 | out = ctxt.context_principals() |
---|
| 46 | print "\n...final principal set..." |
---|
| 47 | for x in out[1]: |
---|
| 48 | print "%s " % x.string() |
---|
| 49 | out = ctxt.context_credentials() |
---|
| 50 | print "\n...final policy attribute set..." |
---|
| 51 | for c in out[1]: |
---|
| 52 | print "%s <- %s" % (c.head_string(), c.tail_string()) |
---|
| 53 | |
---|
| 54 | ########################################################################## |
---|
| 55 | # is Bob a leader at Geni ? |
---|
[7211a95] | 56 | # role=[keyid:geni].role:leader |
---|
| 57 | # p=[keyid:Bob] |
---|
| 58 | role = ABAC.Role(geni,"leader") |
---|
| 59 | p = ABAC.Role(bob) |
---|
| 60 | print "\n===good============ geni.leader <- Bob" |
---|
| 61 | out = ctxt.query(role, p) |
---|
| 62 | for c in out[1]: |
---|
| 63 | print "%s <- %s" % (c.head_string(), c.tail_string()) |
---|
| 64 | |
---|
| 65 | ########################################################################## |
---|
[f824a9e] | 66 | # is Jack a leader at Geni ? |
---|
[7211a95] | 67 | # role=[keyid:geni].role:leader |
---|
| 68 | # p=[keyid:Jack] |
---|
| 69 | role = ABAC.Role(geni,"leader") |
---|
| 70 | p = ABAC.Role(jack) |
---|
| 71 | print "\n===bad============ geni.leader <- Jack" |
---|
| 72 | out = ctxt.query(role, p) |
---|
| 73 | for c in out[1]: |
---|
| 74 | print "%s <- %s" % (c.head_string(), c.tail_string()) |
---|
| 75 | |
---|
| 76 | ########################################################################## |
---|
[f824a9e] | 77 | # is Joe a leader at Geni ? |
---|
[7211a95] | 78 | # role=[keyid:geni].role:leader |
---|
| 79 | # p=[keyid:Joe] |
---|
| 80 | role = ABAC.Role(geni,"leader") |
---|
| 81 | p = ABAC.Role(joe) |
---|
| 82 | print "\n===good============ geni.leader <- Joe" |
---|
| 83 | out = ctxt.query(role, p) |
---|
| 84 | for c in out[1]: |
---|
| 85 | print "%s <- %s" % (c.head_string(), c.tail_string()) |
---|
| 86 | |
---|