blob: 5819fb4f522429acf3d3edc03533f0a8ed12e492 [file] [log] [blame]
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +05301/**
2 * Copyright © 2017 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
17#include <iostream>
Vishwanatha Subbanna7e146552017-05-29 17:03:33 +053018#include <phosphor-logging/log.hpp>
Vishwanatha Subbanna4d5ef3f2017-05-31 18:54:22 +053019#include <phosphor-logging/elog.hpp>
20#include <phosphor-logging/elog-errors.hpp>
21#include <xyz/openbmc_project/Common/error.hpp>
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053022#include "argument.hpp"
Vishwanatha Subbannad7a3f132017-05-29 19:39:08 +053023#include "watchdog.hpp"
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053024
25static void exitWithError(const char* err, char** argv)
26{
27 phosphor::watchdog::ArgumentParser::usage(argv);
28 std::cerr << "ERROR: " << err << "\n";
29 exit(EXIT_FAILURE);
30}
31
32int main(int argc, char** argv)
33{
Vishwanatha Subbanna7e146552017-05-29 17:03:33 +053034 using namespace phosphor::logging;
Vishwanatha Subbanna4d5ef3f2017-05-31 18:54:22 +053035 using InternalFailure = sdbusplus::xyz::openbmc_project::Common::
36 Error::InternalFailure;
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053037 // Read arguments.
38 auto options = phosphor::watchdog::ArgumentParser(argc, argv);
39
Patrick Venture09eebe32017-08-11 15:23:17 -070040 // Parse out continue argument.
41 auto continueParam = (options)["continue"];
42 // Default it to exit on watchdog timeout
43 auto continueAfterTimeout = false;
William A. Kennington III5d307182018-01-23 22:00:55 -080044 if (!continueParam.empty())
Patrick Venture09eebe32017-08-11 15:23:17 -070045 {
46 continueAfterTimeout = true;
47 }
48
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053049 // Parse out path argument.
William A. Kennington III5d307182018-01-23 22:00:55 -080050 auto pathParam = (options)["path"];
51 if (pathParam.empty())
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053052 {
53 exitWithError("Path not specified.", argv);
54 }
William A. Kennington III5d307182018-01-23 22:00:55 -080055 if (pathParam.size() > 1)
56 {
57 exitWithError("Multiple paths specified.", argv);
58 }
59 auto path = pathParam.back();
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053060
61 // Parse out service name argument
William A. Kennington III5d307182018-01-23 22:00:55 -080062 auto serviceParam = (options)["service"];
63 if (serviceParam.empty())
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053064 {
65 exitWithError("Service not specified.", argv);
66 }
William A. Kennington III5d307182018-01-23 22:00:55 -080067 if (serviceParam.size() > 1)
68 {
69 exitWithError("Multiple services specified.", argv);
70 }
71 auto service = serviceParam.back();
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053072
73 // Parse out target argument. It is fine if the caller does not
74 // pass this if they are not interested in calling into any target
75 // on meeting a condition.
William A. Kennington III5d307182018-01-23 22:00:55 -080076 auto targetParam = (options)["target"];
77 if (targetParam.size() > 1)
78 {
79 exitWithError("Multiple targets specified.", argv);
80 }
81 auto target = targetParam.back();
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053082
Vishwanatha Subbanna7e146552017-05-29 17:03:33 +053083 sd_event* event = nullptr;
84 auto r = sd_event_default(&event);
85 if (r < 0)
86 {
87 log<level::ERR>("Error creating a default sd_event handler");
88 return r;
89 }
90 phosphor::watchdog::EventPtr eventP{event};
91 event = nullptr;
92
Vishwanatha Subbannad7a3f132017-05-29 19:39:08 +053093 // Get a handle to system dbus.
94 auto bus = sdbusplus::bus::new_default();
Vishwanatha Subbanna7e146552017-05-29 17:03:33 +053095
Vishwanatha Subbannad7a3f132017-05-29 19:39:08 +053096 // Add systemd object manager.
97 sdbusplus::server::manager::manager(bus, path.c_str());
98
99 // Attach the bus to sd_event to service user requests
100 bus.attach_event(eventP.get(), SD_EVENT_PRIORITY_NORMAL);
101
Vishwanatha Subbanna4d5ef3f2017-05-31 18:54:22 +0530102 try
Vishwanatha Subbanna7e146552017-05-29 17:03:33 +0530103 {
Vishwanatha Subbanna4d5ef3f2017-05-31 18:54:22 +0530104 // Create a watchdog object
105 phosphor::watchdog::Watchdog watchdog(bus, path.c_str(),
106 eventP, std::move(target));
107 // Claim the bus
108 bus.request_name(service.c_str());
109
Patrick Venture09eebe32017-08-11 15:23:17 -0700110 // Loop forever processing events
111 while (true)
Vishwanatha Subbanna7e146552017-05-29 17:03:33 +0530112 {
Vishwanatha Subbanna4d5ef3f2017-05-31 18:54:22 +0530113 // -1 denotes wait for ever
114 r = sd_event_run(eventP.get(), (uint64_t)-1);
115 if (r < 0)
116 {
117 log<level::ERR>("Error waiting for events");
118 elog<InternalFailure>();
119 }
Patrick Venture09eebe32017-08-11 15:23:17 -0700120
121 // The timer expiring is an event that breaks from the above.
122 if (watchdog.timerExpired())
123 {
124 // Either disable the timer or exit.
125 if (continueAfterTimeout)
126 {
127 // The watchdog will be disabled but left running to be
128 // re-enabled.
129 watchdog.enabled(false);
130 }
131 else
132 {
133 // The watchdog daemon will now exit.
134 break;
135 }
136 }
Vishwanatha Subbanna7e146552017-05-29 17:03:33 +0530137 }
138 }
Vishwanatha Subbanna4d5ef3f2017-05-31 18:54:22 +0530139 catch(InternalFailure& e)
140 {
141 phosphor::logging::commit<InternalFailure>();
142
143 // Need a coredump in the error cases.
144 std::terminate();
145 }
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +0530146 return 0;
147}