blob: 5b0f29f319decf08fcf0d892ea9f67ea15a68725 [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) ||
48 (type == phosphor::certs::CLIENT)))
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050049 {
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050050 ExitWithError("type not specified or invalid.", argv);
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050051 }
52
53 auto endpoint = std::move((options)["endpoint"]);
54 if (endpoint == phosphor::certs::util::ArgumentParser::empty_string)
55 {
56 ExitWithError("endpoint not specified.", argv);
57 }
58
59 auto path = std::move((options)["path"]);
60 if (path == phosphor::certs::util::ArgumentParser::empty_string)
61 {
62 ExitWithError("path not specified.", argv);
63 }
64
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050065 // unit is an optional parameter
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050066 auto unit = std::move((options)["unit"]);
67
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050068 auto bus = sdbusplus::bus::new_default();
69
70 auto objPath = std::string(OBJPATH) + '/' + type + '/' + endpoint;
71
72 phosphor::certs::Manager manager(bus, objPath.c_str(), type,
73 std::move(unit), std::move(path));
74
75 // Adjusting Interface name as per std convention
76 capitalize(type);
77 capitalize(endpoint);
78 auto busName = std::string(BUSNAME) + '.' + type + '.' + endpoint;
79 bus.request_name(busName.c_str());
80
81 while (true)
82 {
83 // process dbus calls / signals discarding unhandled
84 bus.process_discard();
85 bus.wait();
86 }
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050087 return 0;
88}