blob: 34cb0567fdcbaeea59c6a03d5a61dc03f6ac7a76 [file] [log] [blame]
Vishwanatha Subbanna835571e2016-11-30 11:29:30 +05301/**
2 * Copyright © 2016 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
Vishwanatha Subbanna835571e2016-11-30 11:29:30 +053017#include "argument.hpp"
Vishwanatha Subbanna75b55102016-11-30 14:20:53 +053018#include "physical.hpp"
Andrew Jeffery42e02d32018-05-24 13:34:05 +093019#include "sysfs.hpp"
Andrew Jefferyc41bf5b2018-05-25 16:39:22 +093020
Alexander Soldatov97ddb722019-04-16 09:10:00 +030021#include <boost/algorithm/string.hpp>
George Liu61b90632020-06-22 10:55:13 +080022
23#include <algorithm>
Andrew Jefferyc41bf5b2018-05-25 16:39:22 +093024#include <iostream>
25#include <string>
Vishwanatha Subbanna835571e2016-11-30 11:29:30 +053026
Andrew Jefferybd0b9e72023-02-06 10:38:45 +103027static void exitWithError(const char* err, char** argv)
Vishwanatha Subbanna835571e2016-11-30 11:29:30 +053028{
29 phosphor::led::ArgumentParser::usage(argv);
30 std::cerr << std::endl;
31 std::cerr << "ERROR: " << err << std::endl;
32 exit(-1);
33}
34
Alexander Soldatov97ddb722019-04-16 09:10:00 +030035struct LedDescr
36{
37 std::string devicename;
38 std::string color;
39 std::string function;
40};
41
42/** @brief parse LED name in sysfs
43 * Parse sysfs LED name in format "devicename:colour:function"
44 * or "devicename:colour" or "devicename" and sets corresponding
45 * fields in LedDescr struct.
46 *
47 * @param[in] name - LED name in sysfs
48 * @param[out] ledDescr - LED description
49 */
50void getLedDescr(const std::string& name, LedDescr& ledDescr)
51{
52 std::vector<std::string> words;
53 boost::split(words, name, boost::is_any_of(":"));
54 try
55 {
56 ledDescr.devicename = words.at(0);
57 ledDescr.color = words.at(1);
58 ledDescr.function = words.at(2);
59 }
60 catch (const std::out_of_range&)
61 {
62 return;
63 }
64}
65
66/** @brief generates LED DBus name from LED description
67 *
68 * @param[in] name - LED description
69 * @return - DBus LED name
70 */
71std::string getDbusName(const LedDescr& ledDescr)
72{
73 std::vector<std::string> words;
74 words.emplace_back(ledDescr.devicename);
75 if (!ledDescr.function.empty())
Andrew Jeffery20aef9a2023-02-06 10:41:07 +103076 {
Alexander Soldatov97ddb722019-04-16 09:10:00 +030077 words.emplace_back(ledDescr.function);
Andrew Jeffery20aef9a2023-02-06 10:41:07 +103078 }
Alexander Soldatov97ddb722019-04-16 09:10:00 +030079 if (!ledDescr.color.empty())
Andrew Jeffery20aef9a2023-02-06 10:41:07 +103080 {
Alexander Soldatov97ddb722019-04-16 09:10:00 +030081 words.emplace_back(ledDescr.color);
Andrew Jeffery20aef9a2023-02-06 10:41:07 +103082 }
Alexander Soldatov97ddb722019-04-16 09:10:00 +030083 return boost::join(words, "_");
84}
85
Vishwanatha Subbanna835571e2016-11-30 11:29:30 +053086int main(int argc, char** argv)
87{
George Liu45eba6f2021-05-18 14:32:20 +080088 namespace fs = std::filesystem;
George Liu429750a2021-05-19 09:27:25 +080089 static constexpr auto BUSNAME = "xyz.openbmc_project.LED.Controller";
90 static constexpr auto OBJPATH = "/xyz/openbmc_project/led/physical";
91 static constexpr auto DEVPATH = "/sys/class/leds/";
Andrew Jeffery42e02d32018-05-24 13:34:05 +093092
Vishwanatha Subbanna835571e2016-11-30 11:29:30 +053093 // Read arguments.
94 auto options = phosphor::led::ArgumentParser(argc, argv);
95
Vishwanatha Subbanna75b55102016-11-30 14:20:53 +053096 // Parse out Path argument.
Vishwanatha Subbanna835571e2016-11-30 11:29:30 +053097 auto path = std::move((options)["path"]);
Andrew Jefferyf9e6cd32023-02-03 15:49:44 +103098 if (path.empty())
Vishwanatha Subbanna835571e2016-11-30 11:29:30 +053099 {
Andrew Jefferybd0b9e72023-02-06 10:38:45 +1030100 exitWithError("Path not specified.", argv);
Vishwanatha Subbanna835571e2016-11-30 11:29:30 +0530101 }
102
Vishwanatha Subbannaf9de54b2017-05-25 21:06:33 +0530103 // If the LED has a hyphen in the name like: "one-two", then it gets passed
104 // as /one/two/ as opposed to /one-two to the service file. There is a
105 // change needed in systemd to solve this issue and hence putting in this
106 // work-around.
Vishwanatha Subbanna75b55102016-11-30 14:20:53 +0530107
Vishwanatha Subbannaf9de54b2017-05-25 21:06:33 +0530108 // Since this application always gets invoked as part of a udev rule,
109 // it is always guaranteed to get /sys/class/leds/one/two
Alexander Soldatov97ddb722019-04-16 09:10:00 +0300110 // and we can go beyond leds/ to get the actual LED name.
Vishwanatha Subbannaf9de54b2017-05-25 21:06:33 +0530111 // Refer: systemd/systemd#5072
112
113 // On an error, this throws an exception and terminates.
114 auto name = path.substr(strlen(DEVPATH));
115
116 // LED names may have a hyphen and that would be an issue for
117 // dbus paths and hence need to convert them to underscores.
118 std::replace(name.begin(), name.end(), '/', '-');
Andrew Jefferycd3b05e2018-05-24 13:05:30 +0930119 path = DEVPATH + name;
Vishwanatha Subbanna75b55102016-11-30 14:20:53 +0530120
Vishwanatha Subbanna413fd342017-03-30 17:25:18 +0530121 // Convert to lowercase just in case some are not and that
122 // we follow lowercase all over
123 std::transform(name.begin(), name.end(), name.begin(), ::tolower);
124
125 // LED names may have a hyphen and that would be an issue for
126 // dbus paths and hence need to convert them to underscores.
127 std::replace(name.begin(), name.end(), '-', '_');
128
Alexander Soldatov97ddb722019-04-16 09:10:00 +0300129 // Convert LED name in sysfs into DBus name
130 LedDescr ledDescr;
131 getLedDescr(name, ledDescr);
132 name = getDbusName(ledDescr);
133
Vishwanatha Subbanna75b55102016-11-30 14:20:53 +0530134 // Unique bus name representing a single LED.
Andrew Jefferyc41bf5b2018-05-25 16:39:22 +0930135 auto busName = std::string(BUSNAME) + '.' + name;
136 auto objPath = std::string(OBJPATH) + '/' + name;
Vishwanatha Subbanna75b55102016-11-30 14:20:53 +0530137
138 // Get a handle to system dbus.
Andrew Jefferycd3b05e2018-05-24 13:05:30 +0930139 auto bus = sdbusplus::bus::new_default();
Vishwanatha Subbanna75b55102016-11-30 14:20:53 +0530140
141 // Add systemd object manager.
Patrick Williamsff3d5382022-07-22 19:26:55 -0500142 sdbusplus::server::manager_t(bus, objPath.c_str());
Vishwanatha Subbanna75b55102016-11-30 14:20:53 +0530143
144 // Create the Physical LED objects for directing actions.
145 // Need to save this else sdbusplus destructor will wipe this off.
Andrew Jeffery42e02d32018-05-24 13:34:05 +0930146 phosphor::led::SysfsLed sled{fs::path(path)};
Alexander Soldatov97ddb722019-04-16 09:10:00 +0300147 phosphor::led::Physical led(bus, objPath, sled, ledDescr.color);
Vishwanatha Subbanna75b55102016-11-30 14:20:53 +0530148
149 /** @brief Claim the bus */
150 bus.request_name(busName.c_str());
151
152 /** @brief Wait for client requests */
Andrew Jefferyc41bf5b2018-05-25 16:39:22 +0930153 while (true)
Vishwanatha Subbanna75b55102016-11-30 14:20:53 +0530154 {
155 // Handle dbus message / signals discarding unhandled
156 bus.process_discard();
157 bus.wait();
158 }
Vishwanatha Subbanna835571e2016-11-30 11:29:30 +0530159 return 0;
160}