...
[bootmanager.git] / source / steps / GetAndUpdateNodeDetails.py
1 #!/usr/bin/python2
2
3 # Copyright (c) 2003 Intel Corporation
4 # All rights reserved.
5 #
6 # Copyright (c) 2004-2006 The Trustees of Princeton University
7 # All rights reserved.
8
9 import string
10
11 from Exceptions import *
12 import BootAPI
13 import ModelOptions
14
15 def Run( vars, log ):
16     """
17
18     Contact PLC and get the attributes for this node. Also, parse in
19     options from the node model strong.
20
21     Also, update any node network settings at PLC, minus the ip address,
22     so, upload the mac (if node_id was in conf file), gateway, network,
23     broadcast, netmask, dns1/2, and the hostname/domainname.
24
25     Expect the following keys to be set:
26     BOOT_CD_VERSION                     A tuple of the current bootcd version
27     SKIP_HARDWARE_REQUIREMENT_CHECK     Whether or not we should skip hardware
28                                         requirement checks
29                                         
30     The following keys are set/updated:
31     WAS_NODE_ID_IN_CONF                 Set to 1 if the node id was in the conf file
32     WAS_NODE_KEY_IN_CONF                Set to 1 if the node key was in the conf file
33     BOOT_STATE                          The current node boot state
34     NODE_MODEL                          The user specified model of this node
35     NODE_MODEL_OPTIONS                  The options extracted from the user specified
36                                                 model of this node 
37     SKIP_HARDWARE_REQUIREMENT_CHECK     Whether or not we should skip hardware
38                                                 requirement checks
39     NODE_SESSION                        The session value returned from BootGetNodeDetails
40     INTERFACES                          The network interfaces associated with this node
41     INTERFACE_SETTINGS                  A dictionary of the values of the interface settings
42     
43     Return 1 if able to contact PLC and get node info.
44     Raise a BootManagerException if anything fails.
45     """
46
47     log.write( "\n\nStep: Retrieving details of node from PLC.\n" )
48
49     # make sure we have the variables we need
50     try:
51         BOOT_CD_VERSION= vars["BOOT_CD_VERSION"]
52         if BOOT_CD_VERSION == "":
53             raise ValueError, "BOOT_CD_VERSION"
54
55         SKIP_HARDWARE_REQUIREMENT_CHECK= vars["SKIP_HARDWARE_REQUIREMENT_CHECK"]
56         if SKIP_HARDWARE_REQUIREMENT_CHECK == "":
57             raise ValueError, "SKIP_HARDWARE_REQUIREMENT_CHECK"
58
59         INTERFACE_SETTINGS= vars["INTERFACE_SETTINGS"]
60         if INTERFACE_SETTINGS == "":
61             raise ValueError, "INTERFACE_SETTINGS"
62
63         WAS_NODE_ID_IN_CONF= vars["WAS_NODE_ID_IN_CONF"]
64         if WAS_NODE_ID_IN_CONF == "":
65             raise ValueError, "WAS_NODE_ID_IN_CONF"
66
67         WAS_NODE_KEY_IN_CONF= vars["WAS_NODE_KEY_IN_CONF"]
68         if WAS_NODE_KEY_IN_CONF == "":
69             raise ValueError, "WAS_NODE_KEY_IN_CONF"
70
71     except KeyError, var:
72         raise BootManagerException, "Missing variable in vars: %s\n" % var
73     except ValueError, var:
74         raise BootManagerException, "Variable in vars, shouldn't be: %s\n" % var
75
76     node_details= BootAPI.call_api_function( vars, "GetNodes", 
77                                              (vars['NODE_ID'], 
78                                               ['boot_state', 'nodegroup_ids', 'interface_ids', 'model', 'site_id']))[0]
79
80     vars['BOOT_STATE']= node_details['boot_state']
81     vars['NODE_MODEL']= string.strip(node_details['model'])
82     vars['SITE_ID'] = node_details['site_id'] 
83     log.write( "Successfully retrieved node record.\n" )
84     log.write( "Current boot state: %s\n" % vars['BOOT_STATE'] )
85     log.write( "Node make/model: %s\n" % vars['NODE_MODEL'] )
86     
87     # parse in the model options from the node_model string
88     model= vars['NODE_MODEL']
89     options= ModelOptions.Get(model)
90     vars['NODE_MODEL_OPTIONS']=options
91
92     # Check if we should skip hardware requirement check
93     if options & ModelOptions.MINHW:
94         vars['SKIP_HARDWARE_REQUIREMENT_CHECK']=1
95         log.write( "node model indicates override to hardware requirements.\n" )
96
97     # this contains all the node networks, for now, we are only concerned
98     # in the primary network
99     interfaces= BootAPI.call_api_function( vars, "GetInterfaces", (node_details['interface_ids'],))
100     got_primary= 0
101     for network in interfaces:
102         if network['is_primary'] == 1:
103             log.write( "Primary network as returned from PLC: %s\n" % str(network) )
104             got_primary= 1
105             break
106
107     if not got_primary:
108         raise BootManagerException, "Node did not have a primary network."
109
110     vars['INTERFACES']= interfaces
111     
112     return 1