Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 1 | /* |
Jason M. Bills | 70304cb | 2019-03-27 12:03:59 -0700 | [diff] [blame] | 2 | // Copyright (c) 2018-2019 Intel Corporation |
Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 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 | #pragma once |
| 17 | |
Lewanczyk, Dawid | 88d16c9 | 2018-02-02 14:51:09 +0100 | [diff] [blame] | 18 | #include "../lib/account_service.hpp" |
Carol Wang | d82a3ac | 2019-11-21 13:56:38 +0800 | [diff] [blame] | 19 | #include "../lib/bios.hpp" |
Marri Devender Rao | 5968cae | 2019-01-21 10:27:12 -0600 | [diff] [blame] | 20 | #include "../lib/certificate_service.hpp" |
Jennifer Lee | 729dae7 | 2018-04-24 15:59:34 -0700 | [diff] [blame] | 21 | #include "../lib/chassis.hpp" |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 22 | #include "../lib/cpudimm.hpp" |
Jennifer Lee | 729dae7 | 2018-04-24 15:59:34 -0700 | [diff] [blame] | 23 | #include "../lib/ethernet.hpp" |
AppaRao Puli | e5aaf04 | 2020-03-20 01:05:52 +0530 | [diff] [blame] | 24 | #include "../lib/event_service.hpp" |
Ed Tanous | 1da66f7 | 2018-07-27 16:13:37 -0700 | [diff] [blame] | 25 | #include "../lib/log_services.hpp" |
Borawski.Lukasz | 9c310685 | 2018-02-09 15:24:22 +0100 | [diff] [blame] | 26 | #include "../lib/managers.hpp" |
Jason M. Bills | 70304cb | 2019-03-27 12:03:59 -0700 | [diff] [blame] | 27 | #include "../lib/message_registries.hpp" |
Borawski.Lukasz | 7014156 | 2018-01-24 12:45:29 +0100 | [diff] [blame] | 28 | #include "../lib/network_protocol.hpp" |
Jason M. Bills | f5c9f8b | 2018-12-18 16:51:18 -0800 | [diff] [blame] | 29 | #include "../lib/pcie.hpp" |
Ed Tanous | 2474adf | 2018-09-05 16:31:16 -0700 | [diff] [blame] | 30 | #include "../lib/power.hpp" |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 31 | #include "../lib/redfish_sessions.hpp" |
Lewanczyk, Dawid | 4e49bd4 | 2018-01-25 11:30:19 +0100 | [diff] [blame] | 32 | #include "../lib/roles.hpp" |
Anthony Wilson | 95a3eca | 2019-06-11 10:44:47 -0500 | [diff] [blame] | 33 | #include "../lib/sensors.hpp" |
Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 34 | #include "../lib/service_root.hpp" |
Nikhil Potade | a25aecc | 2019-08-23 16:35:26 -0700 | [diff] [blame] | 35 | #include "../lib/storage.hpp" |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 36 | #include "../lib/systems.hpp" |
James Feist | 4622957 | 2020-02-19 15:11:58 -0800 | [diff] [blame] | 37 | #include "../lib/task.hpp" |
Lewanczyk, Dawid | 08777fb | 2018-03-22 23:33:49 +0100 | [diff] [blame] | 38 | #include "../lib/thermal.hpp" |
Jennifer Lee | 729dae7 | 2018-04-24 15:59:34 -0700 | [diff] [blame] | 39 | #include "../lib/update_service.hpp" |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 40 | #ifdef BMCWEB_ENABLE_VM_NBDPROXY |
| 41 | #include "../lib/virtual_media.hpp" |
| 42 | #endif // BMCWEB_ENABLE_VM_NBDPROXY |
Sunitha Harish | 462023a | 2020-02-19 08:34:59 -0600 | [diff] [blame] | 43 | #include "../lib/hypervisor_ethernet.hpp" |
Borawski.Lukasz | c1a46bd | 2018-02-08 13:31:59 +0100 | [diff] [blame] | 44 | #include "webserver_common.hpp" |
Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 45 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 46 | namespace redfish |
| 47 | { |
Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 48 | /* |
| 49 | * @brief Top level class installing and providing Redfish services |
| 50 | */ |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 51 | class RedfishService |
| 52 | { |
| 53 | public: |
| 54 | /* |
| 55 | * @brief Redfish service constructor |
| 56 | * |
| 57 | * Loads Redfish configuration and installs schema resources |
| 58 | * |
| 59 | * @param[in] app Crow app on which Redfish will initialize |
| 60 | */ |
| 61 | RedfishService(CrowApp& app) |
| 62 | { |
| 63 | nodes.emplace_back(std::make_unique<AccountService>(app)); |
Ed Tanous | b9b2e0b | 2018-09-13 13:47:50 -0700 | [diff] [blame] | 64 | nodes.emplace_back(std::make_unique<AccountsCollection>(app)); |
| 65 | nodes.emplace_back(std::make_unique<ManagerAccount>(app)); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 66 | nodes.emplace_back(std::make_unique<SessionCollection>(app)); |
| 67 | nodes.emplace_back(std::make_unique<Roles>(app)); |
| 68 | nodes.emplace_back(std::make_unique<RoleCollection>(app)); |
| 69 | nodes.emplace_back(std::make_unique<ServiceRoot>(app)); |
| 70 | nodes.emplace_back(std::make_unique<NetworkProtocol>(app)); |
| 71 | nodes.emplace_back(std::make_unique<SessionService>(app)); |
| 72 | nodes.emplace_back(std::make_unique<EthernetCollection>(app)); |
| 73 | nodes.emplace_back(std::make_unique<EthernetInterface>(app)); |
| 74 | nodes.emplace_back(std::make_unique<Thermal>(app)); |
| 75 | nodes.emplace_back(std::make_unique<ManagerCollection>(app)); |
| 76 | nodes.emplace_back(std::make_unique<Manager>(app)); |
Jennifer Lee | ed5befb | 2018-08-10 11:29:45 -0700 | [diff] [blame] | 77 | nodes.emplace_back(std::make_unique<ManagerActionsReset>(app)); |
Ed Tanous | 2474adf | 2018-09-05 16:31:16 -0700 | [diff] [blame] | 78 | nodes.emplace_back(std::make_unique<Power>(app)); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 79 | nodes.emplace_back(std::make_unique<ChassisCollection>(app)); |
| 80 | nodes.emplace_back(std::make_unique<Chassis>(app)); |
| 81 | nodes.emplace_back(std::make_unique<UpdateService>(app)); |
Nikhil Potade | a25aecc | 2019-08-23 16:35:26 -0700 | [diff] [blame] | 82 | nodes.emplace_back(std::make_unique<StorageCollection>(app)); |
| 83 | nodes.emplace_back(std::make_unique<Storage>(app)); |
| 84 | nodes.emplace_back(std::make_unique<Drive>(app)); |
Andrew Geissler | 0554c98 | 2019-04-23 14:40:12 -0500 | [diff] [blame] | 85 | #ifdef BMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE |
| 86 | nodes.emplace_back( |
| 87 | std::make_unique<UpdateServiceActionsSimpleUpdate>(app)); |
| 88 | #endif |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 89 | nodes.emplace_back(std::make_unique<SoftwareInventoryCollection>(app)); |
| 90 | nodes.emplace_back(std::make_unique<SoftwareInventory>(app)); |
| 91 | nodes.emplace_back( |
| 92 | std::make_unique<VlanNetworkInterfaceCollection>(app)); |
Ed Tanous | c70f153 | 2018-11-02 15:56:47 -0700 | [diff] [blame] | 93 | nodes.emplace_back(std::make_unique<VlanNetworkInterface>(app)); |
Jason M. Bills | c4bf637 | 2018-11-05 13:48:27 -0800 | [diff] [blame] | 94 | |
| 95 | nodes.emplace_back(std::make_unique<SystemLogServiceCollection>(app)); |
| 96 | nodes.emplace_back(std::make_unique<EventLogService>(app)); |
ZhikuiRen | a3316fc | 2020-01-29 14:58:08 -0800 | [diff] [blame] | 97 | |
| 98 | nodes.emplace_back(std::make_unique<PostCodesLogService>(app)); |
| 99 | nodes.emplace_back(std::make_unique<PostCodesClear>(app)); |
| 100 | nodes.emplace_back(std::make_unique<PostCodesEntry>(app)); |
| 101 | nodes.emplace_back(std::make_unique<PostCodesEntryCollection>(app)); |
| 102 | |
Anthony Wilson | 08a4e4b | 2019-04-12 08:23:05 -0500 | [diff] [blame] | 103 | #ifndef BMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES |
Anthony Wilson | 2706260 | 2019-04-22 02:10:09 -0500 | [diff] [blame] | 104 | nodes.emplace_back( |
| 105 | std::make_unique<JournalEventLogEntryCollection>(app)); |
Jason M. Bills | 897967d | 2019-07-29 17:05:30 -0700 | [diff] [blame] | 106 | nodes.emplace_back(std::make_unique<JournalEventLogEntry>(app)); |
Tim Lee | 1f56a3a | 2019-10-09 10:17:57 +0800 | [diff] [blame] | 107 | nodes.emplace_back(std::make_unique<JournalEventLogClear>(app)); |
Anthony Wilson | 08a4e4b | 2019-04-12 08:23:05 -0500 | [diff] [blame] | 108 | #endif |
Jason M. Bills | c4bf637 | 2018-11-05 13:48:27 -0800 | [diff] [blame] | 109 | |
| 110 | nodes.emplace_back(std::make_unique<BMCLogServiceCollection>(app)); |
| 111 | #ifdef BMCWEB_ENABLE_REDFISH_BMC_JOURNAL |
| 112 | nodes.emplace_back(std::make_unique<BMCJournalLogService>(app)); |
| 113 | nodes.emplace_back(std::make_unique<BMCJournalLogEntryCollection>(app)); |
| 114 | nodes.emplace_back(std::make_unique<BMCJournalLogEntry>(app)); |
| 115 | #endif |
Ed Tanous | 1da66f7 | 2018-07-27 16:13:37 -0700 | [diff] [blame] | 116 | |
| 117 | #ifdef BMCWEB_ENABLE_REDFISH_CPU_LOG |
Jason M. Bills | 424c417 | 2019-03-21 13:50:33 -0700 | [diff] [blame] | 118 | nodes.emplace_back(std::make_unique<CrashdumpService>(app)); |
| 119 | nodes.emplace_back(std::make_unique<CrashdumpEntryCollection>(app)); |
| 120 | nodes.emplace_back(std::make_unique<CrashdumpEntry>(app)); |
Jason M. Bills | e855dd2 | 2019-10-08 11:37:48 -0700 | [diff] [blame] | 121 | nodes.emplace_back(std::make_unique<CrashdumpFile>(app)); |
Jason M. Bills | 5b61b5e | 2019-10-16 10:59:02 -0700 | [diff] [blame] | 122 | nodes.emplace_back(std::make_unique<CrashdumpClear>(app)); |
Jason M. Bills | 424c417 | 2019-03-21 13:50:33 -0700 | [diff] [blame] | 123 | nodes.emplace_back(std::make_unique<OnDemandCrashdump>(app)); |
Ed Tanous | 1da66f7 | 2018-07-27 16:13:37 -0700 | [diff] [blame] | 124 | #ifdef BMCWEB_ENABLE_REDFISH_RAW_PECI |
Jason M. Bills | e1f2634 | 2018-07-18 12:12:00 -0700 | [diff] [blame] | 125 | nodes.emplace_back(std::make_unique<SendRawPECI>(app)); |
Ed Tanous | 1da66f7 | 2018-07-27 16:13:37 -0700 | [diff] [blame] | 126 | #endif // BMCWEB_ENABLE_REDFISH_RAW_PECI |
| 127 | #endif // BMCWEB_ENABLE_REDFISH_CPU_LOG |
| 128 | |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 129 | nodes.emplace_back(std::make_unique<ProcessorCollection>(app)); |
| 130 | nodes.emplace_back(std::make_unique<Processor>(app)); |
| 131 | nodes.emplace_back(std::make_unique<MemoryCollection>(app)); |
| 132 | nodes.emplace_back(std::make_unique<Memory>(app)); |
| 133 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 134 | nodes.emplace_back(std::make_unique<SystemsCollection>(app)); |
| 135 | nodes.emplace_back(std::make_unique<Systems>(app)); |
Ed Tanous | cc340dd | 2018-08-29 13:43:38 -0700 | [diff] [blame] | 136 | nodes.emplace_back(std::make_unique<SystemActionsReset>(app)); |
Carol Wang | d82a3ac | 2019-11-21 13:56:38 +0800 | [diff] [blame] | 137 | nodes.emplace_back(std::make_unique<BiosService>(app)); |
| 138 | nodes.emplace_back(std::make_unique<BiosReset>(app)); |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 139 | #ifdef BMCWEB_ENABLE_VM_NBDPROXY |
| 140 | nodes.emplace_back(std::make_unique<VirtualMedia>(app)); |
| 141 | nodes.emplace_back(std::make_unique<VirtualMediaCollection>(app)); |
Przemyslaw Czarnowski | e13c276 | 2019-09-02 17:32:43 +0200 | [diff] [blame] | 142 | nodes.emplace_back( |
| 143 | std::make_unique<VirtualMediaActionInsertMedia>(app)); |
| 144 | nodes.emplace_back(std::make_unique<VirtualMediaActionEjectMedia>(app)); |
Przemyslaw Czarnowski | 107077d | 2019-07-11 10:16:43 +0200 | [diff] [blame] | 145 | #endif // BMCWEB_ENABLE_VM_NBDPROXY |
Andrew Geissler | cb92c03 | 2018-08-17 07:56:14 -0700 | [diff] [blame] | 146 | #ifdef BMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES |
| 147 | nodes.emplace_back(std::make_unique<DBusLogServiceActionsClear>(app)); |
Anthony Wilson | 08a4e4b | 2019-04-12 08:23:05 -0500 | [diff] [blame] | 148 | nodes.emplace_back(std::make_unique<DBusEventLogEntryCollection>(app)); |
| 149 | nodes.emplace_back(std::make_unique<DBusEventLogEntry>(app)); |
Andrew Geissler | cb92c03 | 2018-08-17 07:56:14 -0700 | [diff] [blame] | 150 | #endif |
Tanous | f00032d | 2018-11-05 01:18:10 -0300 | [diff] [blame] | 151 | |
Jason M. Bills | 70304cb | 2019-03-27 12:03:59 -0700 | [diff] [blame] | 152 | nodes.emplace_back( |
| 153 | std::make_unique<MessageRegistryFileCollection>(app)); |
James Feist | e51c710 | 2020-03-17 10:38:18 -0700 | [diff] [blame] | 154 | nodes.emplace_back(std::make_unique<MessageRegistryFile>(app)); |
| 155 | nodes.emplace_back(std::make_unique<MessageRegistry>(app)); |
Marri Devender Rao | 5968cae | 2019-01-21 10:27:12 -0600 | [diff] [blame] | 156 | nodes.emplace_back(std::make_unique<CertificateService>(app)); |
| 157 | nodes.emplace_back( |
| 158 | std::make_unique<CertificateActionsReplaceCertificate>(app)); |
| 159 | nodes.emplace_back(std::make_unique<CertificateLocations>(app)); |
| 160 | nodes.emplace_back(std::make_unique<HTTPSCertificateCollection>(app)); |
| 161 | nodes.emplace_back(std::make_unique<HTTPSCertificate>(app)); |
Marri Devender Rao | 37cce91 | 2019-02-20 01:05:22 -0600 | [diff] [blame] | 162 | nodes.emplace_back(std::make_unique<LDAPCertificateCollection>(app)); |
| 163 | nodes.emplace_back(std::make_unique<LDAPCertificate>(app)); |
Marri Devender Rao | 3021581 | 2019-03-18 08:59:21 -0500 | [diff] [blame] | 164 | nodes.emplace_back(std::make_unique<CertificateActionGenerateCSR>(app)); |
Marri Devender Rao | cfcd5f6 | 2019-05-17 08:34:37 -0500 | [diff] [blame] | 165 | nodes.emplace_back( |
| 166 | std::make_unique<TrustStoreCertificateCollection>(app)); |
| 167 | nodes.emplace_back(std::make_unique<TrustStoreCertificate>(app)); |
Jason M. Bills | dede6a9 | 2019-10-14 15:41:30 -0700 | [diff] [blame] | 168 | nodes.emplace_back(std::make_unique<SystemPCIeFunctionCollection>(app)); |
Jason M. Bills | f5c9f8b | 2018-12-18 16:51:18 -0800 | [diff] [blame] | 169 | nodes.emplace_back(std::make_unique<SystemPCIeFunction>(app)); |
Jason M. Bills | adbe192 | 2019-10-14 15:44:35 -0700 | [diff] [blame] | 170 | nodes.emplace_back(std::make_unique<SystemPCIeDeviceCollection>(app)); |
Jason M. Bills | f5c9f8b | 2018-12-18 16:51:18 -0800 | [diff] [blame] | 171 | nodes.emplace_back(std::make_unique<SystemPCIeDevice>(app)); |
Anthony Wilson | 95a3eca | 2019-06-11 10:44:47 -0500 | [diff] [blame] | 172 | |
| 173 | nodes.emplace_back(std::make_unique<SensorCollection>(app)); |
| 174 | nodes.emplace_back(std::make_unique<Sensor>(app)); |
Sunitha Harish | 462023a | 2020-02-19 08:34:59 -0600 | [diff] [blame] | 175 | |
James Feist | 4622957 | 2020-02-19 15:11:58 -0800 | [diff] [blame] | 176 | nodes.emplace_back(std::make_unique<TaskMonitor>(app)); |
| 177 | nodes.emplace_back(std::make_unique<TaskService>(app)); |
| 178 | nodes.emplace_back(std::make_unique<TaskCollection>(app)); |
| 179 | nodes.emplace_back(std::make_unique<Task>(app)); |
AppaRao Puli | e5aaf04 | 2020-03-20 01:05:52 +0530 | [diff] [blame] | 180 | nodes.emplace_back(std::make_unique<EventService>(app)); |
| 181 | nodes.emplace_back(std::make_unique<EventDestinationCollection>(app)); |
| 182 | nodes.emplace_back(std::make_unique<EventDestination>(app)); |
Sunitha Harish | 462023a | 2020-02-19 08:34:59 -0600 | [diff] [blame] | 183 | |
| 184 | nodes.emplace_back( |
| 185 | std::make_unique<HypervisorInterfaceCollection>(app)); |
Sunitha Harish | 1d44c80 | 2020-02-24 02:40:24 -0600 | [diff] [blame] | 186 | nodes.emplace_back(std::make_unique<HypervisorInterface>(app)); |
Sunitha Harish | 462023a | 2020-02-19 08:34:59 -0600 | [diff] [blame] | 187 | nodes.emplace_back(std::make_unique<HypervisorSystem>(app)); |
| 188 | |
Tanous | f00032d | 2018-11-05 01:18:10 -0300 | [diff] [blame] | 189 | for (const auto& node : nodes) |
| 190 | { |
| 191 | node->initPrivileges(); |
| 192 | } |
Borawski.Lukasz | c1a46bd | 2018-02-08 13:31:59 +0100 | [diff] [blame] | 193 | } |
Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 194 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 195 | private: |
| 196 | std::vector<std::unique_ptr<Node>> nodes; |
Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 197 | }; |
| 198 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 199 | } // namespace redfish |