|
| 1 | +#!/usr/bin/env python |
| 2 | +import hashlib, inspect, os, random, sys |
| 3 | + |
| 4 | +# Gets the secret token provided by OpenShift |
| 5 | +# or generates one (this is slightly less secure, but good enough for now) |
| 6 | +def get_openshift_secret_token(): |
| 7 | + token = os.getenv('OPENSHIFT_SECRET_TOKEN') |
| 8 | + name = os.getenv('OPENSHIFT_APP_NAME') |
| 9 | + uuid = os.getenv('OPENSHIFT_APP_UUID') |
| 10 | + if token is not None: |
| 11 | + return token |
| 12 | + elif (name is not None and uuid is not None): |
| 13 | + return hashlib.sha256(name + '-' + uuid).hexdigest() |
| 14 | + return None |
| 15 | + |
| 16 | +# Loop through all provided variables and generate secure versions |
| 17 | +# If not running on OpenShift, returns defaults and logs an error message |
| 18 | +# |
| 19 | +# This function calls secure_function and passes an array of: |
| 20 | +# { |
| 21 | +# 'hash': generated sha hash, |
| 22 | +# 'variable': name of variable, |
| 23 | +# 'original': original value |
| 24 | +# } |
| 25 | +def openshift_secure(default_keys, secure_function = 'make_secure_key'): |
| 26 | + # Attempts to get secret token |
| 27 | + my_token = get_openshift_secret_token() |
| 28 | + |
| 29 | + # Only generate random values if on OpenShift |
| 30 | + my_list = default_keys |
| 31 | + |
| 32 | + if my_token is not None: |
| 33 | + # Loop over each default_key and set the new value |
| 34 | + for key, value in default_keys.iteritems(): |
| 35 | + # Create hash out of token and this key's name |
| 36 | + sha = hashlib.sha256(my_token + '-' + key).hexdigest() |
| 37 | + # Pass a dictionary so we can add stuff without breaking existing calls |
| 38 | + vals = { 'hash': sha, 'variable': key, 'original': value } |
| 39 | + # Call user specified function or just return hash |
| 40 | + my_list[key] = sha |
| 41 | + if secure_function is not None: |
| 42 | + # Pick through the global and local scopes to find the function. |
| 43 | + possibles = globals().copy() |
| 44 | + possibles.update(locals()) |
| 45 | + supplied_function = possibles.get(secure_function) |
| 46 | + if not supplied_function: |
| 47 | + raise Exception("Cannot find supplied security function") |
| 48 | + else: |
| 49 | + my_list[key] = supplied_function(vals) |
| 50 | + else: |
| 51 | + calling_file = inspect.stack()[1][1] |
| 52 | + if os.getenv('OPENSHIFT_REPO_DIR'): |
| 53 | + base = os.getenv('OPENSHIFT_REPO_DIR') |
| 54 | + calling_file.replace(base,'') |
| 55 | + sys.stderr.write("OPENSHIFT WARNING: Using default values for secure variables, please manually modify in " + calling_file + "\n") |
| 56 | + |
| 57 | + return my_list |
| 58 | + |
| 59 | + |
| 60 | +# This function transforms default keys into per-deployment random keys; |
| 61 | +def make_secure_key(key_info): |
| 62 | + hashcode = key_info['hash'] |
| 63 | + key = key_info['variable'] |
| 64 | + original = key_info['original'] |
| 65 | + |
| 66 | + chars = '0123456789abcdef' |
| 67 | + |
| 68 | + # Use the hash to seed the RNG |
| 69 | + random.seed(int("0x" + hashcode[:8], 0)) |
| 70 | + |
| 71 | + # Create a random string the same length as the default |
| 72 | + rand_key = '' |
| 73 | + for _ in range(len(original)): |
| 74 | + rand_pos = random.randint(0,len(chars)) |
| 75 | + rand_key += chars[rand_pos:(rand_pos+1)] |
| 76 | + |
| 77 | + # Reset the RNG |
| 78 | + random.seed() |
| 79 | + |
| 80 | + # Set the value |
| 81 | + return rand_key |
0 commit comments