-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a plugin to get information from ipmitool
- is_ipmi_device_available: check that your system supports IPMI by running `ipmitool power state` - returns true if IPMI is supported, false otherwise - get_all_sensors: run `ipmitool sdr list` - returns a JSON string with all sensors or raise an error - get_sensor: run `ipmitool sdr get <sensor>` - returns details about sensors passed as parameter or raise an error - get_ipmi_lan: run `ipmitool lan print` - returns network info of the IPMI server as a JSON or raise an error Signed-off-by: Guillaume <[email protected]>
- Loading branch information
Showing
3 changed files
with
424 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
import json | ||
import sys | ||
import XenAPIPlugin | ||
|
||
sys.path.append(".") | ||
from xcpngutils import ( | ||
configure_logging, | ||
run_command, | ||
error_wrapped, | ||
ProcessException, | ||
raise_plugin_error, | ||
) | ||
|
||
|
||
@error_wrapped | ||
def _is_ipmi_available(): | ||
# Try to run a simple command to check if ipmitool works | ||
try: | ||
_ = run_command(["ipmitool", "chassis", "status"]) | ||
except ProcessException as e: | ||
if "Could not open device" in e.stderr: | ||
return False | ||
else: | ||
raise e | ||
|
||
return True | ||
|
||
|
||
def is_ipmi_device_available(_session, _args): | ||
return json.dumps(_is_ipmi_available()) | ||
|
||
|
||
@error_wrapped | ||
def check_ipmi_availability(func): | ||
def wrapper(*args, **kwargs): | ||
if not _is_ipmi_available(): | ||
raise_plugin_error(1, "IPMI not available") | ||
return func(*args, **kwargs) | ||
|
||
return wrapper | ||
|
||
|
||
@check_ipmi_availability | ||
def sensor_data(_session, _args): | ||
sensor_data = [] | ||
output = run_command(["ipmitool", "sdr", "list"]) | ||
|
||
for line in output["stdout"].splitlines(): | ||
if not line: | ||
continue | ||
sensor_fields = line.split("|") | ||
sensor_data.append({ | ||
"name": sensor_fields[0].strip(), | ||
"value": sensor_fields[1].strip(), | ||
"event": sensor_fields[2].strip(), | ||
}) | ||
|
||
return json.dumps(sensor_data) | ||
|
||
|
||
@check_ipmi_availability | ||
def sensor_info(_session, args): | ||
sensors_info = [] | ||
sensors = args.get("sensors") | ||
|
||
if not sensors: | ||
return "{}" | ||
|
||
for sensor in sensors.split(","): | ||
sensor = sensor.strip() | ||
info = [] | ||
output = run_command(["ipmitool", "sdr", "get", sensor]) | ||
|
||
for line in output["stdout"].splitlines(): | ||
if ":" not in line: | ||
continue | ||
name, value = line.split(":", 1) | ||
info.append({ | ||
"name": name.strip(), | ||
"value": value.strip(), | ||
}) | ||
|
||
sensors_info.append({ | ||
"name": sensor, | ||
"info": info, | ||
}) | ||
|
||
return json.dumps(sensors_info) | ||
|
||
|
||
@check_ipmi_availability | ||
def ipmi_lan(_session, _args): | ||
lan_info = [] | ||
wanted = [ | ||
"IP Address", | ||
"Subnet Mask", | ||
"MAC Address", | ||
"BMC ARP Control", | ||
"Default Gateway IP", | ||
"802.1q VLAN", | ||
"RMCP+ Cipher Suites", | ||
] | ||
|
||
output = run_command(["ipmitool", "lan", "print"]) | ||
|
||
for line in output["stdout"].splitlines(): | ||
if any(word in line for word in wanted): | ||
name, value = line.split(":", 1) | ||
lan_info.append({ | ||
"name": name.strip(), | ||
"value": value.strip(), | ||
}) | ||
|
||
return json.dumps(lan_info) | ||
|
||
|
||
_LOGGER = configure_logging("ipmitool-xapi-plugin") | ||
if __name__ == "__main__": | ||
XenAPIPlugin.dispatch({ | ||
"is_ipmi_device_available": is_ipmi_device_available, | ||
"get_all_sensors": sensor_data, | ||
"get_sensor": sensor_info, | ||
"get_ipmi_lan": ipmi_lan, | ||
}) |
Oops, something went wrong.