// +build libipmctl,cgo // Copyright 2020 Google Inc. All Rights Reserved. // // 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. package machine // #cgo pkg-config: libipmctl // #include import "C" import ( "fmt" info "github.com/google/cadvisor/info/v1" "k8s.io/klog" ) // getNVMAvgPowerBudget retrieves configured power budget // (in watts) for NVM devices. When libipmct is not available // zero is returned. func getNVMAvgPowerBudget() (uint, error) { // Get number of devices on the platform // see: https://github.com/intel/ipmctl/blob/v01.00.00.3497/src/os/nvm_api/nvm_management.h#L1478 var count C.uint err := C.nvm_get_number_of_devices(&count) if err != C.NVM_SUCCESS { klog.Warningf("Unable to get number of NVM devices. Status code: %d", err) return uint(0), fmt.Errorf("Unable to get number of NVM devices. Status code: %d", err) } // Load basic device information for all the devices // to obtain UID of the first one. var devices = make([]C.struct_device_discovery, count) err = C.nvm_get_devices(&devices[0], C.uchar(count)) if err != C.NVM_SUCCESS { klog.Warningf("Unable to get all NVM devices. Status code: %d", err) return uint(0), fmt.Errorf("Unable to get all NVM devices. Status code: %d", err) } // Power budget is same for all the devices // so we can rely on any of them. var device C.struct_device_details err = C.nvm_get_device_details(&devices[0].uid[0], &device) if err != C.NVM_SUCCESS { uid := C.GoString(&devices[0].uid[0]) klog.Warningf("Unable to get details of NVM device %q. Status code: %d", uid, err) return uint(0), fmt.Errorf("Unable to get details of NVM device %q. Status code: %d", uid, err) } return uint(device.avg_power_budget / 1000), nil } // getNVMCapacities retrieves the total NVM capacity in bytes for memory mode and app direct mode func getNVMCapacities() (uint64, uint64, error) { var caps C.struct_device_capacities err := C.nvm_get_nvm_capacities(&caps) if err != C.NVM_SUCCESS { klog.Warningf("Unable to get NVM capacity. Status code: %d", err) return uint64(0), uint64(0), fmt.Errorf("Unable to get NVM capacity. Status code: %d", err) } return uint64(caps.memory_capacity), uint64(caps.app_direct_capacity), nil } // GetNVMInfo returns information specific for non-volatile memory modules func GetNVMInfo() (info.NVMInfo, error) { nvmInfo := info.NVMInfo{} // Initialize libipmctl library. cErr := C.nvm_init() if cErr != C.NVM_SUCCESS { klog.Warningf("libipmctl initialization failed with status %d", cErr) return info.NVMInfo{}, fmt.Errorf("libipmctl initialization failed with status %d", cErr) } defer C.nvm_uninit() var err error nvmInfo.MemoryModeCapacity, nvmInfo.AppDirectModeCapacity, err = getNVMCapacities() if err != nil { return info.NVMInfo{}, fmt.Errorf("Unable to get NVM capacities, err: %s", err) } nvmInfo.AvgPowerBudget, err = getNVMAvgPowerBudget() if err != nil { return info.NVMInfo{}, fmt.Errorf("Unable to get NVM average power budget, err: %s", err) } return nvmInfo, nil }