# Copyright 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. import argparse import ctypes import fcntl import json from select import select import glob import hashlib import socket import struct import os import subprocess import sys import time import ssl import socket class IpmiMsg(ctypes.Structure): _fields_ = [('netfn', ctypes.c_ubyte), ('cmd', ctypes.c_ubyte), ('data_len', ctypes.c_short), ('data', ctypes.POINTER(ctypes.c_ubyte))] class IpmiSystemInterfaceAddr(ctypes.Structure): _fields_ = [('addr_type', ctypes.c_int), ('channel', ctypes.c_short), ('lun', ctypes.c_ubyte)] class IpmiRecv(ctypes.Structure): _fields_ = [('recv_type', ctypes.c_int), ('addr', ctypes.POINTER(IpmiSystemInterfaceAddr)), ('addr_len', ctypes.c_uint), ('msgid', ctypes.c_long), ('msg', IpmiMsg)] class IpmiReq(ctypes.Structure): _fields_ = [('addr', ctypes.POINTER(IpmiSystemInterfaceAddr)), ('addr_len', ctypes.c_uint), ('msgid', ctypes.c_long), ('msg', IpmiMsg)] _IONONE = 0 _IOWRITE = 1 _IOREAD = 2 IPMICTL_SET_MY_ADDRESS_CMD = ( _IOREAD << 30 | ctypes.sizeof(ctypes.c_uint) << 16 | ord('i') << 8 | 17) # from ipmi.h IPMICTL_SEND_COMMAND = ( _IOREAD << 30 | ctypes.sizeof(IpmiReq) << 16 | ord('i') << 8 | 13) # from ipmi.h # next is really IPMICTL_RECEIVE_MSG_TRUNC, but will only use that IPMICTL_RECV = ( (_IOWRITE | _IOREAD) << 30 | ctypes.sizeof(IpmiRecv) << 16 | ord('i') << 8 | 11) # from ipmi.h BMC_SLAVE_ADDR = ctypes.c_uint(0x20) CURRCHAN = 0xf ADDRTYPE = 0xc def get_nicname_from_dmi(): for fi in glob.glob('/sys/firmware/dmi/entries/42-*/raw'): dmit = memoryview(open(fi, 'rb').read()) if dmit[0] != 42: continue if dmit[1] < 0xb: continue if dmit[4] != 0x40: # only supporting network host interface continue ifdatalen = dmit[5] ifdata = dmit[6:6+ifdatalen] if ifdata[0] != 2: continue idvend, idprod = struct.unpack('