X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2FBootAPI.py;h=d69755b0bf7d3b649a1c9ee8b70bce3107e3fc3b;hb=008c4db00ad126481773f3b0f0bfdabe25553b0e;hp=b2fddbe74a4e15de6198615e43dabf84ddc628e0;hpb=1d3b42c29bbf48ae3f78aa8feb91697157d928ea;p=bootmanager.git diff --git a/source/BootAPI.py b/source/BootAPI.py index b2fddbe..d69755b 100644 --- a/source/BootAPI.py +++ b/source/BootAPI.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2 +#!/usr/bin/python # Copyright (c) 2003 Intel Corporation # All rights reserved. @@ -27,35 +27,61 @@ def create_auth_structure( vars, call_params ): API call. Return None if unable to (typically due to missing keys in vars, such as node_id or node_key) """ - + auth= {} - auth['AuthMethod']= 'hmac' - try: - auth['node_id'] = vars['NODE_ID'] - auth['node_ip'] = vars['NETWORK_SETTINGS']['ip'] - except KeyError, e: - return None - - #params= serialize_params(call_params) - #params.sort() - #msg= "[" + "".join(params) + "]" - #node_hmac= hmac.new(vars['NODE_KEY'], msg.encode('utf-8'), sha).hexdigest() - node_hmac= hmac.new(vars['NODE_KEY'], "[]".encode('utf-8'), sha).hexdigest() - auth['value']= node_hmac try: auth_session = {} + auth_session['AuthMethod'] = 'session' + if not vars.has_key('NODE_SESSION'): - session = vars['API_SERVER_INST'].GetSession(auth) + # Try to load /etc/planetlab/session if it exists. + sessionfile = open('/etc/planetlab/session', 'r') + session = sessionfile.read().strip() + auth_session['session'] = session + # Test session. Faults if it's no good. + vars['API_SERVER_INST'].AuthCheck(auth_session) vars['NODE_SESSION'] = session + + sessionfile.close() else: auth_session['session'] = vars['NODE_SESSION'] - auth_session['AuthMethod'] = 'session' + auth = auth_session - except Exception, e: - print e - pass + + except: + auth['AuthMethod']= 'hmac' + + try: + auth['node_id'] = vars['NODE_ID'] + auth['node_ip'] = vars['INTERFACE_SETTINGS']['ip'] + except KeyError, e: + return None + + node_hmac= hmac.new(vars['NODE_KEY'], "[]".encode('utf-8'), sha).hexdigest() + auth['value']= node_hmac + try: + auth_session = {} + if not vars.has_key('NODE_SESSION'): + session = vars['API_SERVER_INST'].GetSession(auth) + auth_session['session'] = session + vars['NODE_SESSION'] = session + # NOTE: save session value to /etc/planetlab/session for + # RunlevelAgent and future BootManager runs + sessionfile = open('/etc/planetlab/session', 'w') + sessionfile.write( vars['NODE_SESSION'] ) + sessionfile.close() + else: + auth_session['session'] = vars['NODE_SESSION'] + + auth_session['AuthMethod'] = 'session' + auth = auth_session + + except Exception, e: + print e + pass + return auth