Tom Joseph | f0ca513 | 2016-08-09 08:16:12 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include <chrono> |
| 4 | #include <exception> |
| 5 | #include <list> |
| 6 | #include <memory> |
| 7 | #include <string> |
| 8 | #include <vector> |
| 9 | |
| 10 | #include "auth_algo.hpp" |
Tom Joseph | 491dbd0 | 2017-01-24 18:20:41 +0530 | [diff] [blame] | 11 | #include "crypt_algo.hpp" |
Tom Joseph | 638d066 | 2017-01-10 16:02:07 +0530 | [diff] [blame] | 12 | #include "integrity_algo.hpp" |
Tom Joseph | f0ca513 | 2016-08-09 08:16:12 -0500 | [diff] [blame] | 13 | #include "endian.hpp" |
| 14 | #include "socket_channel.hpp" |
| 15 | |
| 16 | namespace session |
| 17 | { |
| 18 | |
| 19 | using namespace std::chrono_literals; |
| 20 | using SessionID = uint32_t; |
| 21 | |
| 22 | enum class Privilege : uint8_t |
| 23 | { |
| 24 | HIGHEST_MATCHING, |
| 25 | CALLBACK, |
| 26 | USER, |
| 27 | OPERATOR, |
| 28 | ADMIN, |
| 29 | OEM, |
| 30 | }; |
| 31 | |
| 32 | enum class State |
| 33 | { |
| 34 | INACTIVE, // Session is not in use |
| 35 | SETUP_IN_PROGRESS, // Session Setup Sequence is progressing |
| 36 | ACTIVE, // Session is active |
| 37 | TEAR_DOWN_IN_PROGRESS,// When Closing Session |
| 38 | }; |
| 39 | |
| 40 | // Seconds of inactivity allowed during session setup stage |
| 41 | constexpr auto SESSION_SETUP_TIMEOUT = 5s; |
| 42 | // Seconds of inactivity allowed when session is active |
| 43 | constexpr auto SESSION_INACTIVITY_TIMEOUT = 60s; |
| 44 | |
Tom Joseph | 3563f8f | 2017-05-08 15:42:54 +0530 | [diff] [blame] | 45 | /** |
Tom Joseph | f0ca513 | 2016-08-09 08:16:12 -0500 | [diff] [blame] | 46 | * @struct SequenceNumbers Session Sequence Numbers |
| 47 | * |
| 48 | * IPMI v2.0 RMCP+ Session Sequence Numbers are used for rejecting packets that |
| 49 | * may have been duplicated by the network or intentionally replayed. There are |
| 50 | * two sets of Session SequenceNumbers for a given session.One set of inbound |
| 51 | * and outbound sequence numbers is used for authenticated (signed) packets, |
| 52 | * and the other set is used for unauthenticated packets. |
| 53 | * |
| 54 | * The individual Session Sequence Numbers is are initialized to zero whenever |
| 55 | * a session is created and incremented by one at the start of outbound |
| 56 | * processing for a given packet (i.e. the first transmitted packet has a ‘1’ |
| 57 | * as the sequence number, not 0). Session Sequence numbers are incremented for |
| 58 | * every packet that is transmitted by a given sender, regardless of whether |
| 59 | * the payload for the packet is a ‘retry’ or not. |
| 60 | */ |
| 61 | struct SequenceNumbers |
| 62 | { |
| 63 | auto get(bool inbound = true) const |
| 64 | { |
| 65 | return inbound ? in : out; |
| 66 | } |
| 67 | |
| 68 | void set(uint32_t seqNumber, bool inbound = true) |
| 69 | { |
| 70 | inbound ? (in = seqNumber) : (out = seqNumber); |
| 71 | } |
| 72 | |
| 73 | auto increment() |
| 74 | { |
| 75 | return ++out; |
| 76 | } |
| 77 | |
| 78 | private: |
Tom Joseph | 32db22e | 2017-01-26 15:17:30 +0530 | [diff] [blame] | 79 | uint32_t in = 0; |
| 80 | uint32_t out = 0; |
Tom Joseph | f0ca513 | 2016-08-09 08:16:12 -0500 | [diff] [blame] | 81 | }; |
Tom Joseph | 3563f8f | 2017-05-08 15:42:54 +0530 | [diff] [blame] | 82 | /** |
Tom Joseph | f0ca513 | 2016-08-09 08:16:12 -0500 | [diff] [blame] | 83 | * @class Session |
| 84 | * |
| 85 | * Encapsulates the data related to an IPMI Session |
| 86 | * |
| 87 | * Authenticated IPMI communication to the BMC is accomplished by establishing |
| 88 | * a session. Once established, a session is identified by a Session ID. The |
| 89 | * Session ID may be thought of as a handle that identifies a connection between |
| 90 | * a given remote user and the BMC. The specification supports having multiple |
| 91 | * active sessions established with the BMC. It is recommended that a BMC |
| 92 | * implementation support at least four simultaneous sessions |
| 93 | */ |
| 94 | class Session |
| 95 | { |
| 96 | public: |
| 97 | |
| 98 | Session() = default; |
| 99 | ~Session() = default; |
| 100 | Session(const Session&) = delete; |
| 101 | Session& operator=(const Session&) = delete; |
| 102 | Session(Session&&) = default; |
| 103 | Session& operator=(Session&&) = default; |
| 104 | |
Tom Joseph | 3563f8f | 2017-05-08 15:42:54 +0530 | [diff] [blame] | 105 | /** |
Tom Joseph | f0ca513 | 2016-08-09 08:16:12 -0500 | [diff] [blame] | 106 | * @brief Session Constructor |
| 107 | * |
| 108 | * This is issued by the Session Manager when a session is started for |
| 109 | * the Open SessionRequest command |
| 110 | * |
| 111 | * @param[in] inRemoteConsoleSessID - Remote Console Session ID |
| 112 | * @param[in] priv - Privilege Level requested in the Command |
| 113 | */ |
| 114 | Session(SessionID inRemoteConsoleSessID, Privilege priv): |
| 115 | curPrivLevel(priv), |
| 116 | bmcSessionID(std::rand()), |
| 117 | remoteConsoleSessionID(inRemoteConsoleSessID) {} |
| 118 | |
| 119 | auto getBMCSessionID() const |
| 120 | { |
| 121 | return bmcSessionID; |
| 122 | } |
| 123 | |
| 124 | auto getRCSessionID() const |
| 125 | { |
| 126 | return remoteConsoleSessionID; |
| 127 | } |
| 128 | |
| 129 | auto getAuthAlgo() const |
| 130 | { |
| 131 | if(authAlgoInterface) |
| 132 | { |
| 133 | return authAlgoInterface.get(); |
| 134 | } |
| 135 | else |
| 136 | { |
| 137 | throw std::runtime_error("Authentication Algorithm Empty"); |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | void setAuthAlgo(std::unique_ptr<cipher::rakp_auth::Interface>&& |
| 142 | inAuthAlgo) |
| 143 | { |
| 144 | authAlgoInterface = std::move(inAuthAlgo); |
| 145 | } |
| 146 | |
Tom Joseph | 3563f8f | 2017-05-08 15:42:54 +0530 | [diff] [blame] | 147 | /** |
Tom Joseph | 638d066 | 2017-01-10 16:02:07 +0530 | [diff] [blame] | 148 | * @brief Get Session's Integrity Algorithm |
| 149 | * |
| 150 | * @return pointer to the integrity algorithm |
| 151 | */ |
| 152 | auto getIntegrityAlgo() const |
| 153 | { |
| 154 | if(integrityAlgoInterface) |
| 155 | { |
| 156 | return integrityAlgoInterface.get(); |
| 157 | } |
| 158 | else |
| 159 | { |
| 160 | throw std::runtime_error("Integrity Algorithm Empty"); |
| 161 | } |
| 162 | } |
| 163 | |
Tom Joseph | 3563f8f | 2017-05-08 15:42:54 +0530 | [diff] [blame] | 164 | /** |
Tom Joseph | 638d066 | 2017-01-10 16:02:07 +0530 | [diff] [blame] | 165 | * @brief Set Session's Integrity Algorithm |
| 166 | * |
| 167 | * @param[in] integrityAlgo - unique pointer to integrity algorithm |
| 168 | * instance |
| 169 | */ |
| 170 | void setIntegrityAlgo( |
| 171 | std::unique_ptr<cipher::integrity::Interface>&& integrityAlgo) |
| 172 | { |
| 173 | integrityAlgoInterface = std::move(integrityAlgo); |
| 174 | } |
| 175 | |
Tom Joseph | d8c7861 | 2017-03-31 10:17:30 +0530 | [diff] [blame] | 176 | /** @brief Check if integrity algorithm is enabled for this session. |
| 177 | * |
| 178 | * @return true if integrity algorithm is enabled else false. |
| 179 | */ |
| 180 | auto isIntegrityAlgoEnabled() |
| 181 | { |
| 182 | return integrityAlgoInterface ? true : false; |
| 183 | } |
| 184 | |
Tom Joseph | 3563f8f | 2017-05-08 15:42:54 +0530 | [diff] [blame] | 185 | /** |
Tom Joseph | 491dbd0 | 2017-01-24 18:20:41 +0530 | [diff] [blame] | 186 | * @brief Get Session's Confidentiality Algorithm |
| 187 | * |
| 188 | * @return pointer to the confidentiality algorithm |
| 189 | */ |
| 190 | auto getCryptAlgo() const |
| 191 | { |
| 192 | if(cryptAlgoInterface) |
| 193 | { |
| 194 | return cryptAlgoInterface.get(); |
| 195 | } |
| 196 | else |
| 197 | { |
| 198 | throw std::runtime_error("Confidentiality Algorithm Empty"); |
| 199 | } |
| 200 | } |
| 201 | |
Tom Joseph | 3563f8f | 2017-05-08 15:42:54 +0530 | [diff] [blame] | 202 | /** |
Tom Joseph | 491dbd0 | 2017-01-24 18:20:41 +0530 | [diff] [blame] | 203 | * @brief Set Session's Confidentiality Algorithm |
| 204 | * |
| 205 | * @param[in] confAlgo - unique pointer to confidentiality algorithm |
| 206 | * instance |
| 207 | */ |
| 208 | void setCryptAlgo( |
| 209 | std::unique_ptr<cipher::crypt::Interface>&& cryptAlgo) |
| 210 | { |
| 211 | cryptAlgoInterface = std::move(cryptAlgo); |
| 212 | } |
| 213 | |
Tom Joseph | 895df94 | 2017-03-31 10:19:40 +0530 | [diff] [blame] | 214 | /** @brief Check if confidentiality algorithm is enabled for this |
| 215 | * session. |
| 216 | * |
| 217 | * @return true if confidentiality algorithm is enabled else false. |
| 218 | */ |
| 219 | auto isCryptAlgoEnabled() |
| 220 | { |
| 221 | return cryptAlgoInterface ? true : false; |
| 222 | } |
| 223 | |
Tom Joseph | f0ca513 | 2016-08-09 08:16:12 -0500 | [diff] [blame] | 224 | void updateLastTransactionTime() |
| 225 | { |
| 226 | lastTime = std::chrono::steady_clock::now(); |
| 227 | } |
| 228 | |
Tom Joseph | 3563f8f | 2017-05-08 15:42:54 +0530 | [diff] [blame] | 229 | /** |
Tom Joseph | f0ca513 | 2016-08-09 08:16:12 -0500 | [diff] [blame] | 230 | * @brief Session Active Status |
| 231 | * |
| 232 | * Session Active status is decided upon the Session State and the last |
| 233 | * transaction time is compared against the session inactivity timeout. |
| 234 | * |
| 235 | */ |
| 236 | bool isSessionActive(); |
| 237 | |
Tom Joseph | 3563f8f | 2017-05-08 15:42:54 +0530 | [diff] [blame] | 238 | /** |
Tom Joseph | f0ca513 | 2016-08-09 08:16:12 -0500 | [diff] [blame] | 239 | * @brief Session's Current Privilege Level |
| 240 | */ |
| 241 | Privilege curPrivLevel; |
| 242 | |
Tom Joseph | 3563f8f | 2017-05-08 15:42:54 +0530 | [diff] [blame] | 243 | /** |
Tom Joseph | f0ca513 | 2016-08-09 08:16:12 -0500 | [diff] [blame] | 244 | * @brief Session's Maximum Privilege Level |
| 245 | */ |
| 246 | Privilege maxPrivLevel = Privilege::CALLBACK; |
| 247 | |
| 248 | SequenceNumbers sequenceNums; // Session Sequence Numbers |
| 249 | State state = State::INACTIVE; // Session State |
Tom Joseph | 56527b9 | 2018-03-21 19:31:58 +0530 | [diff] [blame] | 250 | std::string userName {}; // User Name |
Tom Joseph | f0ca513 | 2016-08-09 08:16:12 -0500 | [diff] [blame] | 251 | |
Tom Joseph | cc27e12 | 2017-03-31 10:21:04 +0530 | [diff] [blame] | 252 | /** @brief Socket channel for communicating with the remote client.*/ |
| 253 | std::shared_ptr<udpsocket::Channel> channelPtr; |
| 254 | |
Tom Joseph | f0ca513 | 2016-08-09 08:16:12 -0500 | [diff] [blame] | 255 | private: |
| 256 | |
| 257 | SessionID bmcSessionID = 0; //BMC Session ID |
| 258 | SessionID remoteConsoleSessionID = 0; //Remote Console Session ID |
| 259 | |
| 260 | // Authentication Algorithm Interface for the Session |
| 261 | std::unique_ptr<cipher::rakp_auth::Interface> authAlgoInterface; |
| 262 | |
Tom Joseph | 638d066 | 2017-01-10 16:02:07 +0530 | [diff] [blame] | 263 | // Integrity Algorithm Interface for the Session |
| 264 | std::unique_ptr<cipher::integrity::Interface> integrityAlgoInterface = |
Tom Joseph | beca5ac | 2017-01-19 12:29:45 +0530 | [diff] [blame] | 265 | nullptr; |
Tom Joseph | 638d066 | 2017-01-10 16:02:07 +0530 | [diff] [blame] | 266 | |
Tom Joseph | 491dbd0 | 2017-01-24 18:20:41 +0530 | [diff] [blame] | 267 | // Confidentiality Algorithm Interface for the Session |
| 268 | std::unique_ptr<cipher::crypt::Interface> cryptAlgoInterface = |
| 269 | nullptr; |
| 270 | |
Tom Joseph | f0ca513 | 2016-08-09 08:16:12 -0500 | [diff] [blame] | 271 | // Last Transaction Time |
| 272 | decltype(std::chrono::steady_clock::now()) lastTime; |
| 273 | }; |
| 274 | |
| 275 | } // namespace session |