blob: 3f970255244eba6912dc36bb5aec0a68982b8b0e [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>
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050024#include <string>
25
26static void ExitWithError(const char* err, char** argv)
27{
28 phosphor::certs::util::ArgumentParser::usage(argv);
29 std::cerr << std::endl;
30 std::cerr << "ERROR: " << err << std::endl;
31 exit(EXIT_FAILURE);
32}
33
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050034inline void capitalize(std::string& s)
35{
36 s[0] = std::toupper(s[0]);
37}
38
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050039int main(int argc, char** argv)
40{
41 // Read arguments.
42 auto options = phosphor::certs::util::ArgumentParser(argc, argv);
43
44 // Parse arguments
45 auto type = std::move((options)["type"]);
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050046 if ((type == phosphor::certs::util::ArgumentParser::empty_string) ||
47 !((type == phosphor::certs::SERVER) ||
Jayanth Othayothb50789c2018-10-09 07:13:54 -050048 (type == phosphor::certs::CLIENT) ||
49 (type == phosphor::certs::AUTHORITY)))
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050050 {
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050051 ExitWithError("type not specified or invalid.", argv);
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050052 }
53
54 auto endpoint = std::move((options)["endpoint"]);
55 if (endpoint == phosphor::certs::util::ArgumentParser::empty_string)
56 {
57 ExitWithError("endpoint not specified.", argv);
58 }
59
60 auto path = std::move((options)["path"]);
61 if (path == phosphor::certs::util::ArgumentParser::empty_string)
62 {
63 ExitWithError("path not specified.", argv);
64 }
65
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050066 // unit is an optional parameter
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050067 auto unit = std::move((options)["unit"]);
68
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050069 auto bus = sdbusplus::bus::new_default();
70
71 auto objPath = std::string(OBJPATH) + '/' + type + '/' + endpoint;
72
73 phosphor::certs::Manager manager(bus, objPath.c_str(), type,
74 std::move(unit), std::move(path));
75
76 // Adjusting Interface name as per std convention
77 capitalize(type);
78 capitalize(endpoint);
79 auto busName = std::string(BUSNAME) + '.' + type + '.' + endpoint;
80 bus.request_name(busName.c_str());
81
82 while (true)
83 {
84 // process dbus calls / signals discarding unhandled
85 bus.process_discard();
86 bus.wait();
87 }
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050088 return 0;
89}