blob: fff08706dd295b63642b3fee139e783b8db27490 [file] [log] [blame]
Adriana Kobylakfb4d2252016-06-29 21:44:30 -05001#!/usr/bin/python -u
2#
3# Copyright 2016 IBM Corporation
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14# implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17
18
19import sys
20import dbus
21import argparse
22import subprocess
Brad Bishop3d13c282016-09-21 08:07:47 -040023
Adriana Kobylakfb4d2252016-06-29 21:44:30 -050024
25INV_DBUS_NAME = 'org.openbmc.Inventory'
26INV_INTF_NAME = 'org.openbmc.InventoryItem'
27NET_DBUS_NAME = 'org.openbmc.NetworkManager'
28NET_OBJ_NAME = '/org/openbmc/NetworkManager/Interface'
29CHS_DBUS_NAME = 'org.openbmc.control.Chassis'
30CHS_OBJ_NAME = '/org/openbmc/control/chassis0'
31PROP_INTF_NAME = 'org.freedesktop.DBus.Properties'
32
Brad Bishop3d13c282016-09-21 08:07:47 -040033FRUS = {}
Adriana Kobylakfb4d2252016-06-29 21:44:30 -050034
35# IEEE 802 MAC address mask for locally administered.
36# This means the admin has set the MAC and is no longer
37# the unique number set by the device manufacturer.
38MAC_LOCALLY_ADMIN_MASK = 0x20000000000
39
40
41# Get the inventory dbus path based on the requested fru
42def get_inv_obj_path(fru_type, fru_name):
43 obj_path = ''
44 for f in FRUS.keys():
45 if (FRUS[f]['fru_type'] == fru_type and f.endswith(fru_name)):
46 obj_path = f.replace("<inventory_root>", System.INVENTORY_ROOT)
47 return obj_path
48
49
50# Get the inventory property value
51def get_inv_value(obj, prop_name):
52 value = ''
53 dbus_method = obj.get_dbus_method("Get", PROP_INTF_NAME)
54 value = dbus_method(INV_INTF_NAME, prop_name)
55 return value
56
57
58# Get the value of the mac on the system without ':' separators
59def get_sys_mac(obj):
60 sys_mac = ''
61 dbus_method = obj.get_dbus_method("GetHwAddress", NET_DBUS_NAME)
62 sys_mac = dbus_method("eth0")
63 sys_mac = sys_mac.replace(":", "")
64 return sys_mac
65
66
67# Replace the value of the system mac with the value of the inventory
68# MAC if the system MAC is not locally administered because this means
69# the system admin has purposely set the MAC
70def sync_mac(obj, inv_mac, sys_mac):
71 # Convert sys MAC to int to perform bitwise '&'
72 int_sys_mac = int(sys_mac, 16)
73 if not int_sys_mac & MAC_LOCALLY_ADMIN_MASK:
74 # Sys MAC is not locally administered, go replace it with inv value
75 # Add the ':' separators
76 mac_str = ':'.join([inv_mac[i]+inv_mac[i+1] for i in range(0, 12, 2)])
77 # The Set HW Method already has checking for mac format
78 dbus_method = obj.get_dbus_method("SetHwAddress", NET_DBUS_NAME)
79 dbus_method("eth0", mac_str)
80
81
82# Get sys uuid
83def get_sys_uuid(obj):
84 sys_uuid = ''
85 dbus_method = obj.get_dbus_method("Get", PROP_INTF_NAME)
86 sys_uuid = dbus_method(CHS_DBUS_NAME, "uuid")
87 return sys_uuid
88
89
90# Set sys uuid, this reboots the BMC for the value to take effect
91def set_sys_uuid(uuid):
92 rc = subprocess.call(["fw_setenv", "uuid", uuid])
93 if rc == 0:
94 print "Rebooting BMC to set uuid"
95 # TODO Uncomment once sync from u-boot to /etc/machine-id is in place
96 # Issue openbmc/openbmc#479
97 # rc = subprocess.call(["reboot"])
98 else:
99 print "Error setting uuid"
100
101if __name__ == '__main__':
102 arg = argparse.ArgumentParser()
103 arg.add_argument('-t')
104 arg.add_argument('-n')
105 arg.add_argument('-p')
106 arg.add_argument('-s')
107
108 opt = arg.parse_args()
109 fru_type = opt.t
110 fru_name = opt.n
111 prop_name = opt.p
112 sync_type = opt.s
113
Brad Bishop3d13c282016-09-21 08:07:47 -0400114 inventory = os.path.join(
115 sys.prefix, 'share', 'inventory', 'inventory.json')
116 if os.path.exists(inventory):
117 import json
118 with open(inventory, 'r') as f:
119 try:
120 inv = json.load(f)
121 except ValueError:
122 print "Invalid JSON detected in " + inventory
123 else:
124 FRUS = inv
125 else:
126 import obmc_system_config as System
127 FRUS = System.FRU_INSTANCES
128
Adriana Kobylakfb4d2252016-06-29 21:44:30 -0500129 bus = dbus.SystemBus()
130 inv_obj_path = get_inv_obj_path(fru_type, fru_name)
131 inv_obj = bus.get_object(INV_DBUS_NAME, inv_obj_path)
132 net_obj = bus.get_object(NET_DBUS_NAME, NET_OBJ_NAME)
133 chs_obj = bus.get_object(CHS_DBUS_NAME, CHS_OBJ_NAME)
134
135 # Get the value of the requested inventory property
136 inv_value = get_inv_value(inv_obj, prop_name)
137
138 if sync_type == "mac":
139 sys_mac = get_sys_mac(net_obj)
140 if inv_value != sys_mac:
141 sync_mac(net_obj, inv_value, sys_mac)
142 elif sync_type == "uuid":
143 sys_uuid = get_sys_uuid(chs_obj)
144 if inv_value != sys_uuid:
145 set_sys_uuid(inv_value)
Brad Bishop53066752016-09-21 08:48:04 -0400146
147# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4