From d8be3364964d91f9e02e5eef261fc4260251a714 Mon Sep 17 00:00:00 2001 From: Tom Joseph Date: Tue, 6 Dec 2016 17:54:13 +0530 Subject: Communication Module Implementation Registers the commands related to the Session Setup sequence. Change-Id: I7214087a1779d106173b05925dc6857c7223a503 Signed-off-by: Tom Joseph --- comm_module.cpp | 77 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 comm_module.cpp (limited to 'comm_module.cpp') diff --git a/comm_module.cpp b/comm_module.cpp new file mode 100644 index 0000000..d780e21 --- /dev/null +++ b/comm_module.cpp @@ -0,0 +1,77 @@ +#include "comm_module.hpp" + +#include +#include +#include +#include + +#include "command/channel_auth.hpp" +#include "command/open_session.hpp" +#include "command/rakp12.hpp" +#include "command/rakp34.hpp" +#include "command/session_cmds.hpp" +#include "command_table.hpp" +#include "main.hpp" +#include "session.hpp" + +namespace command +{ + +void sessionSetupCommands() +{ + static const command::CmdDetails commands[] = + { + // Open Session Request/Response + { + { + (static_cast + (message::PayloadType::OPEN_SESSION_REQUEST) << 16) + }, + &openSession, session::Privilege::HIGHEST_MATCHING, true + }, + // RAKP1 & RAKP2 Message + { + {(static_cast(message::PayloadType::RAKP1) << 16)}, + &RAKP12, session::Privilege::HIGHEST_MATCHING, true + }, + // RAKP3 & RAKP4 Message + { + {(static_cast(message::PayloadType::RAKP3) << 16)}, + &RAKP34, session::Privilege::HIGHEST_MATCHING, true + }, + // Get Channel Authentication Capabilities Command + { + { + (static_cast(message::PayloadType::IPMI) << 16) | + static_cast(command::NetFns::APP) | 0x38 + }, + &GetChannelCapabilities, + session::Privilege::HIGHEST_MATCHING, true + }, + // Set Session Privilege Command + { + { + (static_cast(message::PayloadType::IPMI) << 16) | + static_cast(command::NetFns::APP) | 0x3B + }, + &setSessionPrivilegeLevel, session::Privilege::USER, false + }, + // Close Session Command + { + { + (static_cast(message::PayloadType::IPMI) << 16) | + static_cast(command::NetFns::APP) | 0x3C + }, + &closeSession, session::Privilege::CALLBACK, false + }, + }; + + for (auto& iter : commands) + { + std::get(singletonPool).registerCommand( + iter.command, std::make_unique + (iter.command, iter.functor, iter.privilege, iter.sessionless)); + } +} + +} // namespace command -- cgit v1.2.1