blob: 98a560bb9816bb66f0eae1ccbf26e60164544897 [file] [log] [blame]
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -05001/**
2 * Copyright © 2018 IBM Corporation
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
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050017#include "config.h"
18
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050019#include "argument.hpp"
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050020#include "certs_manager.hpp"
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050021
22#include <iostream>
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050023#include <locale>
Marri Devender Raof4682712019-03-19 05:00:28 -050024#include <sdeventplus/event.hpp>
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050025#include <string>
26
27static void ExitWithError(const char* err, char** argv)
28{
29 phosphor::certs::util::ArgumentParser::usage(argv);
30 std::cerr << std::endl;
31 std::cerr << "ERROR: " << err << std::endl;
32 exit(EXIT_FAILURE);
33}
34
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050035inline void capitalize(std::string& s)
36{
37 s[0] = std::toupper(s[0]);
38}
39
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050040int main(int argc, char** argv)
41{
42 // Read arguments.
43 auto options = phosphor::certs::util::ArgumentParser(argc, argv);
44
45 // Parse arguments
46 auto type = std::move((options)["type"]);
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050047 if ((type == phosphor::certs::util::ArgumentParser::empty_string) ||
48 !((type == phosphor::certs::SERVER) ||
Jayanth Othayothb50789c2018-10-09 07:13:54 -050049 (type == phosphor::certs::CLIENT) ||
50 (type == phosphor::certs::AUTHORITY)))
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050051 {
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050052 ExitWithError("type not specified or invalid.", argv);
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050053 }
54
55 auto endpoint = std::move((options)["endpoint"]);
56 if (endpoint == phosphor::certs::util::ArgumentParser::empty_string)
57 {
58 ExitWithError("endpoint not specified.", argv);
59 }
60
61 auto path = std::move((options)["path"]);
62 if (path == phosphor::certs::util::ArgumentParser::empty_string)
63 {
64 ExitWithError("path not specified.", argv);
65 }
66
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050067 // unit is an optional parameter
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050068 auto unit = std::move((options)["unit"]);
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050069 auto bus = sdbusplus::bus::new_default();
Nan Zhou718eef32021-12-28 11:03:30 -080070 auto objPath = std::string(objectNamePrefix) + '/' + type + '/' + endpoint;
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050071
Marri Devender Rao6ceec402019-02-01 03:15:19 -060072 // Add sdbusplus ObjectManager
73 sdbusplus::server::manager::manager objManager(bus, objPath.c_str());
74
Marri Devender Raof4682712019-03-19 05:00:28 -050075 // Get default event loop
76 auto event = sdeventplus::Event::get_default();
77
78 // Attach the bus to sd_event to service user requests
79 bus.attach_event(event.get(), SD_EVENT_PRIORITY_NORMAL);
80
81 phosphor::certs::Manager manager(bus, event, objPath.c_str(), type,
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050082 std::move(unit), std::move(path));
83
84 // Adjusting Interface name as per std convention
85 capitalize(type);
86 capitalize(endpoint);
Nan Zhou718eef32021-12-28 11:03:30 -080087 auto busName = std::string(busNamePrefix) + '.' + type + '.' + endpoint;
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050088 bus.request_name(busName.c_str());
Marri Devender Raof4682712019-03-19 05:00:28 -050089 event.loop();
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050090 return 0;
91}