Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 1 | #include "sessions_manager.hpp" |
| 2 | |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 3 | #include "session.hpp" |
| 4 | |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 5 | #include <algorithm> |
| 6 | #include <cstdlib> |
| 7 | #include <iomanip> |
| 8 | #include <iostream> |
| 9 | #include <memory> |
| 10 | |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 11 | namespace session |
| 12 | { |
| 13 | |
| 14 | Manager::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>()); |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 23 | } |
| 24 | |
Vernon Mauery | ae1fda4 | 2018-10-15 12:55:34 -0700 | [diff] [blame] | 25 | std::shared_ptr<Session> |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 26 | Manager::startSession(SessionID remoteConsoleSessID, Privilege priv, |
| 27 | cipher::rakp_auth::Algorithms authAlgo, |
| 28 | cipher::integrity::Algorithms intAlgo, |
| 29 | cipher::crypt::Algorithms cryptAlgo) |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 30 | { |
| 31 | std::shared_ptr<Session> session = nullptr; |
| 32 | SessionID sessionID = 0; |
| 33 | cleanStaleEntries(); |
| 34 | auto activeSessions = sessionsMap.size() - MAX_SESSIONLESS_COUNT; |
| 35 | |
| 36 | if (activeSessions < MAX_SESSION_COUNT) |
| 37 | { |
| 38 | do |
| 39 | { |
| 40 | session = std::make_shared<Session>(remoteConsoleSessID, priv); |
| 41 | |
| 42 | /* |
| 43 | * Every IPMI Session has two ID's attached to it Remote Console |
| 44 | * Session ID and BMC Session ID. The remote console ID is passed |
| 45 | * along with the Open Session request command. The BMC session ID |
| 46 | * is the key for the session map and is generated using std::rand. |
| 47 | * There is a rare chance for collision of BMC session ID, so the |
| 48 | * following check validates that. In the case of collision the |
Gunnar Mills | 62ec622 | 2018-04-08 16:28:23 -0500 | [diff] [blame] | 49 | * created session is reset and a new session is created for |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 50 | * validating collision. |
| 51 | */ |
| 52 | auto iterator = sessionsMap.find(session->getBMCSessionID()); |
| 53 | if (iterator != sessionsMap.end()) |
| 54 | { |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 55 | // Detected BMC Session ID collisions |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 56 | session.reset(); |
| 57 | continue; |
| 58 | } |
| 59 | else |
| 60 | { |
| 61 | break; |
| 62 | } |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 63 | } while (1); |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 64 | |
Vernon Mauery | 9b307be | 2017-11-22 09:28:16 -0800 | [diff] [blame] | 65 | // Set the Authentication Algorithm |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 66 | switch (authAlgo) |
| 67 | { |
| 68 | case cipher::rakp_auth::Algorithms::RAKP_HMAC_SHA1: |
| 69 | { |
| 70 | session->setAuthAlgo( |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 71 | std::make_unique<cipher::rakp_auth::AlgoSHA1>(intAlgo, |
| 72 | cryptAlgo)); |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 73 | break; |
| 74 | } |
Vernon Mauery | 7e9e2ef | 2017-11-29 08:36:29 -0800 | [diff] [blame] | 75 | case cipher::rakp_auth::Algorithms::RAKP_HMAC_SHA256: |
| 76 | { |
| 77 | session->setAuthAlgo( |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 78 | std::make_unique<cipher::rakp_auth::AlgoSHA256>(intAlgo, |
| 79 | cryptAlgo)); |
Vernon Mauery | 7e9e2ef | 2017-11-29 08:36:29 -0800 | [diff] [blame] | 80 | break; |
| 81 | } |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 82 | default: |
| 83 | { |
| 84 | throw std::runtime_error("Invalid Authentication Algorithm"); |
| 85 | } |
| 86 | } |
| 87 | sessionID = session->getBMCSessionID(); |
| 88 | sessionsMap.emplace(sessionID, std::move(session)); |
| 89 | } |
| 90 | else |
| 91 | { |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 92 | std::cerr << "E> No free sessions left: Active: " << activeSessions |
| 93 | << " Allowed: " << MAX_SESSION_COUNT << "\n"; |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 94 | |
| 95 | for (const auto& iterator : sessionsMap) |
| 96 | { |
| 97 | std::cerr << "E> Active Session: 0x" << std::hex |
| 98 | << std::setfill('0') << std::setw(8) |
| 99 | << (iterator.second)->getBMCSessionID() << "\n"; |
| 100 | } |
| 101 | throw std::runtime_error("No free sessions left"); |
| 102 | } |
| 103 | |
| 104 | return getSession(sessionID); |
| 105 | } |
| 106 | |
Tom Joseph | 9662c3a | 2016-12-06 17:52:16 +0530 | [diff] [blame] | 107 | bool Manager::stopSession(SessionID bmcSessionID) |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 108 | { |
Tom Joseph | 9662c3a | 2016-12-06 17:52:16 +0530 | [diff] [blame] | 109 | auto iter = sessionsMap.find(bmcSessionID); |
| 110 | if (iter != sessionsMap.end()) |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 111 | { |
Tom Joseph | 9662c3a | 2016-12-06 17:52:16 +0530 | [diff] [blame] | 112 | iter->second->state = State::TEAR_DOWN_IN_PROGRESS; |
| 113 | return true; |
| 114 | } |
| 115 | else |
| 116 | { |
| 117 | return false; |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 118 | } |
| 119 | } |
| 120 | |
Vernon Mauery | ae1fda4 | 2018-10-15 12:55:34 -0700 | [diff] [blame] | 121 | std::shared_ptr<Session> Manager::getSession(SessionID sessionID, |
| 122 | RetrieveOption option) |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 123 | { |
| 124 | switch (option) |
| 125 | { |
| 126 | case RetrieveOption::BMC_SESSION_ID: |
| 127 | { |
| 128 | auto iter = sessionsMap.find(sessionID); |
| 129 | if (iter != sessionsMap.end()) |
| 130 | { |
| 131 | return iter->second; |
| 132 | } |
Tom Joseph | 6516cef | 2017-07-31 18:48:34 +0530 | [diff] [blame] | 133 | break; |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 134 | } |
| 135 | case RetrieveOption::RC_SESSION_ID: |
| 136 | { |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 137 | auto iter = std::find_if( |
| 138 | sessionsMap.begin(), sessionsMap.end(), |
| 139 | [sessionID]( |
| 140 | const std::pair<const uint32_t, std::shared_ptr<Session>>& |
| 141 | in) -> bool { |
| 142 | return sessionID == in.second->getRCSessionID(); |
| 143 | }); |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 144 | |
| 145 | if (iter != sessionsMap.end()) |
| 146 | { |
| 147 | return iter->second; |
| 148 | } |
Tom Joseph | 6516cef | 2017-07-31 18:48:34 +0530 | [diff] [blame] | 149 | break; |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 150 | } |
| 151 | default: |
| 152 | throw std::runtime_error("Invalid retrieval option"); |
| 153 | } |
| 154 | |
| 155 | throw std::runtime_error("Session ID not found"); |
| 156 | } |
| 157 | |
| 158 | void Manager::cleanStaleEntries() |
| 159 | { |
Vernon Mauery | 9e801a2 | 2018-10-12 13:20:49 -0700 | [diff] [blame] | 160 | for (auto iter = sessionsMap.begin(); iter != sessionsMap.end();) |
Tom Joseph | 3e61aa0 | 2016-08-08 08:42:39 -0500 | [diff] [blame] | 161 | { |
| 162 | auto session = iter->second; |
| 163 | if ((session->getBMCSessionID() != SESSION_ZERO) && |
| 164 | !(session->isSessionActive())) |
| 165 | { |
| 166 | iter = sessionsMap.erase(iter); |
| 167 | } |
| 168 | else |
| 169 | { |
| 170 | ++iter; |
| 171 | } |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | } // namespace session |