blob: afbe67ad7b18e589eaa483e16656863fc2419c00 [file] [log] [blame]
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301/*
2// Copyright (c) 2018 Intel Corporation
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15*/
16
17#pragma once
18#include <cstdint>
19
20namespace ipmi
21{
22// IPMI commands for user command NETFN:APP.
23enum ipmi_netfn_user_cmds
24{
25 IPMI_CMD_SET_USER_ACCESS = 0x43,
26 IPMI_CMD_GET_USER_ACCESS = 0x44,
27 IPMI_CMD_SET_USER_NAME = 0x45,
28 IPMI_CMD_GET_USER_NAME = 0x46,
29 IPMI_CMD_SET_USER_PASSWORD = 0x47,
30};
31
Richard Marian Thomaiyar282e79b2018-11-13 19:00:58 +053032enum class IPMISetPasswordReturnCodes
33{
34 ipmiCCPasswdFailMismatch = 0x80,
35 ipmiCCPasswdFailWrongSize = 0x81,
36};
37
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053038static constexpr uint8_t userIdEnabledViaSetPassword = 0x1;
39static constexpr uint8_t userIdDisabledViaSetPassword = 0x2;
40
41void registerUserIpmiFunctions();
42} // namespace ipmi