Skip to content

Commit

Permalink
Merge pull request GENI-NSF#894 from ahelsing/tkt890-refid
Browse files Browse the repository at this point in the history
Fix SFA credential use of strip on refid in issue GENI-NSF#890
  • Loading branch information
ahelsing committed Feb 23, 2016
2 parents fe7c794 + 55f8f3c commit 0799f71
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

gcf 2.11:
* Remove bogus check for rspec tag (#885)
* Properly remove prefix from signature refid in SFA credentials. (#890)

gcf 2.10:
* Changed references to trac.gpolab.bbn.com to point to Github.
Expand Down
12 changes: 9 additions & 3 deletions src/gcf/sfa/trust/credential.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,20 +183,26 @@ def set_issuer_gid(self, gid):
self.gid = gid

def decode(self):
# Helper function to pull characters off the front of a string if present
def remove_prefix(text, prefix):
if text and prefix and text.startswith(prefix):
return text[len(prefix):]
return text

try:
doc = parseString(self.xml)
except ExpatError,e:
logger.log_exc ("Failed to parse credential, %s"%self.xml)
raise
sig = doc.getElementsByTagName("Signature")[0]
ref_id = sig.getAttribute("xml:id").strip().strip("Sig_")
ref_id = remove_prefix(sig.getAttribute("xml:id").strip(), "Sig_")
# The xml:id tag is optional, and could be in a
# Reference xml:id or Reference UID sub element instead
if not ref_id or ref_id == '':
reference = sig.getElementsByTagName('Reference')[0]
ref_id = reference.getAttribute('xml:id').strip().strip('Sig_')
ref_id = remove_prefix(reference.getAttribute('xml:id').strip(), 'Sig_')
if not ref_id or ref_id == '':
ref_id = reference.getAttribute('URI').strip().strip('#')
ref_id = remove_prefix(reference.getAttribute('URI').strip(), '#')
self.set_refid(ref_id)
keyinfos = sig.getElementsByTagName("X509Data")
gids = None
Expand Down

0 comments on commit 0799f71

Please sign in to comment.