# Copyright 2013 IBM Corporation # Copyright 2015-2017 Lenovo # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """This represents the low layer message framing portion of IPMI""" import collections import hashlib import hmac import os import random import select import socket import struct import threading from cryptography.hazmat.backends import default_backend from cryptography.hazmat.primitives.ciphers import algorithms from cryptography.hazmat.primitives.ciphers import Cipher from cryptography.hazmat.primitives.ciphers import modes import aiohmi.exceptions as exc from aiohmi.ipmi.private import constants from aiohmi.ipmi.private import util from aiohmi.ipmi.private.util import _monotonic_time from aiohmi.ipmi.private.util import get_ipmi_error KEEPALIVE_SESSIONS = threading.RLock() WAITING_SESSIONS = threading.RLock() try: dict.iteritems def dictitems(d): return d.iteritems() except AttributeError: def dictitems(d): return d.items() # minimum timeout for first packet to retry in any given # session. This will be randomized to stagger out retries # in case of congestion initialtimeout = 0.5 ioqueue = collections.deque([]) ipv6support = None selectdeadline = 0 running = True # no more than this many BMCs will share a socket # this could be adjusted based on rmem_max # value, leading to fewer filehandles MAX_BMCS_PER_SOCKET = 64 # maximum time to allow idle, more than this and BMC may assume MAX_IDLE = 29 # incorrect idle sessionqueue = collections.deque([]) try: IPPROTO_IPV6 = socket.IPPROTO_IPV6 except AttributeError: IPPROTO_IPV6 = 41 # This is the Win32 version of IPPROTO_IPV6, the only # platform where python *doesn't* have this in socket that aiohmi is # targetting. def _aespad(data): """ipmi demands a certain pad scheme, per table 13-20 AES-CBC encrypted payload fields. """ currlen = len(data) + 1 # need to count the pad length field as well neededpad = currlen % 16 if neededpad: # if it happens to be zero, hurray, but otherwise invert the # sense of the padding neededpad = 16 - neededpad padval = 1 pad = bytearray(neededpad) while padval <= neededpad: pad[padval - 1] = padval padval += 1 pad.append(neededpad) return pad def _checksum(*data): # Two's complement over the data csum = sum(data) csum ^= 0xff csum += 1 csum &= 0xff return csum class Session(object): """A class to manage common IPMI session logistics Almost all developers should not worry about this class and instead be looking toward ipmi.Command and ipmi.Console. For those that do have to worry, the main interesting thing is that the event loop can go one of two ways. Either a larger manager can query using class methods the soonest timeout deadline and the filehandles to poll and assume responsibility for the polling, or it can register filehandles to be watched. This is primarily of interest to Console class, which may have an input filehandle to watch and can pass it to Session. :param bmc: hostname or ip address of the BMC :param userid: username to use to connect :param password: password to connect to the BMC :param kg: optional parameter if BMC requires Kg be set :param port: UDP port to communicate with, pretty much always 623 :param onlogon: callback to receive notification of login completion """ bmc_handlers = {} waiting_sessions = {} initting_sessions = {} keepalive_sessions = {} peeraddr_to_nodes = {} iterwaiters = [] # NOTE(jbjohnso): # socketpool is a mapping of sockets to usage count socketpool = {} # this will be a lock. Delay the assignment so that a calling framework # can do something like reassign our threading and select modules socketchecking = None # Maintain single Cryptography backend for all IPMI sessions (seems to be # thread-safe) _crypto_backend = default_backend() @classmethod def _cleanup(cls): for sesskey in list(cls.bmc_handlers): for portent in list(cls.bmc_handlers[sesskey]): session = cls.bmc_handlers[sesskey][portent] session.cleaningup = True session.logout() @classmethod def _assignsocket(cls, server=None): global ipv6support if ipv6support: tmpsocket = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM) tmpsocket.setsockopt(IPPROTO_IPV6, socket.IPV6_V6ONLY, 0) elif ipv6support is None: # we need to determine ipv6 support now try: tmpsocket = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM) tmpsocket.setsockopt(IPPROTO_IPV6, socket.IPV6_V6ONLY, 0) ipv6support = True except socket.error: ipv6support = False tmpsocket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) else: tmpsocket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) tmpsocket.bind(('', 0)) return tmpsocket def _sync_login(self, response): """Handle synchronous callers in lieu of a client-provided callback""" # Be a stub, the __init__ will catch and respond to ensure response # is given in the same thread as was called return @classmethod def _is_session_valid(cls, session): with util.protect(KEEPALIVE_SESSIONS): sess = cls.keepalive_sessions.get(session, None) if sess is not None and 'timeout' in sess: if sess['timeout'] < _monotonic_time() - 15: # session would have timed out by now, don't use it return False return not session.broken def __init__(self, bmc, userid, password, port=623, kg=None, onlogon=None, privlevel=None, keepalive=True): self.broken = False self.socket = None self.logged = 0 if privlevel is not None: self.privlevel = privlevel self.autopriv = False else: self.privlevel = 4 self.autopriv = True self.logoutexpiry = None self.autokeepalive = keepalive self.maxtimeout = 3 # be aggressive about giving up on initial packet self.incommand = False self.nameonly = 16 # default to name only lookups in RAKP exchange self.servermode = False self.initialized = True self.cleaningup = False self.lastpayload = None self._customkeepalives = None # queue of events denoting line to run a cmd self.evq = collections.deque([]) self.bmc = bmc # a private queue for packets for which this session handler # is destined to receive self.pktqueue = collections.deque([]) try: self.userid = userid.encode('utf-8') self.password = password.encode('utf-8') except AttributeError: self.userid = userid self.password = password self.nowait = False self.pendingpayloads = collections.deque([]) self.request_entry = [] self.kgo = kg if kg is not None: try: kg = kg.encode('utf-8') except AttributeError: pass self.kg = kg else: self.kg = self.password self.port = port if onlogon is None: self.async_ = False self.logonwaiters = [self._sync_login] else: self.async_ = True self.logonwaiters = [onlogon] if self.__class__.socketchecking is None: self.__class__.socketchecking = threading.Lock() with self.socketchecking: self.socket = self._assignsocket() self.login() while self.logging: self.wait_for_rsp() if self.broken: raise exc.IpmiException(self.errormsg) def _mark_broken(self, error=None): # since our connection has failed retries # deregister our keepalive facility self.lastpayload = None self.logout(False) self.logging = False self.errormsg = error if not self.broken: self.broken = True def onlogon(self, parameter): if 'error' in parameter: self._mark_broken(parameter['error']) while self.logonwaiters: waiter = self.logonwaiters.pop() waiter(parameter) def _initsession(self): # NOTE(jbjohnso): this number can be whatever we want. # I picked 'xCAT' minus 1 so that a hexdump of packet # would show xCAT self.localsid = 2017673555 self.confalgo = 0 self.aeskey = None self.integrityalgo = 0 self.attemptedhash = 256 self.currhashlib = None self.currhashlen = 0 self.k1 = None self.rmcptag = 1 self.lastpayload = None self.ipmicallback = None self.sessioncontext = None self.sequencenumber = 0 self.sessionid = 0 self.authtype = 0 self.ipmiversion = 1.5 self.timeout = initialtimeout + (0.5 * random.random()) self.logoutexpiry = _monotonic_time() + self._getmaxtimeout() self.rqlun = 0 self.seqlun = 0 # NOTE(jbjohnso): per IPMI table 5-4, software ids in the ipmi spec may # be 0x81 through 0x8d. We'll stick with 0x81 for now, # do not forsee a reason to adjust self.rqaddr = 0x81 self.logging = True self.logged = 0 # NOTE(jbjohnso): when we confirm a working sockaddr, put it here to # skip getaddrinfo self.sockaddr = None # NOTE(jbjohnso): this tracks netfn,command,seqlun combinations that # were retried so that we don't loop around and reuse # the same request data and cause potential ambiguity # in return self.tabooseq = {} # NOTE(jbjohnso): default to supporting ipmi 2.0. Strictly by spec, # this should gracefully be backwards compat, but some # 1.5 implementations checked reserved bits self.ipmi15only = 0 self.sol_handler = None # NOTE(jbjohnso): This is the callback handler for any SOL payload def _make_bridge_request_msg(self, channel, netfn, command): """This function generate message for bridge request. It is a part of ipmi payload. """ head = bytearray((constants.IPMI_BMC_ADDRESS, constants.netfn_codes['application'] << 2)) check_sum = _checksum(*head) # NOTE(fengqian): according IPMI Figure 14-11, rqSWID is set to 81h boday = bytearray((0x81, (self.seqlun << 2) | self.rqlun, constants.IPMI_SEND_MESSAGE_CMD, 0x40 | channel)) # NOTE(fengqian): Track request self._add_request_entry((constants.netfn_codes['application'] + 1, self.seqlun, constants.IPMI_SEND_MESSAGE_CMD)) return head + bytearray((check_sum,)) + boday def _add_request_entry(self, entry=()): """This function record the request with netfn, sequence number and command, which will be used in parse_ipmi_payload. :param entry: a set of netfn, sequence number and command. """ if not self._lookup_request_entry(entry): self.request_entry.append(entry) def _lookup_request_entry(self, entry=()): return entry in self.request_entry def _remove_request_entry(self, entry=()): if self._lookup_request_entry(entry): self.request_entry.remove(entry) def _make_ipmi_payload(self, netfn, command, bridge_request=None, data=(), rslun=0): """This function generates the core ipmi payload that would be applicable for any channel (including KCS) """ bridge_msg = [] self.expectedcmd = command # in ipmi, the response netfn is always one self.expectednetfn = netfn + 1 # higher than the request payload, we assume # we are always the requestor for now seqincrement = 7 # IPMI spec forbids gaps bigger then 7 in seq number. # Risk the taboo rather than violate the rules while (not self.servermode and (netfn, command, self.seqlun) in self.tabooseq and self.tabooseq[(netfn, command, self.seqlun)] and seqincrement): self.tabooseq[(self.expectednetfn, command, self.seqlun)] -= 1 # Allow taboo to eventually expire after a few rounds self.seqlun += 1 # the last two bits are lun, so add 4 to add 1 self.seqlun &= 0x3f # we only have one byte, wrap when exceeded seqincrement -= 1 if bridge_request: addr = bridge_request.get('addr', 0x0) channel = bridge_request.get('channel', 0x0) bridge_msg = self._make_bridge_request_msg(channel, netfn, command) # NOTE(fengqian): For bridge request, rsaddr is specified and # rqaddr is BMC address. rqaddr = constants.IPMI_BMC_ADDRESS rsaddr = addr else: rqaddr = self.rqaddr rsaddr = constants.IPMI_BMC_ADDRESS if self.servermode: rsaddr = self.clientaddr # figure 13-4, first two bytes are rsaddr and # netfn, for non-bridge request, rsaddr is always 0x20 since we are # addressing BMC while rsaddr is specified forbridge request header = bytearray((rsaddr, (netfn << 2) | rslun)) reqbody = bytearray(( rqaddr, (self.seqlun << 2) | self.rqlun, command)) + data headsum = bytearray((_checksum(*header),)) bodysum = bytearray((_checksum(*reqbody),)) payload = header + headsum + reqbody + bodysum if bridge_request: payload = bridge_msg + payload # NOTE(fengqian): For bridge request, another check sum is needed. tail_csum = _checksum(*payload[3:]) payload.append(tail_csum) if not self.servermode: self._add_request_entry((self.expectednetfn, self.seqlun, command)) return payload def _generic_callback(self, response): errorstr = get_ipmi_error(response) if errorstr: response['error'] = errorstr self.lastresponse = response def _isincommand(self): if self.incommand: stillin = self.incommand - _monotonic_time() if stillin > 0: return stillin else: self.lastpayload = None return 0 def _getmaxtimeout(self): cumulativetime = 0 incrementtime = self.timeout while incrementtime < self.maxtimeout: cumulativetime += incrementtime incrementtime += 1 return cumulativetime + 1 def _cmdwait(self): while self._isincommand(): self.wait_for_rsp() def awaitresponse(self, retry): while retry and self.lastresponse is None and self.logged: timeout = 30.0 # self.expiration - _monotonic_time() select.select([self.socket], [], [], timeout) while self.iterwaiters: waiter = self.iterwaiters.pop() waiter({'success': True}) self.process_pktqueue() def raw_command(self, netfn, command, bridge_request=None, data=(), retry=True, delay_xmit=None, timeout=None, callback=None, rslun=0): if not self.logged: if (self.logoutexpiry is not None and _monotonic_time() > self.logoutexpiry): self._mark_broken() raise exc.IpmiException('Session no longer connected') self._cmdwait() if not self.logged: raise exc.IpmiException('Session no longer connected') self.incommand = _monotonic_time() + self._getmaxtimeout() self.lastresponse = None if callback is None: self.ipmicallback = self._generic_callback else: self.ipmicallback = callback self._send_ipmi_net_payload(netfn, command, data, bridge_request=bridge_request, retry=retry, delay_xmit=delay_xmit, timeout=timeout, rslun=rslun) if retry: # in retry case, let the retry timers indicate wait time timeout = None else: # if not retry, give it a second before surrending timeout = 1 if callback: # caller *must* clean up self.incommand and self.evq return # The event loop is shared amongst aiohmi session instances # within a process. In this way, synchronous usage of the interface # plays well with asynchronous use. In fact, this produces the # behavior of only the constructor needing a callback. From then on, # synchronous usage of the class acts in a coroutine style governed # by order of data on the network self.awaitresponse(retry) lastresponse = self.lastresponse self.incommand = False while self.evq: self.evq.popleft().set() if retry and lastresponse is None: raise exc.IpmiException('Session no longer connected') return lastresponse def _send_ipmi_net_payload(self, netfn=None, command=None, data=(), code=0, bridge_request=None, retry=None, delay_xmit=None, timeout=None, rslun=0): if retry is None: retry = not self.servermode if self.servermode: data = bytearray((code,)) + bytearray(data) if netfn is None: netfn = self.clientnetfn if command is None: command = self.clientcommand else: data = bytearray(data) ipmipayload = self._make_ipmi_payload(netfn, command, bridge_request, data, rslun) payload_type = constants.payload_types['ipmi'] self.send_payload(payload=ipmipayload, payload_type=payload_type, retry=retry, delay_xmit=delay_xmit, timeout=timeout) def send_payload(self, payload=(), payload_type=None, retry=True, delay_xmit=None, needskeepalive=False, timeout=None): """Send payload over the IPMI Session :param needskeepalive: If the payload is expected not to count as 'active' by the BMC, set this to True to avoid Session considering the job done because of this payload. Notably, 0-length SOL packets are prone to confusion. :param timeout: Specify a custom timeout for long-running request """ if payload and self.lastpayload: # we already have a packet outgoing, make this # a pending payload # this way a simplistic BMC won't get confused # and we also avoid having to do more complicated # retry mechanism where each payload is # retried separately self.pendingpayloads.append((payload, payload_type, retry)) return if payload_type is None: payload_type = self.last_payload_type if not payload: payload = self.lastpayload message = bytearray(b'\x06\x00\xff\x07') # constant IPMI RMCP header if retry: self.lastpayload = payload self.last_payload_type = payload_type if not isinstance(payload, bytearray): payload = bytearray(payload) message.append(self.authtype) baretype = payload_type if self.integrityalgo: payload_type |= 0b01000000 if self.confalgo: payload_type |= 0b10000000 if self.ipmiversion == 2.0: message.append(payload_type) if baretype == 2: # TODO(jbjohnso): OEM payload types raise NotImplementedError("OEM Payloads") elif baretype not in constants.payload_types.values(): raise NotImplementedError( "Unrecognized payload type %d" % baretype) message += struct.pack("> 8) iv = os.urandom(16) message += iv payloadtocrypt = bytes(payload + _aespad(payload)) crypter = Cipher( algorithm=algorithms.AES(self.aeskey), mode=modes.CBC(iv), backend=self._crypto_backend ) encryptor = crypter.encryptor() message += encryptor.update(payloadtocrypt ) + encryptor.finalize() else: # no confidetiality algorithm message.append(psize & 0xff) message.append(psize >> 8) message += payload if self.integrityalgo: # see table 13-8, # RMCP+ packet format # TODO(jbjohnso): SHA256 which is now # allowed neededpad = (len(message) - 2) % 4 if neededpad: neededpad = 4 - neededpad message += b'\xff' * neededpad message.append(neededpad) message.append(7) # reserved, 7 is the required value for the # specification followed message += hmac.new( self.k1, bytes(message[4:]), self.currhashlib).digest()[:self.currhashlen] # per RFC2404 truncates to 96 bits self.netpacket = message # advance idle timer since we don't need keepalive while sending # packets out naturally self._xmit_packet(retry, delay_xmit=delay_xmit, timeout=timeout) def _ipmi15authcode(self, payload, checkremotecode=False): # checkremotecode is used to verify remote code, # otherwise this function is used to general authcode for local if self.authtype == 0: # Only for things before auth in ipmi 1.5, not # like 2.0 cipher suite 0 return () password = self.password padneeded = 16 - len(password) if padneeded < 0: raise exc.IpmiException("Password is too long for ipmi 1.5") password += '\x00' * padneeded if checkremotecode: seqbytes = struct.pack(" 16: raise exc.IpmiException( "Username too long for IPMI, must not exceed 16") padneeded = 16 - len(self.userid) userid = self.userid + ('\x00' * padneeded) reqdata += userid self.ipmicallback = self._got_session_challenge self._send_ipmi_net_payload(netfn=0x6, command=0x39, data=reqdata) def _open_rmcpplus_request(self): self.authtype = 6 # have unique local session ids to ignore aborted # login attempts from the past self.localsid += 1 self.rmcptag += 1 data = bytearray([ self.rmcptag, 0, # request as much privilege as the channel will give us 0, 0, # reserved ]) data += struct.pack(" 0: (nextpayload, nextpayloadtype, retry) = \ self.pendingpayloads.popleft() self.send_payload(payload=nextpayload, payload_type=nextpayloadtype, retry=retry) if self.sol_handler: self.sol_handler(payload) def _got_rmcp_response(self, data): # see RMCP+ open session response table if not (self.sessioncontext and self.sessioncontext != "Established"): return -9 # ignore payload as we are not in a state valid it if data[0] != self.rmcptag: return -9 # use rmcp tag to track and reject stale responses if data[1] != 0: # response code... if self.attemptedhash == 256: self.attemptedhash = 1 self._open_rmcpplus_request() return if data[1] in constants.rmcp_codes: errstr = constants.rmcp_codes[data[1]] else: errstr = "Unrecognized RMCP code %d" % data[1] self.onlogon({'error': errstr}) return -9 self.allowedpriv = data[2] # NOTE(jbjohnso): At this point, the BMC has no idea about what user # shall be used. As such, the allowedpriv field is actually # not particularly useful. got_rakp2 is a good place to # gracefully detect and downgrade privilege for retry localsid = struct.unpack("> 2, payload[4] >> 2, payload[5]) if self._lookup_request_entry(entry): self._remove_request_entry(entry) # NOTE(fengqian): for bridge request, we need to handle the # response twice. First response shows if message send correctly, # second response is the real response. # If the message is send crrectly, we will discard the first # response or else error message will be parsed and return. if ((entry[0] in [0x06, 0x07]) and (entry[2] == 0x34) and (payload[-2] == 0x0)): return -1 else: self._parse_payload(payload) # NOTE(fengqian): recheck if the certain entry is removed in # case that bridge request failed. if self.request_entry: self._remove_request_entry((self.expectednetfn, self.seqlun, self.expectedcmd)) else: # payload is not a match for our last packet # it is also not a bridge request. return -1 def _parse_payload(self, payload): if hasattr(self, 'hasretried') and self.hasretried: self.hasretried = 0 # try to skip it for at most 16 cycles of overflow self.tabooseq[ (self.expectednetfn, self.expectedcmd, self.seqlun)] = 16 # We want to now remember that we do not have an expected packet # bigger than one byte means it can never match the one byte value # by mistake self.expectednetfn = 0x1ff self.expectedcmd = 0x1ff if not self.servermode: self.seqlun += 1 # prepare seqlun for next transmit self.seqlun &= 0x3f # when overflowing, wrap around # render retry mechanism utterly incapable of # doing anything, though it shouldn't matter self.lastpayload = None self.last_payload_type = None response = {'netfn': payload[1] >> 2} # ^^ remove header of rsaddr/netfn/lun/checksum/rq/seq/lun del payload[0:5] # remove the trailing checksum del payload[-1] response['command'] = payload[0] if self.servermode: del payload[0:1] response['data'] = payload else: response['code'] = payload[1] del payload[0:2] response['data'] = payload self.timeout = initialtimeout + (0.5 * random.random()) if not self.servermode and len(self.pendingpayloads) > 0: (nextpayload, nextpayloadtype, retry) = \ self.pendingpayloads.popleft() self.send_payload(payload=nextpayload, payload_type=nextpayloadtype, retry=retry) self.ipmicallback(response) def _timedout(self): if not self.lastpayload: return self.nowait = True self.timeout += 1 if self.timeout > self.maxtimeout: response = {'error': 'timeout', 'code': 0xffff} self.ipmicallback(response) self.nowait = False self._mark_broken() return elif self.sessioncontext == 'FAILED': self.lastpayload = None self.nowait = False return if self.sessioncontext == 'OPENSESSION': # In this case, we want to craft a new session request to have # unambiguous session id regardless of how packet was dropped or # delayed in this case, it's safe to just redo the request self.lastpayload = None self._open_rmcpplus_request() elif (self.sessioncontext == 'EXPECTINGRAKP2' or self.sessioncontext == 'EXPECTINGRAKP4'): # If we can't be sure which RAKP was dropped or if RAKP3/4 was just # delayed, the most reliable thing to do is rewind and start over # bmcs do not take kindly to receiving RAKP1 or RAKP3 twice self.lastpayload = None self._relog() else: # in IPMI case, the only recourse is to act as if the packet is # idempotent. SOL has more sophisticated retry handling # the biggest risks are reset sp which is often fruitless to retry # and chassis reset, which sometimes will shoot itself # systematically in the head in a shared port case making replies # impossible self.hasretried = 1 # remember so that we can track taboo # combinations # of sequence number, netfn, and lun due to # ambiguity on the wire self.send_payload() self.nowait = False def _xmit_packet(self, retry=True, delay_xmit=None, timeout=None): if self.sequencenumber: # seq number of zero will be left alone, it is # special, otherwise increment self.sequencenumber += 1 if delay_xmit is not None: select.select([self.socket], [], [], delay_xmit) if self.sockaddr: self.socket.sendto(self.netpacket, self.sockaddr) else: # he have not yet picked a working sockaddr for this connection, # try all the candidates that getaddrinfo provides self.allsockaddrs = [] try: for res in socket.getaddrinfo(self.bmc, self.port, 0, socket.SOCK_DGRAM): sockaddr = res[4] if ipv6support and res[0] == socket.AF_INET: # convert the sockaddr to AF_INET6 newhost = '::ffff:' + sockaddr[0] sockaddr = (newhost, sockaddr[1], 0, 0) self.allsockaddrs.append(sockaddr) self.socket.sendto(self.netpacket, sockaddr) except socket.gaierror: raise exc.IpmiException( "Unable to transmit to specified address") if retry: # TODO(jjohnson2): implement retry for simplesession pass def logout(self, sessionok=True): if not self.logged: return {'success': True} if self.cleaningup: self.nowait = True if self.sol_handler: self.raw_command(netfn=6, command=0x49, data=(1, 1, 0, 0, 0, 0), retry=sessionok) self.raw_command(command=0x3c, netfn=6, data=struct.unpack("4B", struct.pack("I", self.sessionid)), retry=False) # stop trying for a keepalive, self.lastpayload = None with util.protect(KEEPALIVE_SESSIONS): Session.keepalive_sessions.pop(self, None) self.logged = 0 self.logging = False if self._customkeepalives: for ka in list(self._customkeepalives): # Be thorough and notify parties through their custom # keepalives. In practice, this *should* be the same, but # if a code somehow makes duplicate SOL handlers, # this would notify all the handlers rather than just the # last one to take ownership self._customkeepalives[ka][1]( {'error': 'Session Disconnected'}) self._customkeepalives = None self.broken = True self.nowait = False return {'success': True} if __name__ == "__main__": import sys ipmis = Session(bmc=sys.argv[1], userid=sys.argv[2], password=os.environ['IPMIPASS']) print(ipmis.raw_command(command=2, data=[1], netfn=0)) print(get_ipmi_error({'command': 8, 'code': 128, 'netfn': 1}))