blob: ddeca4cf509f0334408494829727057bac8dda0f [file] [log] [blame]
Tom Joseph3e61aa02016-08-08 08:42:39 -05001#include "sessions_manager.hpp"
2
3#include <algorithm>
4#include <cstdlib>
5#include <iomanip>
6#include <iostream>
7#include <memory>
8
9#include "session.hpp"
10
11namespace session
12{
13
14Manager::Manager()
15{
16 /*
17 * Session ID is 0000_0000h for messages that are sent outside the session.
18 * The session setup commands are sent on this session, so when the session
19 * manager comes up, is creates the Session ID 0000_0000h. It is active
20 * through the lifetime of the Session Manager.
21 */
22 sessionsMap.emplace(0, std::make_shared<Session>());
23 // Seeding the pseudo-random generator
24 std::srand(std::time(0));
25}
26
27std::weak_ptr<Session> Manager::startSession(SessionID remoteConsoleSessID,
Tom Josephdd1be1a2017-01-10 16:10:29 +053028 Privilege priv, cipher::rakp_auth::Algorithms authAlgo,
Tom Josephba11f792017-01-24 18:21:45 +053029 cipher::integrity::Algorithms intAlgo,
30 cipher::crypt::Algorithms cryptAlgo)
Tom Joseph3e61aa02016-08-08 08:42:39 -050031{
32 std::shared_ptr<Session> session = nullptr;
33 SessionID sessionID = 0;
34 cleanStaleEntries();
35 auto activeSessions = sessionsMap.size() - MAX_SESSIONLESS_COUNT;
36
37 if (activeSessions < MAX_SESSION_COUNT)
38 {
39 do
40 {
41 session = std::make_shared<Session>(remoteConsoleSessID, priv);
42
43 /*
44 * Every IPMI Session has two ID's attached to it Remote Console
45 * Session ID and BMC Session ID. The remote console ID is passed
46 * along with the Open Session request command. The BMC session ID
47 * is the key for the session map and is generated using std::rand.
48 * There is a rare chance for collision of BMC session ID, so the
49 * following check validates that. In the case of collision the
50 * created session is reseted and a new session is created for
51 * validating collision.
52 */
53 auto iterator = sessionsMap.find(session->getBMCSessionID());
54 if (iterator != sessionsMap.end())
55 {
56 //Detected BMC Session ID collisions
57 session.reset();
58 continue;
59 }
60 else
61 {
62 break;
63 }
64 }
65 while (1);
66
Vernon Mauery9b307be2017-11-22 09:28:16 -080067 // Set the Authentication Algorithm
Tom Joseph3e61aa02016-08-08 08:42:39 -050068 switch (authAlgo)
69 {
70 case cipher::rakp_auth::Algorithms::RAKP_HMAC_SHA1:
71 {
72 session->setAuthAlgo(
Tom Josephba11f792017-01-24 18:21:45 +053073 std::make_unique<cipher::rakp_auth::AlgoSHA1>(intAlgo,
74 cryptAlgo));
Tom Joseph3e61aa02016-08-08 08:42:39 -050075 break;
76 }
77 default:
78 {
79 throw std::runtime_error("Invalid Authentication Algorithm");
80 }
81 }
82 sessionID = session->getBMCSessionID();
83 sessionsMap.emplace(sessionID, std::move(session));
84 }
85 else
86 {
87 std::cerr << "E> No free sessions left: Active: " << activeSessions <<
88 " Allowed: " <<
89 MAX_SESSION_COUNT << "\n";
90
91 for (const auto& iterator : sessionsMap)
92 {
93 std::cerr << "E> Active Session: 0x" << std::hex
94 << std::setfill('0') << std::setw(8)
95 << (iterator.second)->getBMCSessionID() << "\n";
96 }
97 throw std::runtime_error("No free sessions left");
98 }
99
100 return getSession(sessionID);
101}
102
Tom Joseph9662c3a2016-12-06 17:52:16 +0530103bool Manager::stopSession(SessionID bmcSessionID)
Tom Joseph3e61aa02016-08-08 08:42:39 -0500104{
Tom Joseph9662c3a2016-12-06 17:52:16 +0530105 auto iter = sessionsMap.find(bmcSessionID);
106 if (iter != sessionsMap.end())
Tom Joseph3e61aa02016-08-08 08:42:39 -0500107 {
Tom Joseph9662c3a2016-12-06 17:52:16 +0530108 iter->second->state = State::TEAR_DOWN_IN_PROGRESS;
109 return true;
110 }
111 else
112 {
113 return false;
Tom Joseph3e61aa02016-08-08 08:42:39 -0500114 }
115}
116
117std::weak_ptr<Session> Manager::getSession(SessionID sessionID,
118 RetrieveOption option)
119{
120 switch (option)
121 {
122 case RetrieveOption::BMC_SESSION_ID:
123 {
124 auto iter = sessionsMap.find(sessionID);
125 if (iter != sessionsMap.end())
126 {
127 return iter->second;
128 }
Tom Joseph6516cef2017-07-31 18:48:34 +0530129 break;
Tom Joseph3e61aa02016-08-08 08:42:39 -0500130 }
131 case RetrieveOption::RC_SESSION_ID:
132 {
133 auto iter = std::find_if(sessionsMap.begin(),
134 sessionsMap.end(),
135 [sessionID](const std::pair<const uint32_t,
136 std::shared_ptr<Session>>& in)
137 -> bool
138 {
139 return sessionID == in.second->getRCSessionID();
140 });
141
142 if (iter != sessionsMap.end())
143 {
144 return iter->second;
145 }
Tom Joseph6516cef2017-07-31 18:48:34 +0530146 break;
Tom Joseph3e61aa02016-08-08 08:42:39 -0500147 }
148 default:
149 throw std::runtime_error("Invalid retrieval option");
150 }
151
152 throw std::runtime_error("Session ID not found");
153}
154
155void Manager::cleanStaleEntries()
156{
157 for(auto iter = sessionsMap.begin(); iter != sessionsMap.end();)
158 {
159 auto session = iter->second;
160 if ((session->getBMCSessionID() != SESSION_ZERO) &&
161 !(session->isSessionActive()))
162 {
163 iter = sessionsMap.erase(iter);
164 }
165 else
166 {
167 ++iter;
168 }
169 }
170}
171
172} // namespace session